You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
901 B

  1. # -*- coding: utf-8 -*-
  2. {
  3. 'name': "Beescoop Point of sale",
  4. 'summary': """
  5. Module that extends the pos for the beescoop
  6. """,
  7. 'description': """
  8. Long description of module's purpose
  9. """,
  10. 'author': "Beescoop - Cellule IT",
  11. 'website': "https://github.com/beescoop/Obeesdoo",
  12. # Categories can be used to filter modules in modules listing
  13. # Check https://github.com/odoo/odoo/blob/master/openerp/addons/base/module/module_data.xml
  14. # for the full list
  15. 'category': 'Point Of Sale',
  16. 'version': '0.1',
  17. # any module necessary for this one to work correctly
  18. 'depends': ['beesdoo_base', 'beesdoo_product'],
  19. # always loaded
  20. 'data': [
  21. 'security/ir.model.access.csv',
  22. 'views/beesdoo_pos.xml',
  23. 'data/email.xml'
  24. ],
  25. 'qweb': ['static/src/xml/templates.xml'],
  26. # only loaded in demonstration mode
  27. }