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