forked from Mapan/odoo17e
21 lines
784 B
XML
21 lines
784 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<odoo noupdate="1">
|
|
|
|
<!-- Add a rental quotation template -->
|
|
<record id="rental_order_template_1" model="sale.order.template">
|
|
<field name="name">Meeting Room</field>
|
|
<field name="number_of_days">45</field>
|
|
</record>
|
|
|
|
<record id="rental_order_template_line_1" model="sale.order.template.line">
|
|
<field name="sale_order_template_id" ref="rental_order_template_1"/>
|
|
<field name="product_id" ref="sale_renting.rental_product_2"/>
|
|
</record>
|
|
|
|
<record id="rental_order_template_option_1" model="sale.order.template.option">
|
|
<field name="sale_order_template_id" ref="rental_order_template_1"/>
|
|
<field name="product_id" ref="sale_renting.rental_product_1"/>
|
|
</record>
|
|
|
|
</odoo>
|