brotherton-erpnext/patches/july_2013/p06_same_sales_rate.py
2013-07-18 13:25:47 +05:30

13 lines
357 B
Python

def execute():
import webnotes
webnotes.reload_doc("selling", "doctype", "selling_settings")
ss = webnotes.bean("Selling Settings")
same_rate = webnotes.conn.get_value("Global Defaults", "maintain_same_sales_rate")
if same_rate or same_rate == 0:
ss.doc.maintain_same_sales_rate = same_rate
else:
ss.doc.maintain_same_sales_rate = 1
ss.save()