blob: 86cad03f0f9c08f187f90551497f5f3696b3d31d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
<odoo>
<template id="report_picking_inherit" inherit_id="stock.report_picking">
<xpath expr="t/t/t/div/table/thead/tr/th[@name='th_from']" position="before">
<th name="th_from" align="left">
<strong>OnHand</strong>
</th>
</xpath>
<xpath expr="t/t/t/div/table/tbody/t/t/tr/td[2]" position="after">
<td>
<span t-field="ml.product_id.qty_available"/>
</td>
</xpath>
</template>
</odoo>
|