mirror of
https://github.com/OCA/rma.git
synced 2025-02-16 17:11:47 +02:00
76 lines
3.1 KiB
XML
76 lines
3.1 KiB
XML
<?xml version="1.0" encoding="utf-8" ?>
|
|
<odoo>
|
|
<template id="report_rma_document" inherit_id="rma_sale.report_rma_document">
|
|
<xpath expr="//div[@id='product_information']" position="after">
|
|
<t t-if="doc.sudo().phantom_bom_product">
|
|
<strong class="d-block mt32 mb-1">Kit information</strong>
|
|
<div class="row mb32" id="kit_information">
|
|
<div
|
|
t-if="doc.sudo().phantom_bom_product"
|
|
class="col-auto mw-100 mb-2"
|
|
>
|
|
<strong>Kit:</strong>
|
|
<p
|
|
class="m-0"
|
|
t-field="doc.sudo().phantom_bom_product.display_name"
|
|
/>
|
|
</div>
|
|
<div
|
|
t-if="doc.sudo().phantom_bom_product"
|
|
class="col-auto mw-100 mb-2"
|
|
>
|
|
<strong>Kit Quantity:</strong>
|
|
<p class="m-0" t-field="doc.kit_qty" />
|
|
</div>
|
|
</div>
|
|
<strong class="d-block mb-1">Related Kit Components RMAs</strong>
|
|
<t
|
|
t-set="related_kit_rmas"
|
|
t-value="doc.search([('rma_kit_register', '=', doc.rma_kit_register), ('id', '!=', doc.id)])"
|
|
/>
|
|
<table class="table table-sm">
|
|
<thead>
|
|
<th>
|
|
<span>RMA</span>
|
|
</th>
|
|
<th>
|
|
<span>Product</span>
|
|
</th>
|
|
<th>
|
|
<span>Quantity</span>
|
|
</th>
|
|
<th>
|
|
<span>State</span>
|
|
</th>
|
|
</thead>
|
|
<tbody>
|
|
<tr t-foreach="related_kit_rmas" t-as="kit_rma">
|
|
<td>
|
|
<span t-field="kit_rma.name" />
|
|
</td>
|
|
<td>
|
|
<span
|
|
t-if="kit_rma.product_id"
|
|
t-field="kit_rma.product_id"
|
|
/>
|
|
</td>
|
|
<td>
|
|
<t t-if="kit_rma.product_id">
|
|
<span t-field="kit_rma.product_uom_qty" />
|
|
<span
|
|
t-field="kit_rma.uom_id"
|
|
groups="uom.group_uom"
|
|
/>
|
|
</t>
|
|
</td>
|
|
<td>
|
|
<span t-field="kit_rma.state" />
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</t>
|
|
</xpath>
|
|
</template>
|
|
</odoo>
|