summaryrefslogtreecommitdiff
path: root/addons/pos_cache/views/pos_cache_views.xml
blob: 553c1df1f842a975e71267f59754f856a303f106 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0"?>
<odoo>
    <data>
        <record id="pos_config_view_form_inherit_pos_cache" model="ir.ui.view">
            <field name="name">pos.config.form.inherit.pos.cache</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="//field[@name='currency_id']" position="after">
                    <field name='oldest_cache_time'/>
                    <button name='delete_cache' type="object"
                        string="Invalidate cache"
                        attrs="{'invisible': [('oldest_cache_time', '=', False)]}"/>
                </xpath>
            </field>
        </record>
    </data>
</odoo>