[fix] [patch] fixed paid_amount & patch for default pos view check in features setup
diff --git a/patches/patch_list.py b/patches/patch_list.py
index a5c95a9..8069a52 100644
--- a/patches/patch_list.py
+++ b/patches/patch_list.py
@@ -261,4 +261,5 @@
"execute:webnotes.reload_doc('accounts', 'Print Format', 'POS Invoice') # 2013-09-02",
"patches.september_2013.p01_fix_buying_amount_gl_entries",
"patches.september_2013.p01_update_communication",
+ "patches.september_2013.p02_make_pos_view_checked_in_features_setup",
]
\ No newline at end of file
diff --git a/patches/september_2013/p02_make_pos_view_checked_in_features_setup.py b/patches/september_2013/p02_make_pos_view_checked_in_features_setup.py
new file mode 100644
index 0000000..c5e2c7b
--- /dev/null
+++ b/patches/september_2013/p02_make_pos_view_checked_in_features_setup.py
@@ -0,0 +1,11 @@
+# Copyright (c) 2013, Web Notes Technologies Pvt. Ltd.
+# License: GNU General Public License v3. See license.txt
+
+from __future__ import unicode_literals
+import webnotes
+
+def execute():
+ webnotes.reload_doc("setup", "doctype", "features_setup")
+ fs = webnotes.bean("Features Setup")
+ fs.doc.fs_pos_view = 1
+ fs.save()
\ No newline at end of file