Skip to content
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

Draft
wants to merge 1 commit into
base: 18.0
Choose a base branch
from

Conversation

siha-odoo
Copy link

With this commit

  • 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.

@robodoo
Copy link

robodoo commented Feb 25, 2025

Pull request status dashboard

Copy link

@rare-odoo rare-odoo left a 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.

"name": "Supplier Portal",
"version": "1.0",
"author": "Harsh Siddhapara siha",
"depends": ["base", "account", "website"],

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?

Copy link
Author

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):

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?

Copy link
Author

@siha-odoo siha-odoo Feb 27, 2025

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,

Comment on lines 4 to 10
<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>

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!

Copy link
Author

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()"/>

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?

Copy link
Author

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.

Comment on lines 21 to 24
<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>

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?

Copy link
Author

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.

@siha-odoo siha-odoo force-pushed the 18.0-supplier-portal-siha branch from 4ac1950 to 30f32d7 Compare February 27, 2025 11:34
Comment on lines 32 to 33
return request.render("supplier_portal.after_submit_message_template",
{"error_message": f"Invalid file type: {file_name}. Please upload only PDF or XML files."})

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?

Copy link
Author

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."})


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.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

okay.

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?

@siha-odoo siha-odoo force-pushed the 18.0-supplier-portal-siha branch from 30f32d7 to 669db01 Compare March 3, 2025 04:45
</div>
<!-- Upload file with .pdf or .xml extension -->
<div class="mb-3">
<label class="form-label fw-bold">Upload PDF File</label>

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
<label class="form-label fw-bold">Upload PDF File</label>
<label class="form-label fw-bold">Upload</label>

Copy link
Author

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"/>

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?

Copy link
Author

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."})


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?

@siha-odoo siha-odoo force-pushed the 18.0-supplier-portal-siha branch from 669db01 to 2f205ac Compare March 3, 2025 09:00
-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.
@siha-odoo siha-odoo force-pushed the 18.0-supplier-portal-siha branch from 2f205ac to e4258ab Compare March 3, 2025 09:09
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants