Initial commit: Sale packages

This commit is contained in:
Ernad Husremovic 2025-08-29 15:20:49 +02:00
commit 14e3d26998
6469 changed files with 2479670 additions and 0 deletions

View file

@ -0,0 +1,19 @@
<?xml version="1.0" encoding="UTF-8" ?>
<odoo><data>
<record id="event_booth.event_booth_category_standard" model="event.booth.category">
<field name="product_id" ref="event_booth_sale.product_product_event_booth"/>
<field name="price">100</field>
</record>
<record id="event_booth.event_booth_category_premium" model="event.booth.category">
<field name="product_id" ref="event_booth_sale.product_product_event_booth"/>
<field name="price">500</field>
</record>
<record id="event_booth.event_booth_category_vip" model="event.booth.category">
<field name="product_id" ref="event_booth_sale.product_product_event_booth"/>
<field name="price">1000</field>
</record>
</data></odoo>

View file

@ -0,0 +1,14 @@
<?xml version="1.0" encoding="UTF-8" ?>
<odoo><data noupdate="1">
<record id="product_product_event_booth" model="product.product">
<field name="name">Event Booth</field>
<field name="purchase_ok" eval="False"/>
<field name="list_price">100.0</field>
<field name="description_sale" eval="False"/>
<field name="categ_id" ref="event_sale.product_category_events"/>
<field name="invoice_policy">order</field>
<field name="detailed_type">event_booth</field>
</record>
</data></odoo>