Bug #119
if/else refactor adding begin/end in a string literal
Status:
New
Priority:
Normal
Assignee:
-
Start date:
09/22/2018
Due date:
% Done:
0%
Description
Another oddity, on begin/end. This was probably run more than once...
this:
if (found) dfwritepos ("Total onhand for all Non-Designer Jewelry -" * codemast.description) 0.1 (rgb_blue+font_bold) 0
else dfwritepos "Total onhand for all Non-Designer Jewelry - no (or unknown) primary stone" 0.1 (rgb_blue+font_bold) 0
became this...
if (found) dfwritepos ("Total onhand Begin
for all Non-Designer Jewelry -" * codemast.description) 0.1 (rgb_blue+font_bold) 0
End
else dfwritepos "Total onhand Begin
for all Non-Designer Jewelry - no (or unknown) primary stone" 0.1 (rgb_blue+font_bold) 0
End