fix: removing duplicate currency() from sales_invoice.js (#27410)

This commit is contained in:
Anupam Kumar 2021-09-09 19:17:01 +05:30 committed by GitHub
parent acdb10377f
commit 7edac5a5d7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -445,15 +445,6 @@ erpnext.accounts.SalesInvoiceController = class SalesInvoiceController extends e
this.frm.refresh_field("base_paid_amount"); this.frm.refresh_field("base_paid_amount");
} }
currency() {
this._super();
$.each(cur_frm.doc.timesheets, function(i, d) {
let row = frappe.get_doc(d.doctype, d.name)
set_timesheet_detail_rate(row.doctype, row.name, cur_frm.doc.currency, row.timesheet_detail)
});
calculate_total_billing_amount(cur_frm)
}
currency() { currency() {
var me = this; var me = this;
super.currency(); super.currency();