16 lines
723 B
XML
16 lines
723 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<record id="res_config_settings_view_form" model="ir.ui.view">
|
|
<field name="name">res.config.settings.view.form.inherit.pos_ui_optimization</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_payment_section']" position="inside">
|
|
<setting string="Hide Cash In/Out (Navbar)" help="Hide Cash In/Out button in POS Navbar">
|
|
<field name="pos_hide_cash_in_out_button"/>
|
|
</setting>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|