5 lines
155 B
Python
5 lines
155 B
Python
![]() |
from odoo import fields, models
|
||
|
class UomInherit(models.Model):
|
||
|
_inherit = 'uom.uom'
|
||
|
kod = fields.Char('Код единицы измерения')
|