2013-08-05 09:29:54 +00:00
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
2013-05-22 10:49:10 +00:00
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
import webnotes
|
|
|
|
def execute():
|
|
|
|
webnotes.reload_doc("Setup", "DocType", "Global Defaults")
|
|
|
|
|
|
|
|
if webnotes.conn.exists({"doctype": "Item", "email_notify": 1}):
|
|
|
|
webnotes.conn.set_value("Global Defaults", None, "reorder_email_notify", 1)
|