19.0 vanilla

This commit is contained in:
Ernad Husremovic 2026-03-09 09:29:53 +01:00
parent 6e54c1af6c
commit 3ca647e428
1087 changed files with 132065 additions and 108499 deletions

View file

@ -8,19 +8,24 @@
<field name="arch" type="xml">
<form string="Restaurant Floor">
<sheet>
<widget name="web_ribbon" title="Archived" bg_color="bg-danger" attrs="{'invisible': [('active', '=', True)]}"/>
<widget name="web_ribbon" title="Archived" bg_color="text-bg-danger" invisible="active"/>
<field name="active" invisible="1"/>
<field name="floor_background_image" widget='image' class="oe_avatar" options='{"preview_image": "floor_background_image"}'/>
<group col="4">
<field name="name" />
<field name="pos_config_id" />
<field name="pos_config_ids" widget="many2many_tags"/>
<field name="background_color" groups="base.group_no_one" />
</group>
<field name="table_ids">
<tree string='Tables'>
<field name="name" />
<list string='Tables' editable="bottom">
<field name="table_number" />
<field name="seats" />
<field name="shape" />
</tree>
<field name="height" optional="hide" />
<field name="width" optional="hide" />
<field name="color" widget="color" optional="hide" />
<field name="active" optional="hide" />
</list>
</field>
</sheet>
</form>
@ -31,11 +36,11 @@
<field name="name">Restaurant Floors</field>
<field name="model">restaurant.floor</field>
<field name="arch" type="xml">
<tree string="Restaurant Floors">
<list string="Restaurant Floors">
<field name="sequence" widget="handle" />
<field name="name" />
<field name="pos_config_id" />
</tree>
<field name="pos_config_ids" widget="many2many_tags"/>
</list>
</field>
</record>
@ -55,13 +60,11 @@
<field name="model">restaurant.floor</field>
<field name="arch" type="xml">
<kanban class="o_kanban_mobile">
<field name="name"/>
<field name="pos_config_id" />
<templates>
<t t-name="kanban-box">
<div t-attf-class="oe_kanban_global_click">
<div><strong>Floor Name: </strong><t t-esc="record.name.value"/></div>
<div><strong>Point of Sale: </strong><t t-esc="record.pos_config_id.value"/></div>
<t t-name="card">
<div><strong>Floor Name: </strong><field name="name"/></div>
<div class="d-flex">
<strong>Point of Sales:</strong><field name="pos_config_ids" class="ms-1"/>
</div>
</t>
</templates>
@ -71,9 +74,8 @@
<record id="action_restaurant_floor_form" model="ir.actions.act_window">
<field name="name">Floor Plans</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">restaurant.floor</field>
<field name="view_mode">tree,kanban,form</field>
<field name="view_mode">list,kanban,form</field>
<field name="help" type="html">
<p class="o_view_nocontent_smiling_face">
Add a new restaurant floor
@ -89,18 +91,20 @@
<field name="model">restaurant.table</field>
<field name="arch" type="xml">
<form string="Restaurant Table">
<group col="2">
<field name="name" />
<field name="seats" />
</group>
<group col="4" string="Appearance" groups="base.group_no_one">
<field name="shape" />
<field name="color" />
<field name="position_h" />
<field name="position_v" />
<field name="width" />
<field name="height" />
</group>
<sheet>
<group col="2">
<field name="table_number" />
<field name="seats" />
</group>
<group col="4" string="Appearance" groups="base.group_no_one">
<field name="shape" />
<field name="color" />
<field name="position_h" />
<field name="position_v" />
<field name="width" />
<field name="height" />
</group>
</sheet>
</form>
</field>
</record>
@ -109,63 +113,5 @@
parent="point_of_sale.menu_point_config_product"
action="action_restaurant_floor_form"
sequence="10"
groups="base.group_no_one"/>
<!-- RESTAURANT PRINTERS -->
<record id="view_restaurant_printer_form" model="ir.ui.view">
<field name="name">Order Printer</field>
<field name="model">restaurant.printer</field>
<field name="arch" type="xml">
<form string="POS Printer">
<sheet>
<group>
<field name="name" />
<field name="printer_type" widget="radio"/>
<field name="proxy_ip" attrs="{'invisible': [('printer_type', '!=', 'iot')]}"/>
<field name="product_categories_ids" />
</group>
</sheet>
</form>
</field>
</record>
<record id="action_restaurant_printer_form" model="ir.actions.act_window">
<field name="name">Order Printers</field>
<field name="type">ir.actions.act_window</field>
<field name="res_model">restaurant.printer</field>
<field name="view_mode">tree,kanban,form</field>
<field name="help" type="html">
<p class="o_view_nocontent_smiling_face">
Add a new restaurant order printer
</p><p>
Order Printers are used by restaurants and bars to print the
order updates in the kitchen/bar when the waiter updates the order.
</p><p>
Each Order Printer has an IP Address that defines the IoT Box/Hardware
Proxy where the printer can be found, and a list of product categories.
An Order Printer will only print updates for products belonging to one of
its categories.
</p>
</field>
</record>
<record id="view_restaurant_printer" model="ir.ui.view">
<field name="name">Order Printers</field>
<field name="model">restaurant.printer</field>
<field name="arch" type="xml">
<tree string="Restaurant Order Printers">
<field name="name" />
<field name="proxy_ip" />
<field name="product_categories_ids" widget="many2many_tags"/>
</tree>
</field>
</record>
<menuitem id="menu_restaurant_printer_all"
parent="point_of_sale.menu_point_config_product"
action="action_restaurant_printer_form"
sequence="15"
groups="base.group_no_one"/>
groups="point_of_sale.group_pos_user"/>
</odoo>