Bugzilla – Attachment 36280 Details for
Bug 13773
add stock number to details and items display
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 13773 - add stock number to details and items display
Bug-13773---add-stock-number-to-details-and-items-.patch (text/plain), 3.48 KB, created by
Dobrica Pavlinusic
on 2015-03-02 11:24:36 UTC
(
hide
)
Description:
Bug 13773 - add stock number to details and items display
Filename:
MIME Type:
Creator:
Dobrica Pavlinusic
Created:
2015-03-02 11:24:36 UTC
Size:
3.48 KB
patch
obsolete
>From 332e2769c1c4b6f064aede84ee1e366b62081141 Mon Sep 17 00:00:00 2001 >From: Dobrica Pavlinusic <dpavlin@rot13.org> >Date: Wed, 18 Feb 2015 15:15:33 +0100 >Subject: [PATCH] Bug 13773 - add stock number to details and items display > >This patch adds stocknumber to details table and items display if it exists. > >Test scenario: >1. find item(s) which have stock number assigned >2. verify that you don't see stock number in items display >3. apply this patch >4. verify that stock number is now available >--- > catalogue/detail.pl | 3 ++- > .../prog/en/modules/catalogue/detail.tt | 5 +++++ > 2 files changed, 7 insertions(+), 1 deletions(-) > >diff --git a/catalogue/detail.pl b/catalogue/detail.pl >index adf6823..95513b7 100755 >--- a/catalogue/detail.pl >+++ b/catalogue/detail.pl >@@ -224,7 +224,7 @@ foreach my $item (@items) { > $item->{'ccode'} = $collections->{$ccode} if ( defined( $ccode ) && defined($collections) && exists( $collections->{$ccode} ) ); > my $copynumber = $item->{'copynumber'}; > $item->{'copynumber'} = $copynumbers->{$copynumber} if ( defined($copynumber) && defined($copynumbers) && exists( $copynumbers->{$copynumber} ) ); >- foreach (qw(ccode enumchron copynumber itemnotes uri)) { >+ foreach (qw(ccode enumchron copynumber stocknumber itemnotes uri)) { > $itemfields{$_} = 1 if ( $item->{$_} ); > } > >@@ -313,6 +313,7 @@ $template->param( > itemdata_enumchron => $itemfields{enumchron}, > itemdata_uri => $itemfields{uri}, > itemdata_copynumber => $itemfields{copynumber}, >+ itemdata_stocknumber => $itemfields{stocknumber}, > volinfo => $itemfields{enumchron}, > itemdata_itemnotes => $itemfields{itemnotes}, > z3950_search_params => C4::Search::z3950_search_args($dat), >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt >index ee5915e..02730b3 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt >@@ -561,6 +561,7 @@ function verify_images() { > [% IF ( volinfo ) %]<th>Publication details</th>[% END %] > [% IF ( itemdata_uri ) %]<th>url</th>[% END %] > [% IF ( itemdata_copynumber ) %]<th>Copy number</th>[% END %] >+ [% IF ( itemdata_stocknumber ) %]<th>Stock number</th>[% END %] > [% IF materials %]<th>Materials specified</th>[% END %] > [% IF ( itemdata_itemnotes ) %]<th>Public notes</th>[% END %] > [% IF ( SpineLabelShowPrintOnBibDetails ) %]<th>Spine label</th>[% END %] >@@ -725,6 +726,9 @@ function verify_images() { > [% IF ( itemdata_copynumber ) %] > <td class="copynumber">[% item.copynumber %]</td> > [% END %] >+ [% IF ( itemdata_stocknumber ) %] >+ <td class="stocknumber">[% item.stocknumber %]</td> >+ [% END %] > [% IF materials %] > <td class="materials"> [% item.materials %] </td> > [% END %] >@@ -788,6 +792,7 @@ function verify_images() { > <table> > <tr><td>itemdata_enumchron</td><td>[% itemdata_enumchron %]</td></tr> > <tr><td>itemdata_copynumber</td><td>[% itemdata_copynumber %]</td></tr> >+ <tr><td>itemdata_stocknumber</td><td>[% itemdata_stocknumber %]</td></tr> > <tr><td>serial</td><td>[% serial %]</td></tr> > </table> > [% END %] >-- >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 13773
:
36280
|
36392
|
36535
|
36556
|
36612