diff options
| author | FIN-IT_AndriFP <it@fixcomart.co.id> | 2025-11-03 14:23:14 +0700 |
|---|---|---|
| committer | FIN-IT_AndriFP <it@fixcomart.co.id> | 2025-11-03 14:23:14 +0700 |
| commit | abe957c0e15d5c7171bb748ffca27c7517bd23f8 (patch) | |
| tree | 7415afa92326b523451c8e42f023a2c2981ed26a /indoteknik_custom/models/uom_uom.py | |
| parent | da34fa99cf4816dbd3c6e9f1a2e47ec19059b765 (diff) | |
| parent | f820ab9df141389af244a36b093f8a119a4b2004 (diff) | |
Merge branch 'odoo-backup' of https://bitbucket.org/altafixco/indoteknik-addons into odoo-backup
Diffstat (limited to 'indoteknik_custom/models/uom_uom.py')
| -rw-r--r-- | indoteknik_custom/models/uom_uom.py | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/indoteknik_custom/models/uom_uom.py b/indoteknik_custom/models/uom_uom.py new file mode 100644 index 00000000..32e53d73 --- /dev/null +++ b/indoteknik_custom/models/uom_uom.py @@ -0,0 +1,6 @@ +from odoo import fields, models, api, _ + +class Uom(models.Model): + _inherit = 'uom.uom' + + coretax_id = fields.Char(string='Coretax ID') |
