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.
14 lines
683 B
14 lines
683 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!--Adding the logo in the pos receipt-->
|
|
<templates id="point_of_sale.template" xml:space="preserve">
|
|
<t t-inherit="point_of_sale.OrderReceipt" t-inherit-mode="extension"
|
|
owl="1">
|
|
<xpath expr="//div[hasclass('pos-receipt')]/ReceiptHeader"
|
|
position="before">
|
|
<t t-log="this.env.services.pos.config.id"/>
|
|
<img t-if="this.env.services.pos.config.image"
|
|
t-attf-src="/web/image?model=pos.config&field=image&id={{ this.env.services.pos.config.id }}"
|
|
style="width:10%"/>
|
|
</xpath>
|
|
</t>
|
|
</templates>
|
|
|