diff options
| author | Azka Nathan <darizkyfaz@gmail.com> | 2025-10-20 16:13:29 +0700 |
|---|---|---|
| committer | Azka Nathan <darizkyfaz@gmail.com> | 2025-10-20 16:13:29 +0700 |
| commit | 826f19a3f5de7747192fd8ed4ba0c247084ed03c (patch) | |
| tree | 86011a57ff749325b02bbb833ffcc5b967fa4dd7 /indoteknik_custom/models/stock_quant.py | |
| parent | da01b745094082f7efd837bef2a796d8dcede50b (diff) | |
push locator
Diffstat (limited to 'indoteknik_custom/models/stock_quant.py')
| -rw-r--r-- | indoteknik_custom/models/stock_quant.py | 6 |
1 files changed, 6 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..05335115 --- /dev/null +++ b/indoteknik_custom/models/stock_quant.py @@ -0,0 +1,6 @@ +from odoo import _, api, fields, models + +class StockQuant(models.Model): + _inherit = 'stock.quant' + + note = fields.Char(string="Note")
\ No newline at end of file |
