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

    <t t-name="ReprintReceiptScreen" owl="1">
        <div class="receipt-screen screen">
            <div class="screen-content">
                <div class="top-content">
                    <span class="button back" t-on-click="confirm">
                        <i class="fa fa-angle-double-left"></i>
                        <span> </span>
                        <span>Back</span>
                    </span>
                </div>
                <div class="centered-content">
                    <div class="button print" t-on-click="tryReprint">
                        <i class="fa fa-print"></i> Print Receipt
                    </div>
                    <div class="pos-receipt-container">
                        <OrderReceipt order="props.order" t-ref="order-receipt" />
                    </div>
                </div>
            </div>
        </div>
    </t>

</templates>