[FIX] Bug 330433 : duplicated fields in terp file of product
[odoo/odoo.git] / addons / product / __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" : "Products & Pricelists",
26     "version" : "1.1",
27     "author" : "Tiny",
28     "category" : "Generic Modules/Inventory Control",
29     "depends" : ["base", "process"],
30     "init_xml" : [],
31     "demo_xml" : ["product_demo.xml"],
32     "description": """
33     This is the base module for managing products and pricelists in Open ERP.
34
35     Products support variants, different pricing methods, suppliers
36     information, make to stock/order, different unit of measures,
37     packaging and properties.
38
39     Pricelists support:
40     * Multiple-level of discount (by product, category, quantities)
41     * Compute price based on different criteria:
42         * Other pricelist,
43         * Cost price,
44         * List price,
45         * Supplier price, ...
46     Pricelists preferences by product and/or partners.
47
48     Print product labels with barcode.
49     """,
50     'update_xml': [
51         'security/product_security.xml',
52         'security/ir.model.access.csv',
53         'product_data.xml',
54         'product_report.xml',
55         'product_view.xml',
56         'pricelist_view.xml',
57         'partner_view.xml',
58         'product_wizard.xml',
59         'process/product_process.xml'
60     ],
61     'installable': True,
62     'active': False,
63     'certificate': '0068861431437',
64 }
65 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: