Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions product_state/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
"author": "ACSONE SA/NV, Odoo Community Association (OCA)",
"website": "https://github.com/OCA/product-attribute",
"category": "Product",
"version": "18.0.1.0.0",
"version": "18.0.1.0.1",
"license": "AGPL-3",
"depends": ["product"],
"data": [
Expand All @@ -18,7 +18,9 @@
"views/product_state_views.xml",
],
"application": False,
"auto_install": True, # TRESCLOUD: Util para instalación automática desde el autoinstaller. Módulo: Product Tier Validation (product_tier_validation)
# TRESCLOUD: Util para instalación automática desde el autoinstaller.
# Módulo: Product Tier Validation (product_tier_validation)
"auto_install": True,
"maintainers": ["emagdalenaC2i"],
"post_init_hook": "post_init_hook",
}
2 changes: 1 addition & 1 deletion product_state/views/product_template_views.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<field name="res_model">product.template</field>
<field name="view_mode">kanban,form,list</field>
<field name="context">{}</field>
<field name="domain">[('product_state_id', '=', id)]</field>
<field name="domain">[('product_state_id', '=', active_id)]</field>
</record>
<record id="view_product_template_search_state" model="ir.ui.view">
<field name="name">product.template.search.state</field>
Expand Down
3 changes: 2 additions & 1 deletion product_tier_validation/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"author": "Open Source Integrators, Odoo Community Association (OCA)",
"license": "AGPL-3",
"installable": True,
"auto_install": True, # TRESCLOUD: Util para instalación automática desde el autoinstaller
# TRESCLOUD: Util para instalación automática desde el autoinstaller
"auto_install": True,
"maintainers": ["dreispt"],
"development_status": "Beta",
"depends": ["product_state", "base_tier_validation"],
Expand Down
Loading