f75510766348c71b90f6906b8e544b650a8ffc04
[odoo/odoo.git] / addons / barcodes / __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': 'Barcodes',
25     'version': '1.0',
26     'category': '',
27     'sequence': 6,
28     'summary': 'Barcode Nomenclatures Setup',
29     'description': """
30
31 =======================
32
33 This module defines barcode nomenclatures whose rules identify e.g. products, locations.
34 It contains the following features:
35 - Barcode patterns to identify barcodes containing a numerical value (e.g. weight, price)
36 - Definitin of barcode aliases that allow to identify the same product with different barcodes
37 - Unlimited barcode patterns and definitions. 
38 - Barcode EAN13 encoding supported
39 """,
40     'author': 'OpenERP SA',
41     'depends': ['web'],
42     'website': '',
43     'data': [
44         'data/barcodes_data.xml',
45         'barcodes_view.xml',
46         'security/ir.model.access.csv',
47         'views/templates.xml',
48     ],
49     'installable': True,
50     'auto_install': False,
51 }
52
53 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: