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.
52 lines
2.7 KiB
52 lines
2.7 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- To inherit settings page -->
|
|
<record id="res_config_settings_view_form" model="ir.ui.view">
|
|
<field name="name">res.config.settings.view.form.inherit.service.charges.pos</field>
|
|
<field name="model">res.config.settings</field>
|
|
<field name="inherit_id"
|
|
ref="point_of_sale.res_config_settings_view_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//block[@id='pos_interface_section']" position="inside">
|
|
<setting help="Allow service charges on orders">
|
|
<field name="enable_service_charge"/>
|
|
<div class="content-group mt16" invisible="not enable_service_charge">
|
|
<div class="row">
|
|
<label string="Visibility" for="visibility" class="col-lg-3 o_light_label"/>
|
|
<field name="visibility" widget="radio"
|
|
options="{'horizontal': true}"
|
|
required="enable_service_charge"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="content-group mt16" invisible="not enable_service_charge or (visibility == 'session')">
|
|
<div class="row">
|
|
<label for="global_selection"
|
|
class="col-lg-3 o_light_label"/>
|
|
<field name="global_selection" widget="radio"
|
|
options="{'horizontal': true}"
|
|
required="enable_service_charge"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="content-group mt16" invisible="not enable_service_charge or (visibility == 'session')">
|
|
<div class="row">
|
|
<label for="global_product_id"
|
|
class="col-lg-3 o_light_label"/>
|
|
<field name="global_product_id"
|
|
required="enable_service_charge"
|
|
/>
|
|
</div>
|
|
</div>
|
|
<div class="content-group mt16" invisible="not enable_service_charge or (visibility == 'session')">
|
|
<div class="row">
|
|
<label for="global_charge"
|
|
class="col-lg-3 o_light_label"/>
|
|
<field name="global_charge"/>
|
|
</div>
|
|
</div>
|
|
</setting>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|