[IMP] Update the translation
[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', 'purchase', 'account', 'account_tax_include'],
40     'init_xml': [],
41     'update_xml': [
42         'security/point_of_sale_security.xml',
43         'security/ir.model.access.csv',
44         'pos_report.xml',
45         'pos_wizard.xml',
46         'pos_view.xml',
47         'pos_sequence.xml',
48         'pos_data.xml',
49         'pos_workflow.xml'
50     ],
51     'demo_xml': [],
52     'installable': True,
53     'certificate': '48272150909',
54 }
55 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: