From 1ecc78266c793a0c0b405485d80039da54c8efa0 Mon Sep 17 00:00:00 2001 From: Rohit Waghchaure <rohitw1991@gmail.com> Date: Fri, 14 Jun 2019 17:29:26 +0530 Subject: [PATCH] fix: added promotional scheme in selling and buying module page --- erpnext/config/buying.py | 7 ++++++- erpnext/config/selling.py | 5 +++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/erpnext/config/buying.py b/erpnext/config/buying.py index 264f88f9c1..d1b0d91728 100644 --- a/erpnext/config/buying.py +++ b/erpnext/config/buying.py @@ -70,11 +70,16 @@ def get_data(): "link": "Tree/Item Group", "description": _("Tree of Item Groups."), }, + { + "type": "doctype", + "name": "Promotional Scheme", + "description": _("Rules for applying different promotional schemes.") + }, { "type": "doctype", "name": "Pricing Rule", "description": _("Rules for applying pricing and discount.") - }, + } ] }, { diff --git a/erpnext/config/selling.py b/erpnext/config/selling.py index 9209ca96aa..b31eb02cf7 100644 --- a/erpnext/config/selling.py +++ b/erpnext/config/selling.py @@ -111,6 +111,11 @@ def get_data(): "description": _("Bundle items at time of sale."), "dependencies": ["Item"], }, + { + "type": "doctype", + "name": "Promotional Scheme", + "description": _("Rules for applying different promotional schemes.") + }, { "type": "doctype", "name": "Pricing Rule",