X-Git-Url: http://git.inspyration.org/?a=blobdiff_plain;f=addons%2Fbarcodes%2F__openerp__.py;fp=addons%2Fbarcodes%2F__openerp__.py;h=b5300bdd660f4092d9a43e9b424d329e09b57c04;hb=dc560a4dd0b6c109eede6b30c02ae4b34ca77c38;hp=0000000000000000000000000000000000000000;hpb=b5164698f255633e68e6c3b75f30eae8492326dc;p=odoo%2Fodoo.git diff --git a/addons/barcodes/__openerp__.py b/addons/barcodes/__openerp__.py new file mode 100644 index 0000000..b5300bd --- /dev/null +++ b/addons/barcodes/__openerp__.py @@ -0,0 +1,31 @@ +{ + 'name': 'Barcodes', + 'version': '1.0', + 'category': '', + 'sequence': 6, + 'summary': 'Barcode Nomenclatures Setup', + 'description': """ + +======================= + +This module defines barcode nomenclatures whose rules identify e.g. products, locations. +It contains the following features: +- Barcode patterns to identify barcodes containing a numerical value (e.g. weight, price) +- Definitin of barcode aliases that allow to identify the same product with different barcodes +- Unlimited barcode patterns and definitions. +- Barcode EAN13 encoding supported +""", + 'author': 'OpenERP SA', + 'depends': ['web'], + 'website': '', + 'data': [ + 'data/barcodes_data.xml', + 'barcodes_view.xml', + 'security/ir.model.access.csv', + 'views/templates.xml', + ], + 'installable': True, + 'auto_install': False, +} + +# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: