[minor] [fix] precision for float fields on server-side

This commit is contained in:
Anand Doshi 2013-08-12 11:58:02 +05:30
parent cf2cf3897b
commit e42a0222d5
2 changed files with 3 additions and 2 deletions

View File

@ -265,7 +265,7 @@ class AccountsController(TransactionBase):
tax.grand_total_for_current_item = \
flt(self.tax_doclist[i-1].grand_total_for_current_item +
current_tax_amount, self.precision("total", tax))
# in tax.total, accumulate grand total of each item
tax.total += tax.grand_total_for_current_item

View File

@ -312,7 +312,8 @@ erpnext.TransactionController = erpnext.stock.StockController.extend({
if(!item_tax[item_code]) item_tax[item_code] = {};
if($.isArray(tax_data)) {
var tax_rate = tax_data[0] == null ? "" : (flt(tax_data[0], tax_rate_precision) + "%"),
tax_amount = format_currency(flt(tax_data[1], tax_amount_precision), company_currency);
tax_amount = format_currency(flt(tax_data[1], tax_amount_precision), company_currency,
tax_amount_precision);
item_tax[item_code][tax.name] = [tax_rate, tax_amount];
} else {