تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
2 الردود
10793 أدوات العرض

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),
الصورة الرمزية
إهمال
أفضل إجابة

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.

الصورة الرمزية
إهمال
أفضل إجابة

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.

الصورة الرمزية
إهمال