__openerp__.py 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. # -*- coding: utf-8 -*-
  2. #################################################################################
  3. #
  4. # OpenERP, Open Source Management Solution
  5. # Copyright (C) 2013 Julius Network Solutions SARL <contact@julius.fr>
  6. #
  7. # This program is free software: you can redistribute it and/or modify
  8. # it under the terms of the GNU General Public License as published by
  9. # the Free Software Foundation, either version 3 of the License, or
  10. # (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 General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU General Public License
  18. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. #
  20. #################################################################################
  21. {
  22. "name": 'Product barcode generator',
  23. "version": '1.0',
  24. "description": """
  25. *This is a frozen version. The module is moved to another repository. Check out newest version here:* https://github.com/OCA/stock-logistics-barcode/tree/8.0/product_barcode_generator
  26. This module will add a function which leads to an automatic generation of EAN13 for products
  27. You will have to define the company default value (6 firsts number of EAN13) then the 6 next number the sequence.
  28. The 13rd is the key of the EAN13, this will be automatically computed.
  29. """,
  30. "author": 'Julius Network Solutions',
  31. "website": 'http://www.julius.fr/',
  32. "depends": [
  33. 'base',
  34. 'product',
  35. ],
  36. "demo": [],
  37. "data": [
  38. "data/ean_sequence.xml",
  39. "res_company_view.xml",
  40. "product_view.xml",
  41. "sequence_view.xml",
  42. ],
  43. "installable": True,
  44. "active": False,
  45. "category": "Stock Management",
  46. }
  47. # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: