Files
manufacture/mrp_bom_location/views/report_mrpbomstructure.xml
2023-08-11 10:59:08 +02:00

29 lines
1.1 KiB
XML

<?xml version="1.0" encoding="utf-8" ?>
<odoo>
<template id="report_mrpbomstructure_location" inherit_id="mrp.report_mrp_bom">
<xpath expr="//thead/tr/th[last()-1]" position="after">
<th
t-if="data['bom'].location_id"
class="o_mrp_bom_cost text-right"
title="Location of the product"
>Location</th>
</xpath>
<xpath expr="//tbody/tr/td[last()-1]" position="after">
<td class="text-end" t-esc="data['bom'].location_id.complete_name" />
</xpath>
<xpath expr="//tbody/tr[last()]/td[last()-1]" position="after">
<td t-if="data['bom'].location_id" />
</xpath>
<xpath expr="//tbody/t[last()]/tr/td[last()-1]" position="after">
<td t-if="data['bom'].location_id" />
</xpath>
</template>
<template id="report_mrp_bom_pdf_line" inherit_id="mrp.report_mrp_bom_pdf_line">
<xpath expr="//td[last()-1]" position="after">
<td t-if="data['bom'].location_id" class="text-right">
<span t-esc="l['location_name']" />
</td>
</xpath>
</template>
</odoo>