brotherton-erpnext/patches/july_2013/p06_same_sales_rate.py

13 lines
410 B
Python
Raw Normal View History

2013-07-18 06:58:09 +00:00
def execute():
import webnotes
webnotes.reload_doc("selling", "doctype", "selling_settings")
ss = webnotes.bean("Selling Settings")
same_rate = webnotes.conn.sql("""select field, value from `tabSingles`
where doctype = 'Global Defaults' and field = 'maintain_same_sales_rate'""")
2013-07-18 06:58:09 +00:00
if same_rate:
ss.doc.maintain_same_sales_rate = same_rate[1]
else:
ss.doc.maintain_same_sales_rate = 1
ss.save()