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.
19 lines
857 B
19 lines
857 B
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data>
|
|
<!-- Default product is configured for booking fees -->
|
|
<record id="product_category_appointment" model="product.category">
|
|
<field name="parent_id" ref="product.product_category_1"/>
|
|
<field name="name">Booking Fees</field>
|
|
</record>
|
|
<record id="default_booking_product" model="product.product">
|
|
<field name="name">Booking Fees</field>
|
|
<field name="standard_price">0.00</field>
|
|
<field name="uom_id" ref="uom.product_uom_unit"/>
|
|
<field name="list_price">50.00</field>
|
|
<field name="detailed_type">booking_fees</field>
|
|
<field name="purchase_ok" eval="False"/>
|
|
<field name="categ_id" ref="product_category_appointment"/>
|
|
</record>
|
|
</data>
|
|
</odoo>
|
|
|