mirror of
https://github.com/guohuadeng/app-odoo.git
synced 2025-02-23 04:11:36 +02:00
fix auto partner ref
This commit is contained in:
@@ -23,7 +23,7 @@
|
||||
|
||||
{
|
||||
'name': 'Odoo Customize(Boost,Debranding, My Odoo)',
|
||||
'version': '13.19.12.28',
|
||||
'version': '13.20.01.06',
|
||||
'author': 'Sunpop.cn',
|
||||
'category': 'Productivity',
|
||||
'website': 'https://www.sunpop.cn',
|
||||
@@ -68,6 +68,7 @@
|
||||
25. Add remove expense data
|
||||
26. Add multi uninstall modules
|
||||
27. Add odoo boost modules link.
|
||||
28. Easy Menu manager.
|
||||
|
||||
This module can help to white label the Odoo.
|
||||
Also helpful for training and support for your odoo end-user.
|
||||
@@ -89,6 +90,7 @@
|
||||
'views/res_config_settings_views.xml',
|
||||
'views/ir_model_views.xml',
|
||||
'views/ir_views.xml',
|
||||
'views/ir_ui_menu_views.xml',
|
||||
# data
|
||||
'data/ir_config_parameter.xml',
|
||||
'data/ir_module_module.xml',
|
||||
|
||||
20
app_odoo_customize/views/ir_ui_menu_views.xml
Normal file
20
app_odoo_customize/views/ir_ui_menu_views.xml
Normal file
@@ -0,0 +1,20 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<odoo>
|
||||
<data noupdate="0">
|
||||
<!-- 将菜单管理在设置中提前-->
|
||||
<record id="base.menu_grant_menu_access" model="ir.ui.menu">
|
||||
<field name="parent_id" ref="base.menu_administration"/>
|
||||
</record>
|
||||
<record id="app_edit_menu_access_search" model="ir.ui.view">
|
||||
<field name="name">app.ir.ui.menu.search</field>
|
||||
<field name="model">ir.ui.menu</field>
|
||||
<field name="inherit_id" ref="base.edit_menu_access_search"/>
|
||||
<field name="arch" type="xml">
|
||||
<filter name="inactive" position="before">
|
||||
<filter string="Top Menu" name="top_menu" domain="[('parent_id','=', False)]"/>
|
||||
</filter>
|
||||
</field>
|
||||
</record>
|
||||
|
||||
</data>
|
||||
</odoo>
|
||||
Reference in New Issue
Block a user