commit | b461724416ba0ebdfc979a01f8ce913c69bcb105 | [log] [tgz] |
---|---|---|
author | ruthra kumar <ruthra@erpnext.com> | Fri Jul 22 14:32:14 2022 +0530 |
committer | ruthra kumar <ruthra@erpnext.com> | Fri Jul 22 14:32:14 2022 +0530 |
tree | 6ad29fe216f10aa0f04aa2e77cd7df234131ed9f | |
parent | 6883fc95ae2d1a88160e2f0e56b3288882d07147 [diff] |
fix: enable tax withholding checkbox in PI with supplier_tds
diff --git a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py index 775d255..de3927e 100644 --- a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py +++ b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.py
@@ -162,6 +162,7 @@ if tds_category and not for_validate: self.apply_tds = 1 self.tax_withholding_category = tds_category + self.set_onload("supplier_tds", tds_category) super(PurchaseInvoice, self).set_missing_values(for_validate)