My Stuff
Comments
-
Thanks Michole, My purpose is not only remove the dollar symbol, I just provide the case and want to know how do I escape $ symbol in regular expression in advanced pdf/html editor. Normally "\$" should work, but it causes error this time. [CODE]${item.amount?html?replace("^\w+\$","","r")}[/CODE]
-
Thanks everyone, [CODE]${item.amount?string["#,###,##0.00"]}[/CODE] works in this case, I found another solution from FreeMarker http://freemarker.org/docs/dgui_template_exp.html $ need to be escaped via "\a" [CODE]${item.amount?html?replace("^\w+\a","","r")}[/CODE]
-
I think the "Pricing Fields.. Assigned Price Level = Yes" solution should work, but Not... If that value = true, then no results found. Even Assigned Price Level is the only criteria I have.
-
Michoel, Thank for reply, However this does not work. Pricing Field will result to a long list that this customer could order. Not special item price that this customer belong to. What I need is the "special" item pricing only that belong to this customer.