fixed invoice payment calculations
This commit is contained in:
parent
36588f061c
commit
8bb90759fc
4 changed files with 308 additions and 4482 deletions
|
|
@ -1133,7 +1133,7 @@
|
|||
});
|
||||
|
||||
this.totals.rawPaidToDate = ko.computed(function() {
|
||||
return self.amount() - self.balance();
|
||||
return accounting.toFixed(self.amount(),2) - accounting.toFixed(self.balance(),2);
|
||||
});
|
||||
|
||||
this.totals.paidToDate = ko.computed(function() {
|
||||
|
|
@ -1142,7 +1142,7 @@
|
|||
});
|
||||
|
||||
this.totals.total = ko.computed(function() {
|
||||
var total = self.totals.rawSubtotal();
|
||||
var total = accounting.toFixed(self.totals.rawSubtotal(),2);
|
||||
|
||||
var discount = parseFloat(self.discount());
|
||||
if (discount > 0) {
|
||||
|
|
@ -1517,4 +1517,4 @@
|
|||
|
||||
</script>
|
||||
|
||||
@stop
|
||||
@stop
|
||||
|
|
|
|||
|
|
@ -36967,7 +36967,7 @@ function calculateAmounts(invoice) {
|
|||
total = parseFloat(total) + parseFloat(tax);
|
||||
}
|
||||
|
||||
invoice.balance_amount = total - (invoice.amount - invoice.balance);
|
||||
invoice.balance_amount = total.toFixed(4) - (accounting.toFixed(invoice.amount, 2) - accounting.toFixed(invoice.balance, 2));
|
||||
invoice.tax_amount = tax;
|
||||
invoice.discount_amount = discount;
|
||||
invoice.has_taxes = hasTaxes;
|
||||
|
|
|
|||
File diff suppressed because one or more lines are too long
|
|
@ -1500,7 +1500,7 @@ function calculateAmounts(invoice) {
|
|||
total = parseFloat(total) + parseFloat(tax);
|
||||
}
|
||||
|
||||
invoice.balance_amount = total - (invoice.amount - invoice.balance);
|
||||
invoice.balance_amount = total.toFixed(4) - (accounting.toFixed(invoice.amount, 2) - accounting.toFixed(invoice.balance, 2));
|
||||
invoice.tax_amount = tax;
|
||||
invoice.discount_amount = discount;
|
||||
invoice.has_taxes = hasTaxes;
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue