mirror of https://github.com/itflow-org/itflow
Fixed Number formating with pdf guest invoice
This commit is contained in:
parent
1b7bc6af2c
commit
365e75ac5a
|
|
@ -453,9 +453,7 @@ var docDefinition = {
|
|||
$item_total = $row['item_total'];
|
||||
$tax_id = $row['tax_id'];
|
||||
$total_tax = $item_tax + $total_tax;
|
||||
$total_tax = number_format($total_tax,2);
|
||||
$sub_total = $item_price * $item_quantity + $sub_total;
|
||||
$sub_total = number_format($sub_total, 2);
|
||||
?>
|
||||
|
||||
// Item
|
||||
|
|
@ -475,15 +473,15 @@ var docDefinition = {
|
|||
style:'itemQty'
|
||||
},
|
||||
{
|
||||
text:'$<?php echo $item_price; ?>',
|
||||
text:'$<?php echo number_format($item_price,2); ?>',
|
||||
style:'itemNumber'
|
||||
},
|
||||
{
|
||||
text:'$<?php echo $item_tax; ?>',
|
||||
text:'$<?php echo number_format($item_tax,2); ?>',
|
||||
style:'itemNumber'
|
||||
},
|
||||
{
|
||||
text: '$<?php echo $item_total; ?>',
|
||||
text: '$<?php echo number_format($item_total,2); ?>',
|
||||
style:'itemNumber'
|
||||
}
|
||||
],
|
||||
|
|
@ -525,7 +523,7 @@ var docDefinition = {
|
|||
style:'itemsFooterSubTitle'
|
||||
},
|
||||
{
|
||||
text:'$<?php echo $sub_total; ?>',
|
||||
text:'$<?php echo number_format($sub_total,2); ?>',
|
||||
style:'itemsFooterSubValue'
|
||||
}
|
||||
],
|
||||
|
|
|
|||
Loading…
Reference in New Issue