__manifest__.py 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. 'name': "回车事件字段跳转工具",
  3. 'summary': """
  4. 回车事件字段跳转工具
  5. """,
  6. 'description': """
  7. 对此相关进行设置后,可以实现在进行回车事件时,按照设置内容跳转到相应的字段,或执行换行以及新建行操作
  8. """,
  9. 'author': "ZCDM 开发",
  10. 'website': "http://www.zcdmdata.com",
  11. 'sequence': 3,
  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': 'jc',
  16. 'version': '0.3',
  17. 'installable': True,
  18. 'application': True,
  19. # any module necessary for this one to work correctly
  20. 'depends': [
  21. 'base_setup',
  22. 'web',
  23. 'base',
  24. ],
  25. # always loaded
  26. 'data': [
  27. 'security/security.xml',
  28. 'security/ir.model.access.csv',
  29. 'views/config.xml',
  30. 'views/views.xml',
  31. 'security/groups_menu.xml',
  32. ],
  33. 'qweb': [
  34. 'static/src/xml/config.xml',
  35. ],
  36. # only loaded in demonstration mode
  37. 'demo': [
  38. # 'demo/demo.xml',
  39. ],
  40. }