<?xml version="1.0" encoding="utf-8"?>
<odoo>

    <template id="arabic_english_invoice" inherit_id="l10n_gcc_invoice.arabic_english_invoice">
        <xpath expr="//div[@name='due_date']" position="after">
            <div class="row" t-if="o.delivery_date" name="delivery_date">
                <div class="col-6"></div>
                <div class="col-2">
                    <strong style="white-space:nowrap">Delivery Date:
                    </strong>
                </div>
                <div class="col-2">
                    <span t-field="o.delivery_date"/>
                </div>
                <div class="col-2 text-end">
                    <strong style="white-space:nowrap">:
                        تاريخ التوصيل
                    </strong>
                </div>
            </div>
        </xpath>
        <xpath expr="//t[@t-set='address']" position="after">
            <t t-set="information_block">
                <p>
                    <img t-if="o.l10n_sa_qr_code_str"
                         style="display:block;"
                         t-att-src="'/report/barcode/?barcode_type=%s&amp;value=%s&amp;width=%s&amp;height=%s'%('QR', quote_plus(o.l10n_sa_qr_code_str), 200, 200)"/>
                </p>
            </t>
        </xpath>
    </template>

</odoo>
