brotherton-erpnext/erpnext/patches/v4_2/discount_amount.py

13 lines
535 B
Python
Raw Normal View History

# Copyright (c) 2015, Frappe Technologies Pvt. Ltd. and Contributors
2015-01-12 12:05:14 +00:00
# License: GNU General Public License v3. See license.txt
from __future__ import unicode_literals
import frappe
from frappe.modules import scrub, get_doctype_module
def execute():
2015-01-14 06:18:50 +00:00
for dt in ["Quotation", "Sales Order", "Delivery Note", "Sales Invoice"]:
2015-01-12 12:05:14 +00:00
frappe.reload_doc(get_doctype_module(dt), "doctype", scrub(dt))
frappe.db.sql("""update `tab{0}` set base_discount_amount=discount_amount,
discount_amount=discount_amount/conversion_rate""".format(dt))