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

    <t t-name="OrderlineDetails" owl="1">
        <li class="orderline">
            <span class="product-name">
                <t t-esc="productName" />
            </span>
            <span class="price">
                <t t-esc="totalPrice" />
            </span>
            <li class="info">
                <strong>
                    <t t-esc="quantity" />
                </strong>
                <span><t t-esc="pricePerUnit" /></span>
            </li>
        </li>
    </t>

</templates>