Has anyone ever rounded a number in an adv PDF?
# general
d
Has anyone ever rounded a number in an adv PDF?
n
yes
Please visit freemarker website all available there
👍 1
please try this ?string(",##0.00")
?string.currency
d
I can't seem to get it to work. this is the line I am am dealing with ${record.discountrate * record.subtotal}
Got it to work! ${'-' + (-record.discountrate * record.subtotal)?string.currency}
n
👍