Bugzilla – Attachment 59228 Details for
Bug 17771
Add link to bibliographic record on spent/ordered lists in acquisitions
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 17771: Add link to bibliographic record on spent/ordered lists in acquisitions
Bug-17771-Add-link-to-bibliographic-record-on-spen.patch (text/plain), 3.19 KB, created by
Kyle M Hall (khall)
on 2017-01-19 11:56:14 UTC
(
hide
)
Description:
Bug 17771: Add link to bibliographic record on spent/ordered lists in acquisitions
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2017-01-19 11:56:14 UTC
Size:
3.19 KB
patch
obsolete
>From b6c163183acd0cc8d0b844e9d01812491159486f Mon Sep 17 00:00:00 2001 >From: Luke Honiss <luke.honiss@gmail.com> >Date: Tue, 17 Jan 2017 22:15:28 +0000 >Subject: [PATCH] Bug 17771: Add link to bibliographic record on spent/ordered > lists in acquisitions > >==TEST PLAN== >1) Open Acquisitions and click on the ordered link under the fund >2) There will be no link on the title >3) Go back and click on thespent link >4) There will be no link on the title >5) Apply patch >6) Go to Acquisitions and click on ordered >7) There will now be a link that takes the user to the book catelog >page >8) Go back and click on sent >9) There will be a link that takes the user to the book catelog > >Signed-off-by: Katrin Fischer <katrin.fischer.83@web.de> >Works like a charm! > >Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com> >Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com> >--- > acqui/ordered.pl | 2 +- > acqui/spent.pl | 2 +- > koha-tmpl/intranet-tmpl/prog/en/modules/acqui/ordered.tt | 2 ++ > koha-tmpl/intranet-tmpl/prog/en/modules/acqui/spent.tt | 4 +++- > 4 files changed, 7 insertions(+), 3 deletions(-) > >diff --git a/acqui/ordered.pl b/acqui/ordered.pl >index 48ac5e7..5c2cc6d 100755 >--- a/acqui/ordered.pl >+++ b/acqui/ordered.pl >@@ -52,7 +52,7 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user( > > my $query = <<EOQ; > SELECT >- aqorders.basketno, aqorders.ordernumber, >+ aqorders.biblionumber, aqorders.basketno, aqorders.ordernumber, > quantity-quantityreceived AS tleft, > ecost, budgetdate, entrydate, > aqbasket.booksellerid, >diff --git a/acqui/spent.pl b/acqui/spent.pl >index d32f0c9..f05c264 100755 >--- a/acqui/spent.pl >+++ b/acqui/spent.pl >@@ -54,7 +54,7 @@ my ( $template, $loggedinuser, $cookie ) = get_template_and_user( > > my $query = <<EOQ; > SELECT >- aqorders.basketno, aqorders.ordernumber, >+ aqorders.biblionumber, aqorders.basketno, aqorders.ordernumber, > quantity-quantityreceived AS tleft, > ecost, budgetdate, entrydate, > aqbasket.booksellerid, >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/ordered.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/ordered.tt >index 022113a..19e9618 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/ordered.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/ordered.tt >@@ -51,7 +51,9 @@ > [% FOREACH order IN ordered %] > <tr> > <td class="cell"> >+ <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% order.biblionumber %]"> > [% order.title %] >+ </a> > </td> > <td class="cell"> > [% IF ( CAN_user_acquisition_order_manage ) %] >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/spent.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/spent.tt >index bb9485e..d47e5f3 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/spent.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/spent.tt >@@ -54,7 +54,9 @@ > [% FOREACH order IN spent %] > <tr> > <td class="cell"> >- [% order.title %] >+ <a href="/cgi-bin/koha/catalogue/detail.pl?biblionumber=[% order.biblionumber %]"> >+ [% order.title %] >+ </a> > </td> > <td class="cell"> > [% order.ordernumber %] >-- >2.1.4
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 17771
:
59114
|
59116
|
59128
|
59223
|
59224
|
59225
|
59226
|
59227
| 59228 |
59229
|
59230