You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

20 lines
680 B

<?xml version="1.0" encoding="UTF-8"?>
<templates id="template" xml:space="preserve">
<!-- this button for booking orders-->
<t t-name="BookOrderButton" owl="1">
<t t-if="env.pos.config.enable">
<div class='control-button' t-on-click="onClick">
<i class='fa fa-book'/>
<span class="label">Booking</span>
</div>
</t>
</t>
<!-- this button for seeing booked orders-->
<t t-name="BookedOrdersButton" owl="1">
<t t-if="env.pos.config.enable">
<div class='control-button' t-on-click="onClick">
Booked Orders
</div>
</t>
</t>
</templates>