mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-06-23 20:00:33 -04:00
Optimize edit invoice page
This commit is contained in:
parent
ff05d41ca3
commit
dd96ce4f21
@ -374,8 +374,15 @@ function InvoiceModel(data) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
self.formatMoney = function(amount) {
|
self.formatMoney = function(amount) {
|
||||||
|
/*
|
||||||
var client = $.parseJSON(ko.toJSON(self.client()));
|
var client = $.parseJSON(ko.toJSON(self.client()));
|
||||||
return formatMoneyAccount(amount, self.account, client);
|
return formatMoneyAccount(amount, self.account, client);
|
||||||
|
*/
|
||||||
|
|
||||||
|
var currencyId = (self.client().currency_id() || account.currency_id) || {{ DEFAULT_CURRENCY }};
|
||||||
|
var countryId = (self.client().country_id() || account.country_id) || {{ DEFAULT_COUNTRY }};
|
||||||
|
var decorator = parseInt(account.show_currency_code) ? 'code' : 'symbol';
|
||||||
|
return formatMoney(amount, currencyId, countryId, decorator);
|
||||||
}
|
}
|
||||||
|
|
||||||
self.totals = ko.observable();
|
self.totals = ko.observable();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user