nathanw
01/25/2021, 6:08 PM${price?string("##0.00")}
${price?string.currency}
Both of these end up blank in the print out.
Meanwhile, ${price}
shows the actual numberscottvonduhn
01/25/2021, 6:19 PM${nsformat_currency(price)}
usually works, unless you want a different formatting than NetSuite uses.nathanw
01/25/2021, 6:26 PM