تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
2 الردود
15077 أدوات العرض

I am not able to write(update) data on product template object, here is the code which i am trying : to note binary conversion is working but while persisting data its showing can't adapt type error.

product_template_obj.set_images(cursor, user, product_template.id.id, {'image': tools.image_resize_image_big(image_binary)}, context=context)

its thowing error for this above statement

ProgrammingError : can't adapt type 'product.template'

الصورة الرمزية
إهمال

product_template.id.id or product_template_id.id ???????????

أفضل إجابة

You used twice product_template.id.id just use product_template.id

 and use the write method to set the image.

الصورة الرمزية
إهمال