Bugzilla – Attachment 185101 Details for
Bug 32938
Acquisitions EDI - ORDRSP messages are loaded as invoices
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 32938: Fix ORDRSP message linking to point to baskets instead of invoices
Bug-32938-Fix-ORDRSP-message-linking-to-point-to-b.patch (text/plain), 1.63 KB, created by
Martin Renvoize (ashimema)
on 2025-08-04 14:20:42 UTC
(
hide
)
Description:
Bug 32938: Fix ORDRSP message linking to point to baskets instead of invoices
Filename:
MIME Type:
Creator:
Martin Renvoize (ashimema)
Created:
2025-08-04 14:20:42 UTC
Size:
1.63 KB
patch
obsolete
>From 63826bbd4f02ba3ccdcf482b9e644c4a9f73f84c Mon Sep 17 00:00:00 2001 >From: Martin Renvoize <martin.renvoize@openfifth.co.uk> >Date: Mon, 4 Aug 2025 15:11:53 +0100 >Subject: [PATCH] Bug 32938: Fix ORDRSP message linking to point to baskets > instead of invoices > >ORDRSP (Order Response) messages are responses to ORDERS messages and should >link to the related basket, not to invoices. This follows the standard EDI >workflow: >1. ORDERS message sent to vendor >2. ORDRSP message received from vendor (order response/confirmation) >3. INVOICE message received later when items shipped >--- > koha-tmpl/intranet-tmpl/prog/en/modules/acqui/edifactmsgs.tt | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/edifactmsgs.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/edifactmsgs.tt >index 166e7852ff6..e03da781930 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/edifactmsgs.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/edifactmsgs.tt >@@ -126,7 +126,7 @@ > orderable: true, > render: function (data, type, row, meta) { > let rendered = ""; >- if (row.type == "QUOTE" || row.type == "ORDERS") { >+ if (row.type == "QUOTE" || row.type == "ORDERS" || row.type == "ORDRSP") { > if (row.basket_id) { > rendered = '<a href="/cgi-bin/koha/acqui/basket.pl?basketno=' + row.basket_id + '">' + _("Basket") + ": " + row.basket_id + "</a>"; > } >-- >2.50.1
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 32938
:
146468
| 185101 |
185102