mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-25 12:12:04 +02:00
13 lines
435 B
XML
13 lines
435 B
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
<template id="report_rma_document" inherit_id="rma.report_rma_document">
|
|
<xpath expr="//tr[@name='tr_picking']" position="before">
|
|
<tr t-if="doc.order_id" name="tr_picking">
|
|
<td>Sale order</td>
|
|
<td>
|
|
<span t-field="doc.order_id" />
|
|
</td>
|
|
</tr>
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|