mirror of
https://github.com/frappe/erpnext.git
synced 2026-08-26 21:35:19 +00:00
fix: prevent duplicate supplier quotations from portal
This commit is contained in:
@@ -9,6 +9,7 @@ from frappe import _
|
|||||||
from frappe.contacts.doctype.contact.contact import get_full_name
|
from frappe.contacts.doctype.contact.contact import get_full_name
|
||||||
from frappe.core.doctype.communication.email import make
|
from frappe.core.doctype.communication.email import make
|
||||||
from frappe.desk.form.load import get_attachments
|
from frappe.desk.form.load import get_attachments
|
||||||
|
from frappe.model.document import Document
|
||||||
from frappe.model.mapper import get_mapped_doc
|
from frappe.model.mapper import get_mapped_doc
|
||||||
from frappe.query_builder import Order
|
from frappe.query_builder import Order
|
||||||
from frappe.utils import get_url
|
from frappe.utils import get_url
|
||||||
@@ -489,36 +490,73 @@ def make_supplier_quotation_from_rfq(source_name, target_doc=None, for_supplier=
|
|||||||
|
|
||||||
# This method is used to make supplier quotation from supplier's portal.
|
# This method is used to make supplier quotation from supplier's portal.
|
||||||
@frappe.whitelist()
|
@frappe.whitelist()
|
||||||
def create_supplier_quotation(doc):
|
def create_supplier_quotation(doc: str | Document | dict):
|
||||||
if isinstance(doc, str):
|
if isinstance(doc, str):
|
||||||
doc = json.loads(doc)
|
doc = json.loads(doc)
|
||||||
|
supplier = doc.get("supplier")
|
||||||
|
|
||||||
if frappe.session.user not in frappe.get_all(
|
if frappe.session.user not in frappe.get_all("Portal User", {"parent": supplier}, pluck="user"):
|
||||||
"Portal User", {"parent": doc.get("supplier")}, pluck="user"
|
|
||||||
):
|
|
||||||
frappe.throw(_("Not Permitted"), frappe.PermissionError)
|
frappe.throw(_("Not Permitted"), frappe.PermissionError)
|
||||||
|
|
||||||
try:
|
validate_existing_supplier_quotation(supplier, doc.get("items"))
|
||||||
sq_doc = frappe.get_doc(
|
|
||||||
{
|
sq_doc = frappe.get_doc(
|
||||||
"doctype": "Supplier Quotation",
|
{
|
||||||
"supplier": doc.get("supplier"),
|
"doctype": "Supplier Quotation",
|
||||||
"terms": doc.get("terms"),
|
"supplier": supplier,
|
||||||
"company": doc.get("company"),
|
"terms": doc.get("terms"),
|
||||||
"currency": doc.get("currency")
|
"company": doc.get("company"),
|
||||||
or get_party_account_currency("Supplier", doc.get("supplier"), doc.get("company")),
|
"currency": doc.get("currency")
|
||||||
"buying_price_list": doc.get("buying_price_list")
|
or get_party_account_currency("Supplier", supplier, doc.get("company")),
|
||||||
or frappe.db.get_single_value("Buying Settings", "buying_price_list"),
|
"buying_price_list": doc.get("buying_price_list")
|
||||||
}
|
or frappe.db.get_single_value("Buying Settings", "buying_price_list"),
|
||||||
|
}
|
||||||
|
)
|
||||||
|
add_items(sq_doc, supplier, doc.get("items"))
|
||||||
|
sq_doc.flags.ignore_permissions = True
|
||||||
|
sq_doc.run_method("set_missing_values")
|
||||||
|
sq_doc.save()
|
||||||
|
frappe.msgprint(_("Supplier Quotation {0} Created").format(sq_doc.name))
|
||||||
|
return sq_doc.name
|
||||||
|
|
||||||
|
|
||||||
|
def validate_existing_supplier_quotation(supplier, items):
|
||||||
|
request_for_quotations = {item.get("parent") for item in items if item.get("parent")}
|
||||||
|
if not request_for_quotations:
|
||||||
|
return
|
||||||
|
|
||||||
|
rfq = frappe.qb.DocType("Request for Quotation")
|
||||||
|
(
|
||||||
|
frappe.qb.from_(rfq)
|
||||||
|
.select(rfq.name)
|
||||||
|
.where(rfq.name.isin(request_for_quotations))
|
||||||
|
.orderby(rfq.name)
|
||||||
|
.for_update()
|
||||||
|
).run()
|
||||||
|
|
||||||
|
sq = frappe.qb.DocType("Supplier Quotation")
|
||||||
|
sqi = frappe.qb.DocType("Supplier Quotation Item")
|
||||||
|
existing_quotation = (
|
||||||
|
frappe.qb.from_(sq)
|
||||||
|
.inner_join(sqi)
|
||||||
|
.on(sq.name == sqi.parent)
|
||||||
|
.select(sq.name, sqi.request_for_quotation)
|
||||||
|
.where(
|
||||||
|
(sq.docstatus < 2)
|
||||||
|
& (sq.supplier == supplier)
|
||||||
|
& (sqi.request_for_quotation.isin(request_for_quotations))
|
||||||
|
)
|
||||||
|
.limit(1)
|
||||||
|
).run(as_dict=True)
|
||||||
|
|
||||||
|
if existing_quotation:
|
||||||
|
existing_quotation = existing_quotation[0]
|
||||||
|
frappe.throw(
|
||||||
|
_("Supplier Quotation {0} already exists against Request for Quotation {1}").format(
|
||||||
|
frappe.bold(existing_quotation.name),
|
||||||
|
frappe.bold(existing_quotation.request_for_quotation),
|
||||||
|
)
|
||||||
)
|
)
|
||||||
add_items(sq_doc, doc.get("supplier"), doc.get("items"))
|
|
||||||
sq_doc.flags.ignore_permissions = True
|
|
||||||
sq_doc.run_method("set_missing_values")
|
|
||||||
sq_doc.save()
|
|
||||||
frappe.msgprint(_("Supplier Quotation {0} Created").format(sq_doc.name))
|
|
||||||
return sq_doc.name
|
|
||||||
except Exception:
|
|
||||||
return None
|
|
||||||
|
|
||||||
|
|
||||||
def add_items(sq_doc, supplier, items):
|
def add_items(sq_doc, supplier, items):
|
||||||
|
|||||||
@@ -13,7 +13,7 @@
|
|||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
||||||
{% block header_actions %}
|
{% block header_actions %}
|
||||||
{% if doc.items %}
|
{% if doc.items and not doc.rfq_links %}
|
||||||
<button class="btn btn-primary btn-sm"
|
<button class="btn btn-primary btn-sm"
|
||||||
type="button">
|
type="button">
|
||||||
{{ _("Make Quotation") }}</button>
|
{{ _("Make Quotation") }}</button>
|
||||||
|
|||||||
Reference in New Issue
Block a user