__manifest__.py 851 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. 'name': "Demo",
  3. 'summary': """
  4. demos""",
  5. 'author': "ZCDM 开发",
  6. 'website': "http://www.zcdmdata.com",
  7. 'sequence': 9999,
  8. # Categories can be used to filter modules in modules listing
  9. # Check https://github.com/odoo/odoo/blob/master/openerp/addons/base/module/module_data.xml
  10. # for the full list
  11. 'category': '',
  12. 'version': '0.1',
  13. 'installable': True,
  14. 'application': True,
  15. # any module necessary for this one to work correctly
  16. 'depends': [
  17. 'web',
  18. 'archives',
  19. 'jc_supply_chain'
  20. ],
  21. # always loaded
  22. 'data': [
  23. 'security/ir.model.access.csv',
  24. 'views/analyse.xml',
  25. 'security/groups_menu.xml', # 放在最后面
  26. ],
  27. 'qweb': [ ],
  28. # only loaded in demonstration mode
  29. 'demo': [
  30. # 'demo/demo.xml',
  31. ],
  32. }