Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
4599 Lượt xem

hi,

i want to add file upload field in odoo controller.

and then add in res.partner

i add filefield like

image = FileField(u'Image File')


after that i add object in res.partner like


customer = http.request.env['res.partner']

sur_name = form_data.get('sur_name', '')

maiden_nm = form_data.get('maiden_nm', '')

fore_nm = form_data.get('fore_nm', '')

cust = customer.create({

'name' : str(sur_name)+' '+str(maiden_nm)+' '+str(fore_nm),

'street': form_data.get('present_add_us', ''),

'phone': form_data.get('telephone', ''),

'birthdate': form_data.get('dob', ''),

'email': form_data.get('email', ''),

'image': form_data.get('image', ''),

})


but it return error like


cannot identify image file <cStringIO.StringI object at 0x7f89a4ab0b58>

in odoo v9

can you please suggest me how we use file field in wtform


Ảnh đại diện
Huỷ bỏ
Bài viết liên quan Trả lời Lượt xem Hoạt động
1
thg 2 16
5456
3
thg 1 16
6967
0
thg 7 16
3657
3
thg 12 19
8027
2
thg 4 19
6410