fix: broken URL in supplier portal (#26823)

* fix: broken URL

The quotations are supplier quotations, not sales quotation.

* fix: remove erpnext from path
This commit is contained in:
Dany Robert 2021-08-24 22:10:14 +05:30 committed by GitHub
parent 1d6ef4b0d3
commit c7bad657b1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 4 deletions

View File

@ -1,4 +1,4 @@
{% from "erpnext/templates/includes/rfq/rfq_macros.html" import item_name_and_description %}
{% from "templates/includes/rfq/rfq_macros.html" import item_name_and_description %}
{% for d in doc.items %}
<div class="rfq-item">

View File

@ -86,7 +86,7 @@
<span class="small gray">{{d.transaction_date}}</span>
</div>
</div>
<a class="transaction-item-link" href="/quotations/{{d.name}}">Link</a>
<a class="transaction-item-link" href="/supplier-quotations/{{d.name}}">Link</a>
</div>
{% endfor %}
</div>
@ -95,6 +95,4 @@
</div>
</div>
</div>
{% endblock %}