From 2cadb1e12e36cc1eb4c2a3def9edaf89710affd1 Mon Sep 17 00:00:00 2001 From: Zarrar Date: Mon, 6 Aug 2018 14:46:16 +0530 Subject: [PATCH] add tax withholding & loyalty program in explore view (#15074) --- erpnext/config/accounts.py | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/erpnext/config/accounts.py b/erpnext/config/accounts.py index f86ea37d6c..5526ac8699 100644 --- a/erpnext/config/accounts.py +++ b/erpnext/config/accounts.py @@ -38,6 +38,18 @@ def get_data(): "label": _("Auto Repeat"), "description": _("To make recurring documents") }, + { + "type": "doctype", + "name": "Loyalty Program", + "label": _("Loyalty Program"), + "description": _("To make Customer based incentive schemes.") + }, + { + "type": "doctype", + "name": "Loyalty Point Entry", + "label": _("Loyalty Point Entry"), + "description": _("To view logs of Loyalty Points assigned to a Customer.") + }, { "type": "report", "name": "Accounts Receivable", @@ -188,6 +200,11 @@ def get_data(): "name": "Tax Rule", "description": _("Tax Rule for transactions.") }, + { + "type": "doctype", + "name": "Tax Withholding Category", + "description": _("Tax Withholding rates to be applied on transactions.") + }, { "type": "report", "name": "Sales Register",