odoo-addons/simplified_pos/static/src/xml/chrome.xml

13 lines
658 B
XML

<?xml version="1.0" encoding="UTF-8"?>
<templates id="template" xml:space="preserve">
<!-- Inherit point_of_sale.Chrome to Modify it -->
<t t-name="Chrome" t-inherit="point_of_sale.Chrome" t-inherit-mode="extension" owl="1">
<xpath expr="//div[hasclass('pos-branding')]" position="replace">
<div class="pos-branding">
<img t-if="!env.isMobile" class="pos-logo" t-on-click="() => this.trigger('toggle-debug-widget')"
src="/point_of_sale/static/src/img/logo.png" alt="Logo"/>
<CashMoveButton t-if="showCashMoveButton()"/>
</div>
</xpath>
</t>
</templates>