forked from Rudoo/L10n_ru
8 lines
202 B
Python
8 lines
202 B
Python
from odoo import models, fields, api, _
|
|
|
|
|
|
class AccountMoveLine(models.Model):
|
|
_inherit = "account.move.line"
|
|
|
|
uom_okei = fields.Char(string=_('Код ОКЕИ'), related='product_uom_id.okei')
|