commit | 6ecc0888ab28244a773caad451deaa07cbc74e71 | [log] [tgz] |
---|---|---|
author | Rushabh Mehta <rmehta@gmail.com> | Tue Jul 19 10:17:30 2016 +0530 |
committer | Rushabh Mehta <rmehta@gmail.com> | Tue Jul 19 10:17:30 2016 +0530 |
tree | 3579039aa584ce4a599de83e1c5f65277321fb14 | |
parent | 5f9566f3af383798acfc733049eecfe8332c5688 [diff] |
[minor] dont make tax template default, by default. #5695
diff --git a/erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py b/erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py index 351cd56..28964bb 100644 --- a/erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py +++ b/erpnext/accounts/doctype/sales_taxes_and_charges_template/sales_taxes_and_charges_template.py
@@ -12,8 +12,9 @@ valdiate_taxes_and_charges_template(self) def valdiate_taxes_and_charges_template(doc): - if not doc.is_default and not frappe.get_all(doc.doctype, filters={"is_default": 1}): - doc.is_default = 1 + # default should not be disabled + # if not doc.is_default and not frappe.get_all(doc.doctype, filters={"is_default": 1}): + # doc.is_default = 1 if doc.is_default == 1: frappe.db.sql("""update `tab{0}` set is_default = 0