[IMP] base_contact, event, knowledge, product, project, sale_mrp: avoid redefinition...
[odoo/odoo.git] / addons / product / __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" : "Products & Pricelists",
25     "version" : "1.1",
26     "author" : "OpenERP SA",
27     'category': 'Sales Management',
28     "depends" : ["base", "process", "decimal_precision"],
29     "init_xml" : [],
30     "demo_xml" : ["product_demo.xml"],
31     "description": """
32 This is the base module for managing products and pricelists in OpenERP.
33 ========================================================================
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
47 Pricelists preferences by product and/or partners.
48
49 Print product labels with barcode.
50     """,
51     'update_xml': [
52         'security/product_security.xml',
53         'security/ir.model.access.csv',
54         'wizard/product_price_view.xml',
55         'product_data.xml',
56         'product_report.xml',
57         'product_view.xml',
58         'wizard/product_installer.xml',
59         'product_shortcut_data.xml',
60         'pricelist_view.xml',
61         'partner_view.xml',
62         'process/product_process.xml'
63     ],
64     'test':['test/product_report.yml','test/product_test.yml'],
65     'installable': True,
66     'active': False,
67     'certificate': '0068861431437',
68     'images': ['images/product_uom.jpeg','images/product_pricelists.jpeg','images/products_categories.jpeg', 'images/products_form.jpeg'],
69 }
70 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: