Hi,

I'm currently trying to use [% USE Price %] in the ACQORDER email notice, but it doesn't seem to be working as expected.

I've updated the email notice as follows:


[%- USE Price -%]

<!-- This is printing as 0.00 -->
<th>[% aqorders.listprice | $Price %]</th>
[% aqorders.replacementprice | $Price %]


However, instead of displaying the formatted price, it shows 0.00.

When I use the angle bracket syntax, the actual price values are displayed correctly, like:

<<aqorders.listprice>> → 123.00000  
<<aqorders.replacementprice>> → 123.00000

I've tested this both on my demo instance and on the community demo instance (https://demo-intra.mykoha.co.nz), and the result is the same.

Could you please help me understand what might be going wrong or how I can get the formatted price to display correctly?