fix #I7N69Y [app_odoo_customize]开发者模式下增加可查看应用所在目录

This commit is contained in:
Chill
2023-07-31 17:12:23 +08:00
parent cd1422e423
commit 6da3d3f98e
12 changed files with 333 additions and 9 deletions

View File

@@ -12,6 +12,7 @@
<field name="installed_version" position="after">
<field name="latest_version" optional="hide"/>
<field name="local_updatable" optional="show"/>
<field name="addons_path" optional="hide"/>
</field>
<field name="website" position="attributes">
<attribute name="optional">hide</attribute>
@@ -27,6 +28,9 @@
<filter name="not_installed" position="after">
<filter name="is_local_updatable" string="Local updatable" domain="[('local_updatable', '=', True)]"/>
</filter>
<xpath expr="//search/group" position="inside">
<filter string="Addons Path" name="addons_path" domain="[]" context="{'group_by': 'addons_path_id'}"/>
</xpath>
</field>
</record>
<record id="app_module_form" model="ir.ui.view">
@@ -40,6 +44,12 @@
<field name="website" position="attributes">
<attribute name="groups">app_odoo_customize.group_show_author_in_apps</attribute>
</field>
<xpath expr="//notebook/page/group" position="inside">
<group name="module_path">
<field name="addons_path_id" invisible="1"/>
<field name="addons_path"/>
</group>
</xpath>
</field>
</record>
<record id="app_module_view_kanban" model="ir.ui.view">