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

how to make a field that I can save a image?

I have try it like this:

def _get_image(self, cr, uid, ids, name, args, context=None):

result = dict.fromkeys(ids, False)

for obj in self.browse(cr, uid, ids, context=context):

result[obj.id] = tools.image_get_resized_images(obj.image)

return result

def _set_image(self, cr, uid, id, name, value, args, context=None):

return self.write(cr, uid, [id], {'image': tools.image_resize_image_big(value)}, context=context)

'image': fields.binary("Image",

help="This field holds the image used as image for our customers, limited to 1024x1024px."),


but this is not working. any help? thank you

อวตาร
ละทิ้ง

I also want to know how to save a figure and even more when we plot a figure by matplotlib.pyplot, whether this figure can be saved in "fields.Binary()"?

What version are you using?

ผู้เขียน คำตอบที่ดีที่สุด

I found a way on odoo 8. 

It's very simple.

You only need to define a binary field and there you can save your image.

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
0
มี.ค. 16
3021
Best product image size and resolution? แก้ไขแล้ว
1
ก.ค. 25
2026
0
เม.ย. 24
1841
4
พ.ย. 23
5890
0
ต.ค. 23
1692