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
回复
981
查看
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
|
1275 | ||
|
|
2
3月 26
|
1269 | ||
|
|
1
3月 26
|
1059 | ||
|
|
1
3月 26
|
1156 | ||
|
|
0
4月 25
|
2286 |
Great, it worked. Muchas gracias!
Hello,
I am glad to hear your issue is solved.
Thanks.