From eae1168df85ed881faac4a8f67b131bbe0e2d678 Mon Sep 17 00:00:00 2001 From: Michael Hafen Date: Fri, 22 Aug 2008 17:24:44 -0600 Subject: [PATCH] Added link to catalogue/moredetail.pl on the returns page for each returned item Had to add itemnumber to the hash of returned item information. Links to moredetail.pl with itemnumber and #item in the url. Signed-off-by: Galen Charlton --- circ/returns.pl | 1 + koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tmpl | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/circ/returns.pl b/circ/returns.pl index 726e8860ba..cb2f87a088 100755 --- a/circ/returns.pl +++ b/circ/returns.pl @@ -561,6 +561,7 @@ foreach ( sort { $a <=> $b } keys %returneditems ) { $ri{itemtype} = $biblio->{'itemtype'}; $ri{itemnote} = $biblio->{'itemnotes'}; $ri{ccode} = $biblio->{'ccode'}; + $ri{itemnumber} = $biblio->{'itemnumber'}; $ri{barcode} = $barcode; } else { diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tmpl b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tmpl index d4d30952e5..b5d58c9457 100644 --- a/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tmpl +++ b/koha-tmpl/intranet-tmpl/prog/en/modules/circ/returns.tmpl @@ -344,7 +344,7 @@ function Dopop(link) { "> - + &itemnumber=#item"> "> -- 2.20.1