Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
1103 Lượt xem

Buenas tardes! 


Quiero saber como puedo y si se puede crear campos personalizados para mi base de datos de contactos en odoo. Quiero importar los datos de mis clientes, sin embargo, por las condiciones de mi negocio, hay unos datos que me hacen falta en el preformato de odoo.

Gracias!!

Ảnh đại diện
Huỷ bỏ

This app - https://apps.odoo.com/apps/modules/18.0/partner_custom_fields - probably will be helpful to your goals.

Câu trả lời hay nhất

Hi,

Yes, you can export and import your custom field in contacts.

Example:

Python:

from odoo import fields, models


class ResPartners(models.Model):
"""Inheriting the res. partner for adding the KYC details
and corresponding states"""
_inherit = "res.partner"


x_custom_field = fields.Char(string="Custom Field")

XML

<record id="view_partner_form" model="ir.ui.view">
<field name="name">res.partner.view.form.inherit</field>
<field name="model">res.partner</field>
<field name="inherit_id" ref="base.view_partner_form"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='vat']" position="before">
<field name="x_custom_field"/>
</xpath>
</field>
</record>

Result



Export the record:


Excel sheet:



Changed the value of the custom field 


Import the sheet



Hope it helps.

Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
1
thg 2 25
1665
0
thg 8 25
725
0
thg 4 25
814
1
thg 3 25
1126
2
thg 3 25
1161