bemade-addons/openwebui_integration_product/views/product_template_action.xml
2025-02-18 08:55:21 -05:00

14 lines
629 B
XML

<?xml version="1.0" encoding="utf-8"?>
<odoo>
<!-- Action serveur pour suggérer des catégories -->
<record id="action_suggest_category_multi" model="ir.actions.server">
<field name="name">AI Suggested Category</field>
<field name="model_id" ref="product.model_product_template"/>
<field name="binding_model_id" ref="product.model_product_template"/>
<field name="binding_view_types">list</field>
<field name="state">code</field>
<field name="code">
action = model.browse(env.context.get('active_ids', [])).action_suggest_category()
</field>
</record>
</odoo>