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
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions supplier_portal/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import controllers
12 changes: 12 additions & 0 deletions supplier_portal/__manifest__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
{
"name": "Supplier Portal",
"version": "1.0",
"author": "Harsh Siddhapara siha",
"depends": ["account", "website"],
"data": [
"views/supplier_portal_template.xml",
"views/supplier_portal_website_menu.xml",
],
"installable": True,
"license": "LGPL-3",
}
1 change: 1 addition & 0 deletions supplier_portal/controllers/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
from . import supplier_portal
47 changes: 47 additions & 0 deletions supplier_portal/controllers/supplier_portal.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
import base64
from odoo import http
from odoo.http import request
from odoo.exceptions import ValidationError


class SupplierPortal(http.Controller):
@http.route("/supplier/upload", type="http", auth="user", website=True)
def supplier_portal_upload_document(self):
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,

"""Handles supplier document upload by creating a vendor bill (`account.move`) and attaching uploaded PDF and XML files."""

bills = (
request.env["account.move"]
.sudo().create(
{
"partner_id": request.env.user.partner_id.id,
"move_type": "in_invoice",
"company_id": int(kwargs.get("company")),
}
)
)
attachments = []
uploaded_files = request.httprequest.files.getlist("upload_file")
for file in uploaded_files:
file_name = file.filename
file_extension = file_name.split(".")[-1].lower()
if file_extension not in ["pdf", "xml"]:
raise ValidationError("Invalid file type. Please upload only PDF or XML files.")
mimetype = "application/pdf" if file_extension == "pdf" else "application/xml"
attachment = request.env["ir.attachment"].sudo().create(
{
"res_id": bills.id,
"res_model": "account.move",
"name": file.filename or "Uploaded PDF",
"datas": base64.b64encode(file.read()),
"mimetype": mimetype,
"type": "binary",
}
)
attachments.append(attachment)

return request.render("supplier_portal.after_submit_message_template",
{"success_message": f"{len(attachments)} files uploaded successfully."})
43 changes: 43 additions & 0 deletions supplier_portal/views/supplier_portal_template.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<template id="supplier_portal_upload_template">
<t t-call="website.layout">
<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.

<!-- Company Selection -->
<div class="mb-3">
<label class="form-label fw-bold">Select Company</label>
<select id="company" name="company" class="form-select" required="true">
<t t-foreach="request.env.user.company_ids" t-as="company">
<option t-att-value="company.id">
<t t-esc="company.name"/>
</option>
</t>
</select>
</div>
<!-- Upload file with .pdf or .xml extension -->
<div class="mb-3">
<label class="form-label fw-bold">Upload</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.

</div>
<div class="text-center">
<button type="submit" class="btn btn-primary px-4">Submit</button>
</div>
</form>
</div>
</t>
</template>
<template id="after_submit_message_template">
<t t-call="website.layout">
<div class="container mt-5">
<t t-if="success_message">
<div class="alert alert-success text-center" role="alert">
<t t-esc="success_message" />
</div>
</t>
</div>
</t>
</template>
</odoo>
12 changes: 12 additions & 0 deletions supplier_portal/views/supplier_portal_website_menu.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
<?xml version="1.0" encoding="utf-8"?>
<odoo>

<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>
<field name="group_ids" eval="[(6, 0, [ref('base.group_portal')])]"/>
</record>

</odoo>