Estoy intentando crear un registro en whatsapp.composer vía código Python en Odoo SaaS 19.1. Al intentar pasar los campos res_id y res_model en el create(), el sistema devuelve un KeyError / Invalid Field. ¿Cuál es la forma correcta de vincular el registro activo (CRM Lead) al composer en esta versión si esos campos ya no existen en el modelo?
신고된 질문입니다
1
회신
1014
화면
Hello Eliana Bermudez,
I hope you are doing well
Fix:The fields are res_model and res_ids (plural, not res_id).
composer = env['whatsapp.composer'].create({
I hope you are doing well
Fix:The fields are res_model and res_ids (plural, not res_id).
composer = env['whatsapp.composer'].create({
'res_model': 'crm.lead',
'res_ids': str(record.ids), # must be a string like "[5]"
'wa_template_id': template.id,
})
I hope this information helps you
Thanks & Regards,
Kunjan Patel
I hope this information helps you
Thanks & Regards,
Kunjan Patel
| 관련 게시물 | 답글 | 화면 | 활동 | |
|---|---|---|---|---|
|
|
1
4월 26
|
1310 | ||
|
|
2
3월 26
|
1310 | ||
|
|
1
3월 26
|
1109 | ||
|
|
1
3월 26
|
1204 | ||
|
|
0
4월 25
|
2322 |
Great, it worked. Muchas gracias!
Hello,
I am glad to hear your issue is solved.
Thanks.