[MERGE] merge with latest stable
[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',
26     'category': 'Generic Modules/Sales & Purchases',
27     'description': """
28 Main features :
29  - Fast encoding of the sale.
30  - Allow to choose one payment mode (the quick way) or to split the payment between several payment mode.
31  - Computation of the amount of money to return.
32  - Create and confirm picking list automatically.
33  - Allow the user to create invoice automatically.
34  - Allow to refund former sales.
35
36     """,
37     'author': 'OpenERP SA',
38     'depends': ['sale', 'delivery'],
39     'init_xml': [],
40
41     'update_xml': [
42         'security/point_of_sale_security.xml',
43         'security/ir.model.access.csv',
44         'wizard/pos_details.xml',
45         'wizard/pos_add_product.xml',
46         'wizard/pos_confirm.xml',
47         'wizard/pos_discount.xml',
48         'wizard/pos_get_sale.xml',
49         'wizard/pos_open_statement.xml',
50         'wizard/pos_close_statement.xml',
51         'wizard/pos_box_entries.xml',
52         'wizard/pos_payment_report_user_view.xml',
53         'wizard/pos_payment_report_date_view.xml',
54         'wizard/pos_box_out.xml',
55         'wizard/pos_sales_user.xml',
56         'wizard/all_closed_cashbox_of_the_day.xml',
57         'wizard/pos_sales_user_current_user.xml',
58         'wizard/pos_sale_user_today.xml',
59         'wizard/pos_receipt_view.xml',
60         'wizard/pos_payment_report_user.xml',
61         'wizard/pos_payment_report.xml',
62         'wizard/pos_payment.xml',
63         'wizard/pos_scan_product_view.xml',
64         'wizard/pos_return_view.xml',
65         'point_of_sale_report.xml',
66         'point_of_sale_view.xml',
67         'report/pos_order_report_view.xml',
68         'report/report_cash_register_view.xml',
69         'point_of_sale_sequence.xml',
70         'point_of_sale_workflow.xml',
71         'account_statement_view.xml',
72         'account_statement_report.xml',
73     ],
74     'demo_xml': ['point_of_sale_demo.xml','account_statement_demo.xml'],
75     'test': ['test/point_of_sale_test.yml',
76             'test/point_of_sale_report.yml',
77     ],
78     'installable': True,
79     'certificate' : '001156338024966477869',
80 }
81 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: