Fixed Wrong Var Name for currency symbol

This commit is contained in:
johnnyq
2021-08-18 21:04:01 -04:00
parent c439f4d388
commit 00da99b2df
3 changed files with 44 additions and 44 deletions

View File

@@ -188,9 +188,9 @@ if(isset($_GET['quote_id'], $_GET['url_key'])){
<td><?php echo $item_name; ?></td>
<td><?php echo $item_description; ?></td>
<td class="text-center"><?php echo $item_quantity; ?></td>
<td class="text-right"><?php echo $client_currency_code; ?><?php echo number_format($item_price,2); ?></td>
<td class="text-right"><?php echo $client_currency_code; ?><?php echo number_format($item_tax,2); ?></td>
<td class="text-right"><?php echo $client_currency_code; ?><?php echo number_format($item_total,2); ?></td>
<td class="text-right"><?php echo $client_currency_symbol; ?><?php echo number_format($item_price,2); ?></td>
<td class="text-right"><?php echo $client_currency_symbol; ?><?php echo number_format($item_tax,2); ?></td>
<td class="text-right"><?php echo $client_currency_symbol; ?><?php echo number_format($item_total,2); ?></td>
</tr>
<?php
@@ -219,23 +219,23 @@ if(isset($_GET['quote_id'], $_GET['url_key'])){
<tbody>
<tr class="border-bottom">
<td>Subtotal</td>
<td class="text-right"><?php echo $client_currency_code; ?><?php echo number_format($sub_total,2); ?></td>
<td class="text-right"><?php echo $client_currency_symbol; ?><?php echo number_format($sub_total,2); ?></td>
</tr>
<?php if($discount > 0){ ?>
<tr class="border-bottom">
<td>Discount</td>
<td class="text-right"><?php echo $client_currency_code; ?><?php echo number_format($quote_discount,2); ?></td>
<td class="text-right"><?php echo $client_currency_symbol; ?><?php echo number_format($quote_discount,2); ?></td>
</tr>
<?php } ?>
<?php if($total_tax > 0){ ?>
<tr class="border-bottom">
<td>Tax</td>
<td class="text-right"><?php echo $client_currency_code; ?><?php echo number_format($total_tax,2); ?></td>
<td class="text-right"><?php echo $client_currency_symbol; ?><?php echo number_format($total_tax,2); ?></td>
</tr>
<?php } ?>
<tr class="border-bottom">
<td><strong>Total</strong></td>
<td class="text-right"><strong><?php echo $client_currency_code; ?><?php echo number_format($quote_amount,2); ?></strong></td>
<td class="text-right"><strong><?php echo $client_currency_symbol; ?><?php echo number_format($quote_amount,2); ?></strong></td>
</tr>
</tbody>
</table>
@@ -423,15 +423,15 @@ var docDefinition = {
style:'itemQty'
},
{
text:'<?php echo $client_currency_code; ?><?php echo number_format($item_price,2); ?>',
text:'<?php echo $client_currency_symbol; ?><?php echo number_format($item_price,2); ?>',
style:'itemNumber'
},
{
text:'<?php echo $client_currency_code; ?><?php echo number_format($item_tax,2); ?>',
text:'<?php echo $client_currency_symbol; ?><?php echo number_format($item_tax,2); ?>',
style:'itemNumber'
},
{
text: '<?php echo $client_currency_code; ?><?php echo number_format($item_total,2); ?>',
text: '<?php echo $client_currency_symbol; ?><?php echo number_format($item_total,2); ?>',
style:'itemNumber'
}
],
@@ -473,7 +473,7 @@ var docDefinition = {
style:'itemsFooterSubTitle'
},
{
text:'<?php echo $client_currency_code; ?><?php echo number_format($sub_total,2); ?>',
text:'<?php echo $client_currency_symbol; ?><?php echo number_format($sub_total,2); ?>',
style:'itemsFooterSubValue'
}
],
@@ -484,7 +484,7 @@ var docDefinition = {
style:'itemsFooterSubTitle'
},
{
text: '<?php echo $client_currency_code; ?><?php echo number_format($total_tax,2); ?>',
text: '<?php echo $client_currency_symbol; ?><?php echo number_format($total_tax,2); ?>',
style:'itemsFooterSubValue'
}
],
@@ -495,7 +495,7 @@ var docDefinition = {
style:'itemsFooterSubTitle'
},
{
text: '<?php echo $client_currency_code; ?><?php echo number_format($quote_amount,2); ?>',
text: '<?php echo $client_currency_symbol; ?><?php echo number_format($quote_amount,2); ?>',
style:'itemsFooterSubValue'
}
],