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.
35 lines
1.6 KiB
35 lines
1.6 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- Inheriting res config settings view for add custom fields -->
|
|
<record id="res_config_settings_view_form" model="ir.ui.view">
|
|
<field name="name">
|
|
res.config.settings.view.form.inherit.customer.screen.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_connected_devices_section']"
|
|
position="after">
|
|
<block title="Customer Screen POS"
|
|
id="pos_connected_customer_screen">
|
|
<setting id="pos_other_screen"
|
|
string="Allow Customer Screen"
|
|
help="Enable This Will Allow Customer Screen">
|
|
<field name="allow_customer_screen"/>
|
|
</setting>
|
|
<setting id="allow_systray_icon"
|
|
string="Allow Systray Buttons"
|
|
help="Enable This Will Show Systray Buttons">
|
|
<field name="allow_systray_icon"/>
|
|
</setting>
|
|
<setting id="allow_product_click"
|
|
string="Allow Product Click"
|
|
help="Enable This Will Allow to Open Customer Screen When Product Click">
|
|
<field name="allow_product_click"/>
|
|
</setting>
|
|
</block>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|