commit | ad9b65fcf216f69eebd443f36d9ee9218b753c76 | [log] [tgz] |
---|---|---|
author | Deepesh Garg <42651287+deepeshgarg007@users.noreply.github.com> | Tue Mar 23 10:45:20 2021 +0530 |
committer | GitHub <noreply@github.com> | Tue Mar 23 10:45:20 2021 +0530 |
tree | 2c66a024c8d420a74c76fb96df093eab8040f571 | |
parent | 5e1cb5e4bcc00014d7dac5d10591789ce1912221 [diff] |
fix: TDS check getting checked after reload (#24972)
diff --git a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js index 06aa20b..66a8e20 100644 --- a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +++ b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js
@@ -524,7 +524,7 @@ }, onload: function(frm) { - if(frm.doc.__onload) { + if(frm.doc.__onload && frm.is_new()) { if(frm.doc.supplier) { frm.doc.apply_tds = frm.doc.__onload.supplier_tds ? 1 : 0; }