Zum Inhalt springen
Menü
Sie müssen registriert sein, um mit der Community zu interagieren.
Diese Frage wurde gekennzeichnet
2 Antworten
10795 Ansichten

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),
Avatar
Verwerfen
Beste Antwort

We are working with Latin America (where this requirement is needed among other countries) and we have been successfully using the field "Reference" in the "Sales & Purchases" tab of the Customer. It's good because it's already on the reports too. And it's really what it is, a customer reference number.

Avatar
Verwerfen
Beste Antwort

We are working with clients across regions where a Company Registration Number is a mandatory requirement (including parts of Europe and Asia), and we've successfully handled this by adding a custom field to the res.partner model.

However, in some cases where customization wasn’t feasible, we've used the “Reference” field under the "Sales & Purchases" tab in the customer form. It works well as a placeholder for the registration number because it’s already visible in key documents and reports, and acts effectively as a unique identifier for the partner.

That said, for full clarity and separation of data, we still recommend extending res.partner to include a dedicated company_registry field—especially if your workflows or compliance rules require it explicitly.

Avatar
Verwerfen