Odoo18-Base/addons/stock_fleet/report/report_picking_batch.xml
2025-01-06 10:57:38 +07:00

27 lines
1002 B
XML

<odoo>
<template id="report_picking_batch_inherit" inherit_id="stock_picking_batch.report_picking_batch">
<xpath expr="//div[hasclass('page')]/div[2]" position="after">
<div t-if="o.dock_id">
<strong>Dock:</strong>
<span t-field="o.dock_id"/>
</div>
<div t-if="o.vehicle_id">
<strong>Vehicle:</strong>
<span t-field="o.vehicle_id"/>
</div>
<div t-if="o.vehicle_category_id">
<strong>Vehicle Category:</strong>
<span t-field="o.vehicle_category_id"/>
</div><br/>
</xpath>
<xpath expr="//table[hasclass('table')]//thead//tr//th" position="before">
<th>Sequence</th>
</xpath>
<xpath expr="//table[hasclass('table')]//tbody//tr//td" position="before">
<td>
<span t-field="pick.batch_sequence"/>
</td>
</xpath>
</template>
</odoo>