commit | 2f50cb3e58458a9679bfc6022c15f910b757aa5b | [log] [tgz] |
---|---|---|
author | Deepesh Garg <deepeshgarg6@gmail.com> | Tue Sep 15 15:00:32 2020 +0530 |
committer | Deepesh Garg <deepeshgarg6@gmail.com> | Tue Sep 15 15:00:32 2020 +0530 |
tree | 5331cd683c40ba82f25a73392964e146c176c450 | |
parent | 61314248bb733191f58cf033e2b0312bcf1de481 [diff] |
fix: Supplier trigger onload
diff --git a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js index 2bfa4a5..fe5301d 100644 --- a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +++ b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js
@@ -28,7 +28,7 @@ // Trigger supplier event on load if supplier is available // The reason for this is PI can be created from PR or PO and supplier is pre populated - if (this.frm.doc.supplier) { + if (this.frm.doc.supplier && this.frm.doc.__islocal) { this.frm.trigger('supplier'); } },