[WIP] point_of_sale: indexeddb : products and categories are no longer in memory
[odoo/odoo.git] / addons / point_of_sale / __openerp__.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22
23 {
24     'name': 'Point of Sale',
25     'version': '1.0.1',
26     'category': 'Point Of Sale',
27     "sequence": 6,
28     "summary": "Touchscreen Interface for Shops",
29     'description': """
30 This module provides a quick and easy sale process.
31 ===================================================
32
33 Main features:
34 --------------
35     * Fast encoding of the sale
36     * Allow to choose one payment mode (the quick way) or to split the payment between several payment mode
37     * Computation of the amount of money to return
38     * Create and confirm picking list automatically
39     * Allow the user to create invoice automatically
40     * Allow to refund former sales
41     """,
42     'author': 'OpenERP SA',
43     'images': ['images/cash_registers.jpeg', 'images/pos_analysis.jpeg','images/register_analysis.jpeg','images/sale_order_pos.jpeg','images/product_pos.jpeg'],
44     'depends': ['sale'],
45     'init_xml': [],
46
47     'update_xml': [
48         'security/point_of_sale_security.xml',
49         'security/ir.model.access.csv',
50         'wizard/pos_details.xml',
51         'wizard/pos_confirm.xml',
52         'wizard/pos_discount.xml',
53         'wizard/pos_open_statement.xml',
54         'wizard/pos_close_statement.xml',
55         'wizard/pos_payment_report_user_view.xml',
56         'wizard/pos_sales_user.xml',
57         'wizard/pos_receipt_view.xml',
58         'wizard/pos_payment_report_user.xml',
59         'wizard/pos_payment_report.xml',
60         'wizard/pos_payment.xml',
61         'wizard/pos_box.xml',
62         'wizard/pos_session_opening.xml',
63         'point_of_sale_report.xml',
64         'point_of_sale_view.xml',
65         'point_of_sale_data.xml',
66         'report/pos_order_report_view.xml',
67         'point_of_sale_sequence.xml',
68         'point_of_sale_workflow.xml',
69         'account_statement_view.xml',
70         'account_statement_report.xml',
71         'res_users_view.xml',
72     ],
73     'demo_xml': [
74         'point_of_sale_demo.xml',
75         'account_statement_demo.xml',
76         'test/00_register_open.yml'
77     ],
78     'test': [
79         'test/01_order_to_payment.yml',
80         'test/02_order_to_invoice.yml',
81         'test/point_of_sale_report.yml'
82     ],
83     'installable': True,
84     'application': True,
85     # Web client
86     'js': [
87             'static/lib/backbone/backbone-0.9.2.js', 
88             'static/lib/mousewheel/jquery.mousewheel-3.0.6.js',
89             'static/src/js/pos_db.js',
90             'static/src/js/pos_models.js',
91             'static/src/js/pos_basewidget.js',
92             'static/src/js/pos_keyboard_widget.js',
93             'static/src/js/pos_scrollbar_widget.js',
94             'static/src/js/pos_widgets.js',
95             'static/src/js/pos_devices.js',
96             'static/src/js/pos_screens.js',
97             'static/src/js/pos_main.js'
98     ],
99     'css': [
100         'static/src/css/pos.css',
101         'static/src/css/keyboard.css'
102     ],
103     'qweb': ['static/src/xml/pos.xml'],
104     'auto_install': False,
105 }
106 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: