commit | 65e2b9fee6406b2981baae5a9d2e90c96504089d | [log] [tgz] |
---|---|---|
author | GangaManoj <ganga.manoj98@gmail.com> | Tue Jul 13 02:14:18 2021 +0530 |
committer | GangaManoj <ganga.manoj98@gmail.com> | Tue Jul 13 02:14:18 2021 +0530 |
tree | f9d0759cd3617b45fc7c4cc9947d71252742d8e8 | |
parent | 81375aec1f05669503ff57437bd532e10ea9deaa [diff] |
fix: Filter options for Discount Account
diff --git a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js index 69c50b4..66fa15b 100644 --- a/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js +++ b/erpnext/accounts/doctype/purchase_invoice/purchase_invoice.js
@@ -508,6 +508,16 @@ } } } + + frm.fields_dict['items'].grid.get_field('discount_account').get_query = function(doc) { + return { + filters: { + 'report_type': 'Profit and Loss', + 'company': doc.company, + "is_group": 0 + } + } + } }, refresh: function(frm) {