Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
1045 มุมมอง

Hello! 

I am new to odoo development and I have been searching for how to change the calendar.event field name from a char to selection,


note: I have inherited the model in a custom_addon directory.

Thank you,

Best regards,


อวตาร
ละทิ้ง
คำตอบที่ดีที่สุด

Hi,

First you have to check if this field used in code or in another model as a related field before change the type because this will cause many issue for you. So I prefer to create a new field and use it for your own purpose.

anyhow, To change the field type, you can do it as below:

 field_1 = fields.Selection([('select1','select1'), ('select2,'select2') , ('select3','select3') ], string="Selection Field Name")

อวตาร
ละทิ้ง