This feature is native in the purchase module in v14. I consider that it replaces the 3 modules service_line_qty_update_base/service_line_qty_update_purchase/service_line_qty_update_sale
17 lines
392 B
XML
17 lines
392 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
|
|
|
|
<template id="track_so_line_qty_delivered_template">
|
|
<div>
|
|
<strong>The delivered quantity has been updated.</strong>
|
|
<ul>
|
|
<li><t t-esc="line.name"/>:</li>
|
|
Delivered Quantity: <t t-esc="line.qty_delivered" /> -> <t t-esc="float(qty_delivered)"/><br/>
|
|
</ul>
|
|
</div>
|
|
</template>
|
|
|
|
|
|
</odoo>
|