-
Notifications
You must be signed in to change notification settings - Fork 1.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[IMP] supplier_portal: added supplier portal #394
base: 18.0
Are you sure you want to change the base?
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hello @siha-odoo,
I have left some change requests in the review for your consideration.
supplier_portal/__manifest__.py
Outdated
"name": "Supplier Portal", | ||
"version": "1.0", | ||
"author": "Harsh Siddhapara siha", | ||
"depends": ["base", "account", "website"], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need base
here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
NO it is not needed. I will update it.
return request.render("supplier_portal.supplier_portal_upload_template") | ||
|
||
@http.route("/supplier/portal/submit", type="http", auth="user", website=True) | ||
def supplier_portal_submit_document(self, **kwargs): |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This method requires a check, as there seems to be quite a bit of redundant code.
Additionally, Could you clarify why sudo()
is used here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
okay, because portal user do not have access of invoicing so in order to create vendor bill sudo() is needed,
<record id="menu_supplier_portal" model="website.menu"> | ||
<field name="name">Upload Document</field> | ||
<field name="url">/supplier/upload/</field> | ||
<field name="parent_id" ref="website.main_menu"/> | ||
<field name="sequence">10</field> | ||
</record> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Without the groups, this button would be visible to all users on the website!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Will update it.
<div class="container mt-5"> | ||
<h2 class="text-center text-primary mb-4">Upload Supplier Documents</h2> | ||
<form action="/supplier/portal/submit" method="post" enctype="multipart/form-data" class="shadow p-4 bg-white rounded"> | ||
<input type="hidden" name="csrf_token" t-att-value="request.csrf_token()"/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you explain why you used csrf_token and how its value is set here?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In a session unique csrf_token will be generated for logged in user and while uploading files it has to match the csrf_token with stored csrf_toekn so that desired upload operation can be perfomed. Session's generated token is stored in request.csrf_token() so setting attribute value inside form csrf_token will be accessed and at time of form submission both tokens will be matched.
<div class="mb-3"> | ||
<label class="form-label fw-bold">Upload PDF File</label> | ||
<input type="file" name="pdf_file" class="form-control" accept=".pdf"/> | ||
</div> | ||
<!-- XML Upload Field --> | ||
<div class="mb-3"> | ||
<label class="form-label fw-bold">Upload XML File</label> | ||
<input type="file" name="xml_file" class="form-control" accept=".xml"/> | ||
</div> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why are there two separate buttons? This could potentially confuse the user.
Isn't it possible to use single upload button?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right now i am checking condition to validate both pdf and xml files are uploaded or not. I will see if i can do it with single upload or not.
4ac1950
to
30f32d7
Compare
return request.render("supplier_portal.after_submit_message_template", | ||
{"error_message": f"Invalid file type: {file_name}. Please upload only PDF or XML files."}) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could we utilize a validation error here instead of rendering a new template?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes we can. I will change it.
return request.render("supplier_portal.after_submit_message_template", | ||
{"success_message": f"{len(attachments)} files uploaded successfully."}) | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems there’s some indentation present here.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
okay.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It still hasn’t been resolved yet, has it?
30f32d7
to
669db01
Compare
</div> | ||
<!-- Upload file with .pdf or .xml extension --> | ||
<div class="mb-3"> | ||
<label class="form-label fw-bold">Upload PDF File</label> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<label class="form-label fw-bold">Upload PDF File</label> | |
<label class="form-label fw-bold">Upload</label> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
got it.
<!-- Upload file with .pdf or .xml extension --> | ||
<div class="mb-3"> | ||
<label class="form-label fw-bold">Upload PDF File</label> | ||
<input type="file" name="upload_file" class="form-control" multiple="multiple" accept=".pdf,.xml"/> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You’ve specified .pdf and .xml in the accept attribute—have you tested it with other file types,
like images or something else?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes tried for csv file.
return request.render("supplier_portal.after_submit_message_template", | ||
{"success_message": f"{len(attachments)} files uploaded successfully."}) | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It still hasn’t been resolved yet, has it?
669db01
to
2f205ac
Compare
-Introduced a new route allowing suppliers to upload invoices in PDF and XML format. -Added a webpage with a company selection dropdown, displaying companies linked to the user. -Successfully uploaded documents will generate a new draft vendor bill in the backend.
2f205ac
to
e4258ab
Compare
With this commit
in PDF and XML format.
linked to the user.
in the backend.