12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- {
- 'name': "回车事件字段跳转工具",
- 'summary': """
- 回车事件字段跳转工具
- """,
- 'description': """
- 对此相关进行设置后,可以实现在进行回车事件时,按照设置内容跳转到相应的字段,或执行换行以及新建行操作
- """,
- 'author': "ZCDM 开发",
- 'website': "http://www.zcdmdata.com",
- 'sequence': 3,
- # Categories can be used to filter modules in modules listing
- # Check https://github.com/odoo/odoo/blob/master/openerp/addons/base/module/module_data.xml
- # for the full list
- 'category': 'jc',
- 'version': '0.3',
- 'installable': True,
- 'application': True,
- # any module necessary for this one to work correctly
- 'depends': [
- 'base_setup',
- 'web',
- 'base',
- ],
- # always loaded
- 'data': [
- 'security/security.xml',
- 'security/ir.model.access.csv',
- 'views/config.xml',
- 'views/views.xml',
- 'security/groups_menu.xml',
- ],
- 'qweb': [
- 'static/src/xml/config.xml',
- ],
- # only loaded in demonstration mode
- 'demo': [
- # 'demo/demo.xml',
- ],
- }
|