There is no field for company registration number in res.partner
Only place I can put company registry value is in res.company:
'company_registry': fields.char('Company Registry', size=64),
Is there any way to get company registry field to all partner objects? Or I just have to extend res.partner ?
I't seem to be a important field and it's missing.
I thinks it should be implemented same way as the vat field in res.company model:
'vat': fields.related('partner_id', 'vat', string="Tax ID", type="char", size=32),