forked from Rudoo/L10n_ru
6 lines
151 B
Python
6 lines
151 B
Python
![]() |
from odoo import api, fields, models
|
||
|
|
||
|
class Company(models.Model):
|
||
|
_inherit = 'res.company'
|
||
|
|
||
|
edi = fields.Char(string='ID EDI', readonly=False)
|