forked from Rudoo/L10n_ru
12 lines
456 B
Python
12 lines
456 B
Python
![]() |
from odoo import fields, models
|
||
|
class ResPartner(models.Model):
|
||
|
_inherit = 'res.partner'
|
||
|
|
||
|
inn = fields.Char('INN', related='vat')
|
||
|
kpp = fields.Char('KPP', size=9)
|
||
|
okpo = fields.Char('OKPO', size=14)
|
||
|
ogrn = fields.Char('ОГРН')
|
||
|
type = fields.Selection(selection_add=[('director', 'Директор'), ('accountant', 'Бухгалтер')])
|
||
|
facsimile = fields.Binary("Подпись")
|
||
|
stamp = fields.Binary("Печать")
|