<?xml version="1.0" encoding="UTF-8"?>
<templates id="template" xml:space="preserve">

    <t t-name="Orderline" t-inherit="point_of_sale.Orderline" t-inherit-mode="extension" owl="1">
        <xpath expr="//ul[hasclass('info-list')]" position="inside">
            <t t-if="env.pos.is_french_country() !== false and props.line.price_manually_set">
                <li class="info">
                    Old unit price:
                    <span style="font-weight: bold;">
                        <s>
                            <t t-esc="env.pos.format_currency(props.line.get_fixed_lst_price(),'Product Price')" /> / Units
                        </s>
                    </span>
                </li>
            </t>
        </xpath>
    </t>

</templates>
