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.
|
|
<?xml version="1.0" encoding="UTF-8"?> <templates id="template"> <t t-extend="ReceiptScreenWidget"> <t t-jquery='.pos-receipt-container' t-operation='before'> <div class="button send"> <i class='fa fa-envelope'></i> Send Receipt By Mail </div> <div class="message-send"> </div> </t> </t>
<t t-extend="ActionpadWidget"> <t t-jquery="t[t-if='widget.pos.get_client()']" t-operation="after"> <t t-if="widget.pos.get_client()"> <div class='customer-information-pay'> <span class='customer-delegate1' /> <br /> <span class='customer-delegate2' /> <br /> <span class='customer-delegate3' /> </div> </t> </t> </t>
<t t-extend="PaymentScreenWidget"> <t t-jquery=".paymentmethods-container" t-operation="inner"> <t t-if="widget.pos.get_client()"> <div class="customer-information"> <span class='customer-name' /> <br /> <span class='customer-delegate1' /> <br /> <span class='customer-delegate2' /> <br /> <span class='customer-delegate3' /> <br /> </div> </t> </t> </t> <t t-extend="ClientListScreenWidget"> <t t-jquery='.new-customer' t-operation='replace'> </t> </t> </templates>
|