sale_usability: track changes in delivered_qty in the chatter

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
This commit is contained in:
Alexis de Lattre
2024-03-14 18:07:52 +01:00
parent 763928c286
commit 282e7142db
22 changed files with 43 additions and 409 deletions

View File

@@ -0,0 +1,16 @@
<?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" /> -&gt; <t t-esc="float(qty_delivered)"/><br/>
</ul>
</div>
</template>
</odoo>