odoo-addons/pos_order_remove_line/static/src/xml/orderline.xml

14 lines
456 B
XML

<!--
~ Copyright 2023 LevelPrime
~ License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
-->
<templates id="template" xml:space="preserve">
<t t-inherit="point_of_sale.Orderline" t-inherit-mode="extension">
<xpath expr="//span[hasclass('price')]" position="before">
<button class="remove-line-button" t-on-click="removeLine">
<i class="fa fa-trash-o" />
</button>
</xpath>
</t>
</templates>