Bugzilla – Attachment 8761 Details for
Bug 7870
Replace itemnumber by barcode in links of patron modification log
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Replace itemnumber by barcode in links of patron modification log
0001-Replace-itemnumber-by-barcode-in-links-of-patron-mod.patch (text/plain), 2.04 KB, created by
Koha Team University Lyon 3
on 2012-04-02 11:01:04 UTC
(
hide
)
Description:
Replace itemnumber by barcode in links of patron modification log
Filename:
MIME Type:
Creator:
Koha Team University Lyon 3
Created:
2012-04-02 11:01:04 UTC
Size:
2.04 KB
patch
obsolete
>From a2269aac96e282d89395600812eee987ef547f1a Mon Sep 17 00:00:00 2001 >From: Lyon3 Team <koha@univ-lyon3.fr> >Date: Mon, 2 Apr 2012 11:53:16 +0200 >Subject: [PATCH] Replace itemnumber by barcode in links of patron modification log > >in the ISSUE and RETURN links to item >--- > .../intranet-tmpl/prog/en/modules/tools/viewlog.tt | 2 +- > tools/viewlog.pl | 1 + > 2 files changed, 2 insertions(+), 1 deletions(-) > >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/viewlog.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/viewlog.tt >index b2ab90f..b918a60 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/viewlog.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/tools/viewlog.tt >@@ -193,7 +193,7 @@ > </td> > <td> > [% IF ( loopro.CIRCULATION ) %] >- <a href="/cgi-bin/koha/catalogue/moredetail.pl?item=[% loopro.info %]&biblionumber=[% loopro.biblionumber %]&bi=[% loopro.biblioitemnumber %]#item[% loopro.object %]" title="Display detail for this biblio">Item [% loopro.info |html %]</a> >+ <a href="/cgi-bin/koha/catalogue/moredetail.pl?item=[% loopro.info %]&biblionumber=[% loopro.biblionumber %]&bi=[% loopro.biblioitemnumber %]#item[% loopro.object %]" title="Display detail for this biblio">Item [% loopro.barcode |html %]</a> > [% ELSE %] > [% loopro.info |html %] > [% END %] >diff --git a/tools/viewlog.pl b/tools/viewlog.pl >index d42503e..7b1ff0c 100755 >--- a/tools/viewlog.pl >+++ b/tools/viewlog.pl >@@ -123,6 +123,7 @@ if ($do_it) { > my $item=GetItem($itemnumber); > $result->{'biblionumber'}=$item->{'biblionumber'}; > $result->{'biblioitemnumber'}=$item->{'biblionumber'}; >+ $result->{'barcode'}=$item->{'barcode'}; > } > } > >-- >1.7.2.5 >
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 7870
:
8761
|
8762
|
9093