10 lines
294 B
Python
10 lines
294 B
Python
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
def execute():
|
|
import webnotes
|
|
webnotes.reload_doc("setup", "doctype", "global_defaults")
|
|
|
|
gd = webnotes.bean('Global Defaults')
|
|
gd.doc.maintain_same_sales_rate = 1
|
|
gd.save() |