Files
erpnext/erpnext/templates/includes/transaction_row.html
Pandiyan P 2dbd224643 fix: hide rfq status in supplier portal (#58368)
(cherry picked from commit 75d6183bb6)
2026-08-24 10:59:54 +00:00

32 lines
1.2 KiB
HTML

<div class="web-list-item transaction-list-item">
<div class="row align-items-center">
<div class="col-sm-4">
<span class="list-item-name font-weight-bold">{{ doc.name }}</span>
<div class="small text-muted transaction-time"
title="{{ frappe.utils.format_datetime(doc.modified, "medium") }}">
{{ frappe.utils.global_date_format(doc.modified) }}
</div>
</div>
{% if doc.doctype != "Request for Quotation" %}
<div class="col-sm-3">
<span class="indicator-pill {{ doc.indicator_color or ("blue" if doc.docstatus==1 else "gray") }} list-item-status">{{ _(doc.status) }}</span>
</div>
{% endif %}
<div class="col-sm-2">
<div class="small text-muted items-preview ellipsis ellipsis-width">
{{ doc.items_preview | e }}
</div>
</div>
{% if doc.is_rounded_total_disabled() and doc.get('grand_total') %}
<div class="col-sm-3 text-right font-weight-bold item-total">
{{ doc.get_formatted("grand_total") }}
</div>
{% elif doc.get('rounded_total') %}
<div class="col-sm-3 text-right font-weight-bold item-total">
{{ doc.get_formatted("rounded_total") }}
</div>
{% endif %}
</div>
<a class="transaction-item-link" href="/{{ pathname | e }}/{{ doc.name | e }}">Link</a>
</div>