153584f6a263d8dbcdbe91089ae17a1954cf9ed4
[odoo/odoo.git] / addons / point_of_sale / __terp__.py
1 # -*- encoding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2009 Tiny SPRL (<http://tiny.be>). All Rights Reserved
6 #    $Id$
7 #
8 #    This program is free software: you can redistribute it and/or modify
9 #    it under the terms of the GNU General Public License as published by
10 #    the Free Software Foundation, either version 3 of the License, or
11 #    (at your option) any later version.
12 #
13 #    This program is distributed in the hope that it will be useful,
14 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 #    GNU General Public License for more details.
17 #
18 #    You should have received a copy of the GNU General Public License
19 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
20 #
21 ##############################################################################
22
23
24 {
25     'name': 'Point Of Sale',
26     'version': '1.0',
27     'category': 'Generic Modules/Sales & Purchases',
28     'description': """
29 Main features :
30  - Fast encoding of the sale.
31  - Allow to choose one payment mode (the quick way) or to split the payment between several payment mode.
32  - Computation of the amount of money to return.
33  - Create and confirm picking list automatically.
34  - Allow the user to create invoice automatically.
35  - Allow to refund former sales.
36
37     """,
38     'author': 'Tiny',
39     'depends': ['sale', 'delivery'],
40 #    'depends': ['sale', 'purchase', 'account', 'account_tax_include','board','mrp','board_manufacturing','delivery','profile_manufacturing','account','multi_company'],
41     'init_xml': [],
42
43     'update_xml': [
44         'security/point_of_sale_security.xml',
45         'security/ir.model.access.csv',
46         'wizard/pos_details.xml',  
47         'wizard/pos_add_product.xml',
48         'wizard/pos_confirm.xml',
49         'wizard/pos_discount.xml',
50         'wizard/pos_get_sale.xml',
51         'wizard/pos_open_statement.xml',
52         'wizard/pos_close_statement.xml',  
53         'wizard/pos_box_entries.xml',
54         'wizard/pos_payment_report_user_view.xml',
55         'wizard/pos_payment_report_date_view.xml',
56         'wizard/pos_box_out.xml', 
57         'wizard/pos_sales_user.xml',
58         'wizard/all_closed_cashbox_of_the_day.xml',  
59         'wizard/pos_sales_user_current_user.xml',
60         'wizard/pos_sale_user_today.xml',      
61         'wizard/pos_receipt_view.xml',  
62         'wizard/pos_payment_report_user.xml',  
63         'wizard/pos_payment_report.xml',
64         'wizard/pos_payment.xml',
65         'pos_report.xml',
66         'pos_wizard.xml',
67         'pos_view.xml',
68         'pos_sequence.xml',
69         'posrule_data.xml',
70         'pos_data.xml',
71         'pos_workflow.xml',
72         'statement_view.xml',
73         'statement_report.xml',
74         'statement_data.xml',
75         'statement_wizard.xml',    
76     ],
77     'demo_xml': ['pos_demo.xml','singer_statement_demo.xml','multi_company_stock_data.xml'],
78     'installable': True,
79 }
80 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: