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.
32 lines
1.4 KiB
32 lines
1.4 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- For adding new field in config settings-->
|
|
<record id="pos_config_view_form" model="ir.ui.view">
|
|
<field name="name">pos.config.view.form.inherit.table.reservation.on.website</field>
|
|
<field name="model">pos.config</field>
|
|
<field name="inherit_id"
|
|
ref="point_of_sale.pos_config_view_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//div[@id='iface_orderline_customer_notes']"
|
|
position="before">
|
|
<div class="col-12 col-lg-6 o_setting_box">
|
|
<div class="o_setting_left_pane">
|
|
<field name="reservation_charge"/>
|
|
</div>
|
|
<div class="o_setting_right_pane">
|
|
<label for="reservation_charge"/>
|
|
<div class="content-group"
|
|
id="warning_text_pos_restaurant">
|
|
Enable to show payment option to pre-booking
|
|
tables.
|
|
</div>
|
|
</div>
|
|
<div class="o_setting_right_pane" style="display:flex;">
|
|
<label for="refund"/>
|
|
<field name="refund"/>
|
|
</div>
|
|
</div>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|