diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2024-01-10 11:10:50 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2024-01-10 11:10:50 +0700 |
| commit | 5005eebb8fdd82db1e65a1d3de715d8bb5a63b32 (patch) | |
| tree | 3d1e2c2ad6ef35f7069116584e90e624551b8024 /indoteknik_custom/models/stock_quant.py | |
| parent | 893fbb7a4d1467686c4de435393f1162c4d04bd7 (diff) | |
IU minus inventory validation
Diffstat (limited to 'indoteknik_custom/models/stock_quant.py')
| -rw-r--r-- | indoteknik_custom/models/stock_quant.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/indoteknik_custom/models/stock_quant.py b/indoteknik_custom/models/stock_quant.py new file mode 100644 index 00000000..9affcf4b --- /dev/null +++ b/indoteknik_custom/models/stock_quant.py @@ -0,0 +1,8 @@ +import logging + +from odoo import _, api, fields, models +from odoo.exceptions import UserError +class StockQuant(models.Model): + _inherit = 'stock.quant' + +
\ No newline at end of file |
