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

    <t t-name="OrderRow" owl="1">
        <div class="order-row"
             t-att-class="{ highlight: highlighted, lighter: !props.order.locked }"
             t-on-click="trigger('click-order', props.order)">
            <div class="item name"><t t-esc="name" /></div>
            <div class="item date"><t t-esc="date" /></div>
            <div class="item customer"><t t-esc="customer" /></div>
            <div class="item total"><t t-esc="total" /></div>
        </div>
    </t>

</templates>