From 0e875f504928771b69c694a570abac667f6a8aaa Mon Sep 17 00:00:00 2001 From: Ankush Menat Date: Mon, 16 May 2022 12:14:07 +0530 Subject: [PATCH] fix: hide template items from sales/purchase order --- erpnext/public/js/controllers/buying.js | 2 +- erpnext/selling/sales_common.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/erpnext/public/js/controllers/buying.js b/erpnext/public/js/controllers/buying.js index bbf1ff6736..58eb891600 100644 --- a/erpnext/public/js/controllers/buying.js +++ b/erpnext/public/js/controllers/buying.js @@ -90,7 +90,7 @@ erpnext.buying.BuyingController = class BuyingController extends erpnext.Transac else { return{ query: "erpnext.controllers.queries.item_query", - filters: { 'supplier': me.frm.doc.supplier, 'is_purchase_item': 1 } + filters: { 'supplier': me.frm.doc.supplier, 'is_purchase_item': 1, 'has_variants': 0} } } }); diff --git a/erpnext/selling/sales_common.js b/erpnext/selling/sales_common.js index 98131f96ed..0954de4e66 100644 --- a/erpnext/selling/sales_common.js +++ b/erpnext/selling/sales_common.js @@ -64,7 +64,7 @@ erpnext.selling.SellingController = class SellingController extends erpnext.Tran this.frm.set_query("item_code", "items", function() { return { query: "erpnext.controllers.queries.item_query", - filters: {'is_sales_item': 1, 'customer': cur_frm.doc.customer} + filters: {'is_sales_item': 1, 'customer': cur_frm.doc.customer, 'has_variants': 0} } }); }