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