Bugzilla – Attachment 36612 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.29 KB, created by
Jonathan Druart
on 2015-03-05 15:04:00 UTC
(
hide
)
Description:
Bug 13773 - add stock number to details and items display
Filename:
MIME Type:
Creator:
Jonathan Druart
Created:
2015-03-05 15:04:00 UTC
Size:
3.29 KB
patch
obsolete
>From 403d877c37fcd45110d74237092e8bbca307be23 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 (named Inventory number in interface) >to details table and items display if it exists. > >Test scenario: >1. find item(s) which have inventory number assigned >2. verify that you don't see inventory number in items display >3. apply this patch >4. verify that inventory number is now available > >Signed-off-by: Nicole <nicole@bywatersolutions.com> > >Signed-off-by: Jonathan Druart <jonathan.druart@biblibre.com> >--- > catalogue/detail.pl | 3 ++- > koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/detail.tt | 4 ++++ > 2 files changed, 6 insertions(+), 1 deletion(-) > >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..1aa765e 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>Inventory 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 %] >-- >2.1.0
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