Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
4881 Widoki

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


Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
1
lut 16
5725
3
sty 16
7204
0
lip 16
3970
3
gru 19
8299
2
kwi 19
6410