mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 02:44:53 +00:00
Fix #216 Updated Currency codes everywhere not just in a few places
This commit is contained in:
24
quote.php
24
quote.php
@@ -235,9 +235,9 @@ if(isset($_GET['quote_id'])){
|
||||
<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_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>
|
||||
<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
|
||||
@@ -310,17 +310,17 @@ if(isset($_GET['quote_id'])){
|
||||
<tbody>
|
||||
<tr class="border-bottom">
|
||||
<td>Subtotal</td>
|
||||
<td class="text-right"><?php echo $client_currency_symbol; ?><?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($total_tax > 0){ ?>
|
||||
<tr class="border-bottom">
|
||||
<td>Tax</td>
|
||||
<td class="text-right"><?php echo $client_currency_symbol; ?><?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_symbol; ?><?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>
|
||||
@@ -569,15 +569,15 @@ var docDefinition = {
|
||||
style:'itemQty'
|
||||
},
|
||||
{
|
||||
text:'<?php echo $client_currency_symbol; ?><?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_symbol; ?><?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_symbol; ?><?php echo number_format($item_total,2); ?>',
|
||||
text:'<?php echo $client_currency_symbol; ?> <?php echo number_format($item_total,2); ?>',
|
||||
style:'itemNumber'
|
||||
}
|
||||
],
|
||||
@@ -619,7 +619,7 @@ var docDefinition = {
|
||||
style:'itemsFooterSubTitle'
|
||||
},
|
||||
{
|
||||
text:'<?php echo $client_currency_symbol; ?><?php echo number_format($sub_total,2); ?>',
|
||||
text:'<?php echo $client_currency_symbol; ?> <?php echo number_format($sub_total,2); ?>',
|
||||
style:'itemsFooterSubValue'
|
||||
}
|
||||
],
|
||||
@@ -630,7 +630,7 @@ var docDefinition = {
|
||||
style:'itemsFooterSubTitle'
|
||||
},
|
||||
{
|
||||
text: '<?php echo $client_currency_symbol; ?><?php echo number_format($total_tax,2); ?>',
|
||||
text: '<?php echo $client_currency_symbol; ?> <?php echo number_format($total_tax,2); ?>',
|
||||
style:'itemsFooterSubValue'
|
||||
}
|
||||
],
|
||||
@@ -641,7 +641,7 @@ var docDefinition = {
|
||||
style:'itemsFooterSubTitle'
|
||||
},
|
||||
{
|
||||
text: '<?php echo $client_currency_symbol; ?><?php echo number_format($quote_amount,2); ?>',
|
||||
text: '<?php echo $client_currency_symbol; ?> <?php echo number_format($quote_amount,2); ?>',
|
||||
style:'itemsFooterSubValue'
|
||||
}
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user