summaryrefslogtreecommitdiff
path: root/addons/point_of_sale/static/src/xml/Screens/PaymentScreen/PSNumpadInputButton.xml
blob: 381cd88c61df8fdee7862f5055641a5401403ee4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?xml version="1.0" encoding="UTF-8"?>
<templates id="template" xml:space="preserve">

    <t t-name="PSNumpadInputButton" owl="1">
        <button t-attf-class="{{ _class }}"
                t-on-click="trigger('input-from-numpad', { key: props.value })">
            <t t-slot="default">
                <t t-if="props.text">
                    <t t-esc="props.text" />
                </t>
                <t t-else="">
                    <t t-esc="props.value" />
                </t>
            </t>
        </button>
    </t>

</templates>