跳至內容
選單
此問題已被標幟
4649 瀏覽次數

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


頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
1
2月 16
5489
3
1月 16
7012
0
7月 16
3708
3
12月 19
8068
2
4月 19
6410