gestion des demandes d'évolution pour le centre kalachakra non géré dans les module booking et opendons
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

36 lines
1.3 KiB

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<record id="product_template_search_view" model="ir.ui.view">
<field name="name">booking.product.template.search</field>
<field name="model">product.template</field>
<field name="inherit_id" ref="product.product_template_search_view" />
<field name="arch" type="xml">
<filter name="filter_to_purchase" position="after">
<filter
name="filter_booking_product"
string="Booking products"
domain="[('booking_product', '=', True)]"
/>
<filter
name="filter_booking_product_options"
string="Booking option products"
domain="[('booking_option_product', '=', True)]"
/>
</filter>
</field>
</record>
<!-- <record id="product_template_form_view" model="ir.ui.view">
<field name="name">booking.product.template.form</field>
<field name="model">product.template</field>
<field name="inherit_id" ref="product.product_template_form_view" />
<field name="arch" type="xml">
<div name="options" position="inside">
</div>
</field>
</record> -->
</odoo>