From 75d6183bb6497058ae5b30b1f4d2815c0016fe7d Mon Sep 17 00:00:00 2001 From: Pandiyan P Date: Mon, 24 Aug 2026 16:29:05 +0530 Subject: [PATCH] fix: hide rfq status in supplier portal (#58368) --- erpnext/templates/includes/transaction_row.html | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/erpnext/templates/includes/transaction_row.html b/erpnext/templates/includes/transaction_row.html index 03e04a3a1e8..49524b92431 100644 --- a/erpnext/templates/includes/transaction_row.html +++ b/erpnext/templates/includes/transaction_row.html @@ -7,9 +7,11 @@ {{ frappe.utils.global_date_format(doc.modified) }} -
- {{ _(doc.status) }} -
+ {% if doc.doctype != "Request for Quotation" %} +
+ {{ _(doc.status) }} +
+ {% endif %}
{{ doc.items_preview | e }}