2018-02-15 08:52:11 +00:00
|
|
|
# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd. and Contributors
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
import frappe
|
|
|
|
|
|
|
|
def execute():
|
|
|
|
frappe.reload_doc("regional", "doctype", "gst_settings")
|
2018-02-15 13:10:18 +00:00
|
|
|
frappe.reload_doc("accounts", "doctype", "gst_account")
|
2018-02-15 08:52:11 +00:00
|
|
|
gst_settings = frappe.get_doc("GST Settings")
|
|
|
|
gst_settings.b2c_limit = 250000
|
2018-02-15 12:42:27 +00:00
|
|
|
gst_settings.save()
|