mirror of
https://github.com/itflow-org/itflow
synced 2026-03-23 05:55:38 +00:00
Fixed Number formating with pdf invoice
This commit is contained in:
12
invoice.php
12
invoice.php
@@ -651,10 +651,8 @@ var docDefinition = {
|
|||||||
$item_tax = $row['item_tax'];
|
$item_tax = $row['item_tax'];
|
||||||
$item_total = $row['item_total'];
|
$item_total = $row['item_total'];
|
||||||
$tax_id = $row['tax_id'];
|
$tax_id = $row['tax_id'];
|
||||||
$total_tax = $item_tax + $total_tax;
|
$total_tax = $item_tax + $total_tax;
|
||||||
$total_tax = number_format($total_tax,2);
|
|
||||||
$sub_total = $item_price * $item_quantity + $sub_total;
|
$sub_total = $item_price * $item_quantity + $sub_total;
|
||||||
$sub_total = number_format($sub_total, 2);
|
|
||||||
?>
|
?>
|
||||||
|
|
||||||
// Item
|
// Item
|
||||||
@@ -674,15 +672,15 @@ var docDefinition = {
|
|||||||
style:'itemQty'
|
style:'itemQty'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text:'$<?php echo $item_price; ?>',
|
text:'$<?php echo number_format($item_price,2); ?>',
|
||||||
style:'itemNumber'
|
style:'itemNumber'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text:'$<?php echo $item_tax; ?>',
|
text:'$<?php echo number_format($item_tax,2); ?>',
|
||||||
style:'itemNumber'
|
style:'itemNumber'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text: '$<?php echo $item_total; ?>',
|
text: '$<?php echo number_format($item_total,2); ?>',
|
||||||
style:'itemNumber'
|
style:'itemNumber'
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
@@ -724,7 +722,7 @@ var docDefinition = {
|
|||||||
style:'itemsFooterSubTitle'
|
style:'itemsFooterSubTitle'
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
text:'$<?php echo $sub_total; ?>',
|
text:'$<?php echo number_format($sub_total,2); ?>',
|
||||||
style:'itemsFooterSubValue'
|
style:'itemsFooterSubValue'
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
|
|||||||
Reference in New Issue
Block a user