update category

This commit is contained in:
IvanOffice
2023-08-09 17:34:52 +08:00
parent 6ee656c156
commit 24f0aa0cd7
4 changed files with 16 additions and 2 deletions

View File

@@ -25,7 +25,7 @@
'name': 'odoo 16 Customize OEM(Boost, Data reset)', 'name': 'odoo 16 Customize OEM(Boost, Data reset)',
'version': '16.23.08.05', 'version': '16.23.08.05',
'author': 'odooai.cn', 'author': 'odooai.cn',
'category': 'Productivity', 'category': 'Extra Tools',
'website': 'https://www.odooai.cn', 'website': 'https://www.odooai.cn',
'live_test_url': 'https://demo.odooapp.cn', 'live_test_url': 'https://demo.odooapp.cn',
'license': 'LGPL-3', 'license': 'LGPL-3',

View File

@@ -43,7 +43,7 @@
'name': 'Product Brand Manager,产品品牌管理', 'name': 'Product Brand Manager,产品品牌管理',
'version': '16.23.12.29', 'version': '16.23.12.29',
'author': 'odooai.cn', 'author': 'odooai.cn',
'category': 'Product', 'category': 'Base',
'website': 'https://www.odooai.cn', 'website': 'https://www.odooai.cn',
'license': 'LGPL-3', 'license': 'LGPL-3',
'sequence': 2, 'sequence': 2,

View File

@@ -65,6 +65,7 @@
''', ''',
'data': [ 'data': [
'views/product_template_views.xml', 'views/product_template_views.xml',
'views/product_public_category_views.xml',
# 'report/.xml', # 'report/.xml',
], ],
'demo': [], 'demo': [],

View File

@@ -0,0 +1,13 @@
<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<record id="app_product_public_category_tree_view" model="ir.ui.view">
<field name="name">app.product.public.category.tree</field>
<field name="model">product.public.category</field>
<field name="inherit_id" ref="website_sale.product_public_category_tree_view"/>
<field name="arch" type="xml">
<xpath expr="//tree" position="attributes">
<attribute name="editable">bottom</attribute>
</xpath>
</field>
</record>
</odoo>