blob: 5df014051731f988c8a91d794d55a1ccd2fb1286 (
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
27
28
29
30
31
32
33
34
35
36
|
<?xml version="1.0" encoding="UTF-8"?>
<templates id="template" xml:space="preserve">
<t t-name="BillScreen" 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 class="top-content-center">
<h1>Bill Printing</h1>
</div>
<span class="button next highlight" t-on-click="confirm">
<span>Ok</span>
<span> </span>
<i class="fa fa-angle-double-right"></i>
</span>
</div>
<div class="centered-content">
<div class="button print" t-on-click="printReceipt">
<i class="fa fa-print"></i>
<span> </span>
<span>Print</span>
</div>
<div class="pos-receipt-container">
<OrderReceipt order="currentOrder" isBill="true" t-ref="order-receipt"/>
</div>
</div>
</div>
</div>
</t>
</templates>
|