2013-08-05 14:59:54 +05:30
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
2013-07-16 18:34:35 +05:30
|
|
|
def execute():
|
|
|
|
import webnotes
|
|
|
|
webnotes.reload_doc("setup", "doctype", "global_defaults")
|
|
|
|
|
2013-07-18 12:28:09 +05:30
|
|
|
gd = webnotes.bean('Global Defaults')
|
2013-07-16 18:34:35 +05:30
|
|
|
gd.doc.maintain_same_sales_rate = 1
|
2013-07-18 12:28:09 +05:30
|
|
|
gd.save()
|