You need to sign in to do that
Don't have an account?

Same page shows either currency code or currency symbol - how to fix that?
Hi, wonder if anyone will be able to help
When viewing PDF invoice from FF page I get below table

But when emailing customer with the same PDF invoice attached I get below table

Same page is responsible for that PDF, so not sure what I need to do to always include that “SGD” currency code in the invoice total.
Page detail:
<!-- Summary Values -->
<td class="alignTop noPadding">
<table class="boxed boxedNoTop boxedNoBottom">
<tr>
<th class="nobg noLines textAlignRight">{!lblInvoiceNetTotal}</th>
<td class="textAlignRight widthMedium boxedNoTop" style="width:100px">
<apex:outputText value="{0,number,#,###,###,###,###,###.00}">
{!invoiceCurrencySymbol}<apex:param value="{!salesInvoice.c2g__NetTotal__c}"/>
</apex:outputText>
</td>
</tr>
<tr>
<th class="nobg noLines textAlignRight">{!lblInvoiceTaxTotal}</th>
<td class="textAlignRight widthMedium">
<apex:outputText value="{0,number,#,###,###,###,###,##0.00}">
{!invoiceCurrencySymbol}<apex:param value="{!salesInvoice.c2g__TaxTotal__c}"/>
</apex:outputText>
</td>
</tr>
<tr>
<th class="nobg noLines textAlignRight">{!lblInvoiceTotal}</th>
<td class="textAlignRight widthMedium">
<apex:outputText value="{0,number,#,###,###,###,###,###.00}">
{!salesInvoice.c2g__InvoiceCurrency__r.Name} <apex:param value="{!salesInvoice.c2g__InvoiceTotal__c}"/>
</apex:outputText>
</td>
</tr>
</table>
</td>
</tr>
</table>
Thanks in advance!
When viewing PDF invoice from FF page I get below table
But when emailing customer with the same PDF invoice attached I get below table
Same page is responsible for that PDF, so not sure what I need to do to always include that “SGD” currency code in the invoice total.
Page detail:
<!-- Summary Values -->
<td class="alignTop noPadding">
<table class="boxed boxedNoTop boxedNoBottom">
<tr>
<th class="nobg noLines textAlignRight">{!lblInvoiceNetTotal}</th>
<td class="textAlignRight widthMedium boxedNoTop" style="width:100px">
<apex:outputText value="{0,number,#,###,###,###,###,###.00}">
{!invoiceCurrencySymbol}<apex:param value="{!salesInvoice.c2g__NetTotal__c}"/>
</apex:outputText>
</td>
</tr>
<tr>
<th class="nobg noLines textAlignRight">{!lblInvoiceTaxTotal}</th>
<td class="textAlignRight widthMedium">
<apex:outputText value="{0,number,#,###,###,###,###,##0.00}">
{!invoiceCurrencySymbol}<apex:param value="{!salesInvoice.c2g__TaxTotal__c}"/>
</apex:outputText>
</td>
</tr>
<tr>
<th class="nobg noLines textAlignRight">{!lblInvoiceTotal}</th>
<td class="textAlignRight widthMedium">
<apex:outputText value="{0,number,#,###,###,###,###,###.00}">
{!salesInvoice.c2g__InvoiceCurrency__r.Name} <apex:param value="{!salesInvoice.c2g__InvoiceTotal__c}"/>
</apex:outputText>
</td>
</tr>
</table>
</td>
</tr>
</table>
Thanks in advance!
Thanks again