ad82c7e05a6bc4d2c98121977a7c08cbeddadfa7
[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     'name': 'Point of Sale',
24     'version': '1.0.1',
25     'category': 'Point Of Sale',
26     'sequence': 6,
27     'summary': 'Touchscreen Interface for Shops',
28     'description': """
29 Quick and Easy sale process
30 ===========================
31
32 This module allows you to manage your shop sales very easily with a fully web based touchscreen interface.
33 It is compatible with all PC tablets and the iPad, offering multiple payment methods. 
34
35 Product selection can be done in several ways: 
36
37 * Using a barcode reader
38 * Browsing through categories of products or via a text search.
39
40 Main Features
41 -------------
42 * Fast encoding of the sale
43 * Choose one payment method (the quick way) or split the payment between several payment methods
44 * Computation of the amount of money to return
45 * Create and confirm the picking list automatically
46 * Allows the user to create an invoice automatically
47 * Refund previous sales
48     """,
49     'author': 'OpenERP SA',
50     'images': ['images/pos_touch_screen.jpeg', 'images/pos_session.jpeg', 'images/pos_analysis.jpeg','images/sale_order_pos.jpeg','images/product_pos.jpeg'],
51     'depends': ['sale_stock'],
52     'data': [
53         'data/report_paperformat.xml',
54         'security/point_of_sale_security.xml',
55         'security/ir.model.access.csv',
56         'wizard/pos_box.xml',
57         'wizard/pos_confirm.xml',
58         'wizard/pos_details.xml',
59         'wizard/pos_discount.xml',
60         'wizard/pos_open_statement.xml',
61         'wizard/pos_payment.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         'res_partner_view.xml',
73         'views/report_statement.xml',
74         'views/report_usersproduct.xml',
75         'views/report_closedcashbox.xml',
76         'views/report_receipt.xml',
77         'views/report_saleslines.xml',
78         'views/report_detailsofsales.xml',
79         'views/report_payment.xml',
80         'views/report_sessionsummary.xml',
81     ],
82     'demo': [
83         'point_of_sale_demo.xml',
84         'account_statement_demo.xml',
85     ],
86     'test': [
87         'test/00_register_open.yml',
88         'test/01_order_to_payment.yml',
89         'test/02_order_to_invoice.yml',
90         'test/point_of_sale_report.yml',
91         'test/account_statement_reports.yml',
92     ],
93     'installable': True,
94     'application': True,
95     'js': [
96         'static/lib/fastclick.js',
97         'static/src/js/db.js',
98         'static/src/js/models.js',
99         'static/src/js/widget_base.js',
100         'static/src/js/widget_keyboard.js',
101         'static/src/js/widgets.js',
102         'static/src/js/devices.js',
103         'static/src/js/screens.js',
104         'static/src/js/tests.js',
105         'static/src/js/main.js',
106     ],
107     'qweb': ['static/src/xml/pos.xml'],
108     'auto_install': False,
109 }
110
111 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: