2017-08-30 13:26:26 +00:00
|
|
|
# Copyright (c) 2017, Frappe and Contributors
|
|
|
|
# License: GNU General Public License v3. See license.txt
|
|
|
|
|
|
|
|
from __future__ import unicode_literals
|
|
|
|
import frappe
|
|
|
|
|
|
|
|
def execute():
|
|
|
|
frappe.reload_doc('accounts', 'doctype', 'pos_settings')
|
|
|
|
|
|
|
|
doc = frappe.get_doc('POS Settings')
|
2017-09-11 06:19:25 +00:00
|
|
|
doc.use_pos_in_offline_mode = 1
|
2017-08-30 13:26:26 +00:00
|
|
|
doc.save()
|