summaryrefslogtreecommitdiff
path: root/addons/purchase_stock/report/report_stock_forecasted.xml
blob: 65538563f8e71911e5ff41216579b50eab6bc0c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?xml version="1.0" encoding="utf-8"?>
<odoo>
    <template id="purchase_report_product_product_replenishment" inherit_id="stock.report_product_product_replenishment">
        <xpath expr="//tr[@name='draft_picking_in']" position="after">
            <tr t-if="docs['draft_purchase_qty']" name="draft_po_in">
                <td colspan="2">Draft PO</td>
                <td t-esc="docs['draft_purchase_qty']" class="text-right"/>
                <td t-esc="docs['uom']" groups="uom.group_uom"/>
            </tr>
        </xpath>
    </template>
</odoo>