1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/sale_management_renting/data/rental_management_demo.xml
2024-12-10 09:04:09 +07:00

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>