1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 00:11:35 +02:00

Merge pull request #108 from whitebook/master

fixed invoice payment calculations
This commit is contained in:
Hillel Coren 2014-05-01 21:14:30 +03:00
commit a4a66cba63
3 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -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;

View File

@ -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;