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?
This question has been flagged
1
Reply
220
Views
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
Enjoying the discussion? Don't just read, join in!
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up| Related Posts | Replies | Views | Activity | |
|---|---|---|---|---|
|
|
1
Mar 26
|
215 | ||
|
|
2
Mar 26
|
270 | ||
|
|
1
Mar 26
|
224 | ||
|
|
1
Mar 26
|
257 | ||
|
|
0
Apr 25
|
1721 |
Great, it worked. Muchas gracias!
Hello,
I am glad to hear your issue is solved.
Thanks.