__manifest__.py 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. 'name': "表头字段修改工具",
  3. 'summary': """
  4. 修改工具""",
  5. 'description': """
  6. 修改表头内容
  7. """,
  8. 'author': "ZCDM 开发",
  9. 'website': "http://www.zcdmdata.com",
  10. 'sequence': 3,
  11. # Categories can be used to filter modules in modules listing
  12. # Check https://github.com/odoo/odoo/blob/master/openerp/addons/base/module/module_data.xml
  13. # for the full list
  14. 'category': 'jc',
  15. 'version': '0.3',
  16. 'installable': True,
  17. 'application': True,
  18. # any module necessary for this one to work correctly
  19. 'depends': [
  20. 'base_setup',
  21. 'web',
  22. 'base',
  23. ],
  24. # always loaded
  25. 'data': [
  26. 'security/security.xml',
  27. 'security/ir.model.access.csv',
  28. 'views/config.xml',
  29. 'views/header.xml',
  30. 'views/modify_field_name.xml',
  31. 'security/groups_menu.xml',
  32. ],
  33. 'qweb': [
  34. 'static/src/xml/form_edit_config.xml',
  35. ],
  36. # only loaded in demonstration mode
  37. 'demo': [
  38. # 'demo/demo.xml',
  39. ],
  40. }