mirror of
https://github.com/guohuadeng/app-odoo.git
synced 2025-02-23 04:11:36 +02:00
add abc
This commit is contained in:
@@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
'name': 'odoo 14,13 Customize OEM(Boost, Data reset)',
|
'name': 'odoo 14,13 Customize OEM(Boost, Data reset)',
|
||||||
'version': '13.20.11.04',
|
'version': '13.20.11.06',
|
||||||
'author': 'Sunpop.cn',
|
'author': 'Sunpop.cn',
|
||||||
'category': 'Productivity',
|
'category': 'Productivity',
|
||||||
'website': 'https://www.sunpop.cn',
|
'website': 'https://www.sunpop.cn',
|
||||||
@@ -77,6 +77,7 @@
|
|||||||
34. Add Remove all quality data.
|
34. Add Remove all quality data.
|
||||||
35. Fixed for odoo 14.
|
35. Fixed for odoo 14.
|
||||||
36. Add refresh translate for multi module.
|
36. Add refresh translate for multi module.
|
||||||
|
37. Easy noupdate manage for External Identifiers(xml_id)
|
||||||
|
|
||||||
This module can help to white label the Odoo.
|
This module can help to white label the Odoo.
|
||||||
Also helpful for training and support for your odoo end-user.
|
Also helpful for training and support for your odoo end-user.
|
||||||
@@ -120,6 +121,7 @@
|
|||||||
34. 增加清除质检数据
|
34. 增加清除质检数据
|
||||||
35. 优化至odoo14适用
|
35. 优化至odoo14适用
|
||||||
36. 可为多个模块强制更新翻译
|
36. 可为多个模块强制更新翻译
|
||||||
|
37. noupdate字段的快速管理,主要针对 xml_id
|
||||||
""",
|
""",
|
||||||
'images': ['static/description/banner.gif'],
|
'images': ['static/description/banner.gif'],
|
||||||
'depends': [
|
'depends': [
|
||||||
@@ -141,6 +143,7 @@
|
|||||||
'views/ir_ui_menu_views.xml',
|
'views/ir_ui_menu_views.xml',
|
||||||
'views/ir_ui_view_views.xml',
|
'views/ir_ui_view_views.xml',
|
||||||
'views/ir_model_fields_views.xml',
|
'views/ir_model_fields_views.xml',
|
||||||
|
'views/ir_model_data_views.xml',
|
||||||
# data
|
# data
|
||||||
'data/ir_config_parameter_data.xml',
|
'data/ir_config_parameter_data.xml',
|
||||||
'data/ir_module_module_data.xml',
|
'data/ir_module_module_data.xml',
|
||||||
|
|||||||
23
app_odoo_customize/views/ir_model_data_views.xml
Normal file
23
app_odoo_customize/views/ir_model_data_views.xml
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<odoo>
|
||||||
|
<record id="app_view_model_data_list" model="ir.ui.view">
|
||||||
|
<field name="name">app.ir.model.data.tree</field>
|
||||||
|
<field name="model">ir.model.data</field>
|
||||||
|
<field name="inherit_id" ref="base.view_model_data_list"/>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<field name="res_id" position="after">
|
||||||
|
<field name="noupdate"/>
|
||||||
|
</field>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
<record id="app_view_model_data_search" model="ir.ui.view">
|
||||||
|
<field name="name">app.ir.model.data.search</field>
|
||||||
|
<field name="model">ir.model.data</field>
|
||||||
|
<field name="inherit_id" ref="base.view_model_data_search"/>
|
||||||
|
<field name="arch" type="xml">
|
||||||
|
<filter name="updatable" position="after">
|
||||||
|
<filter string="No Updatable" name="noupdatable" domain="[('noupdate', '=', True)]"/>
|
||||||
|
</filter>
|
||||||
|
</field>
|
||||||
|
</record>
|
||||||
|
</odoo>
|
||||||
Reference in New Issue
Block a user