To upload files through web page you have to create a template and odoo controller.
upload_file_attachment_in_odoo_website.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template id="detail" name="Project Detail"> | |
<t t-call="website.layout"> | |
<div class="col-md-offset-5 col-sm-offset-4 col-sm-8 col-md-7" style="margin-top:30px;"> | |
<form action="/project/uploaded" method="post" class="s_website_form form-horizontal container-fluid mt32" enctype="multipart/form-data" id="file_upload_form"> | |
<div t-attf-class="form-group"> | |
<div class="col-md-7 col-sm-8"> | |
<input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/> | |
<input type="hidden" name="project_id" t-att-value="project.id"/> | |
<input type="file" name="attachment" class="file" multiple="true" data-show-upload="true" data-show-caption="true" lass="file" data-show-preview="true" id="project.id"/> | |
<button type="submit" name="Upload" style="margin-top:20px;" class="fa fa-upload">Upload</button> | |
</div> | |
</div> | |
</form> | |
</div> | |
</t> | |
</template> | |
upload_file_attachment_in_odoo_website.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@http.route('/project/uploaded', type='http', auth="public", website=True) | |
def upload_files(self, **post): | |
values = {} | |
if post.get('attachment',False): | |
Attachments = request.env['ir.attachment'] | |
name = post.get('attachment').filename | |
file = post.get('attachment') | |
project_id = post.get('project_id') | |
attachment = file.read() | |
attachment_id = Attachments.sudo().create({ | |
'name':name, | |
'datas_fname': name, | |
'res_name': name, | |
'type': 'binary', | |
'res_model': 'model.model', | |
'res_id': project_id, | |
'datas': attachment.encode('base64'), | |
}) | |
value = { | |
'attachment' : attachment_id | |
} | |
return request.render("modulename.template_to_render", value) | |
Code Description:
Read More: Inherit web login controller in Odoo
In above code snippet we have created an odoo template, and in that template we have created a HTML form tag, and set the action of that form as our odoo controller route. We have also take three input type fields and a submit button. When user clicks on submit button the form action goes to our odoo controller and save the attachment file in "attachment" model.
9 Comments
great sharing
ReplyDeleteHello, can you share with us github link for code?
ReplyDeleteThank you
how to display this field in website
ReplyDeletein your code error: .py code: row:15 'res_model':'model.model', - you missed " ' "
ReplyDeleteYup got it, thanks
DeleteHi I Tried this code but "file = post.get('attachment')" is returning a string object.
ReplyDeletewhen i try attachment = file.read() its says str object has no attribute read()
can you please share your attachment field
DeleteHi file = post.get('attachment') is giving me string object and when i try attachment = file.read() it says
ReplyDeletestr object has no attribute read()
i am only able to attach only 1 file not multiple any specific reason?
ReplyDelete