[VIEW] +procurement buttons for membership products
[burette/pos_membership.git] / __openerp__.py
index 3fba4ff..901489c 100644 (file)
@@ -2,7 +2,7 @@
 ##############################################################################
 #
 #    POS Membership module for OpenERP, Manage membership payments from POS.
-#    Copyright (C) 2013 L'Heureux Cyclage (<http://www.heureux-cyclage.org>)
+#    Copyright (C) 2013-2018 L'Heureux Cyclage (<http://www.heureux-cyclage.org>)
 #
 #    This file is a part of POS Membership
 #
     """,
     'author': 'L\'Heureux Cyclage - LHC',
     'website': 'http://www.heureux-cyclage.org',
-    'depends': ['membership', 'point_of_sale'],
+    'depends': [
+        'membership',
+        'remembership',
+        'point_of_sale'
+    ],
     'init_xml': [],
     'data': [],
-    'update_xml': [],
+    'js': [
+       'static/src/js/db.js',
+       'static/src/js/models.js',
+       'static/src/js/widgets.js',
+       'static/src/js/screens.js',
+       'static/src/js/main.js',
+    ],
+    'css': [
+        'static/src/css/pos.css', # this is the default css with hover effects
+        #'static/src/css/pos_nohover.css', # this css has no hover effects (for resistive touchscreens)
+    ],
+    'qweb': ['static/src/xml/pos.xml'],
+    'update_xml': [
+        'view/pos_membership.xml',
+        'view/products.xml',
+    ],
     'demo_xml': [],
     'test': [],
     'installable': True,
     'active': False,
+
 }
+
 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: