Bugzilla – Attachment 73511 Details for
Bug 19719
Add a new column for collection in the patron checkouts data table
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 19719: (follow-up) Show description instead of code
Bug-19719-follow-up-Show-description-instead-of-co.patch (text/plain), 4.87 KB, created by
Katrin Fischer
on 2018-03-31 08:16:10 UTC
(
hide
)
Description:
Bug 19719: (follow-up) Show description instead of code
Filename:
MIME Type:
Creator:
Katrin Fischer
Created:
2018-03-31 08:16:10 UTC
Size:
4.87 KB
patch
obsolete
>From b6112c2208dc6a043da6177c94148892305e0859 Mon Sep 17 00:00:00 2001 >From: Katrin Fischer <katrin.fischer.83@web.de> >Date: Sat, 31 Mar 2018 10:13:57 +0200 >Subject: [PATCH] Bug 19719: (follow-up) Show description instead of code > >This follow-up changes the display from collection code >to description, following the existing pattern for >location. > >To test: >- Repeat test plan from first patch >- Verfiy now the collection descrption shows >- Change column setting in administration >- Verify they work as expected >--- > admin/columns_settings.yml | 6 +++--- > koha-tmpl/intranet-tmpl/prog/en/includes/checkouts-table.inc | 2 +- > koha-tmpl/intranet-tmpl/prog/js/checkouts.js | 4 ++-- > svc/checkouts | 9 +++++++-- > 4 files changed, 13 insertions(+), 8 deletions(-) > >diff --git a/admin/columns_settings.yml b/admin/columns_settings.yml >index 5371eff871..a2e8ac92ce 100644 >--- a/admin/columns_settings.yml >+++ b/admin/columns_settings.yml >@@ -230,7 +230,7 @@ modules: > - > columnname: item_type > - >- columnname: collection_code >+ columnname: collection > - > columnname: location > - >@@ -344,7 +344,7 @@ modules: > - > columnname: item_type > - >- columnname: collection_code >+ columnname: collection > - > columnname: location > - >@@ -405,7 +405,7 @@ modules: > - > columnname: title > - >- columnname: collection: >+ columnname: collection > - > columnname: document_type > - >diff --git a/koha-tmpl/intranet-tmpl/prog/en/includes/checkouts-table.inc b/koha-tmpl/intranet-tmpl/prog/en/includes/checkouts-table.inc >index aa38cc8531..f7c68218c4 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/includes/checkouts-table.inc >+++ b/koha-tmpl/intranet-tmpl/prog/en/includes/checkouts-table.inc >@@ -16,7 +16,7 @@ > <th scope="col">Due date</th> > <th scope="col">Title</th> > <th scope="col">Item type</th> >- <th scope="col">Collection code</th> >+ <th scope="col">Collection</th> > <th scope="col">Location</th> > <th scope="col">Home library</th> > <th scope="col">Checked out on</th> >diff --git a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js >index d4c063ee98..e761d52fff 100644 >--- a/koha-tmpl/intranet-tmpl/prog/js/checkouts.js >+++ b/koha-tmpl/intranet-tmpl/prog/js/checkouts.js >@@ -291,7 +291,7 @@ $(document).ready(function() { > "sType": "anti-the" > }, > { "mDataProp": "itemtype_description" }, >- { "mDataProp": "ccode" }, >+ { "mDataProp": "collection" }, > { "mDataProp": "location" }, > { "mDataProp": "homebranch" }, > { "mDataProp": "issuedate_formatted" }, >@@ -590,7 +590,7 @@ $(document).ready(function() { > "sType": "anti-the" > }, > { "mDataProp": "itemtype" }, >- { "mDataProp": "ccode" }, >+ { "mDataProp": "collection" }, > { "mDataProp": "location" }, > { "mDataProp": "issuedate_formatted" }, > { "mDataProp": "branchname" }, >diff --git a/svc/checkouts b/svc/checkouts >index d1fb8d34f9..9a1b3a5648 100755 >--- a/svc/checkouts >+++ b/svc/checkouts >@@ -90,7 +90,7 @@ my $sql = ' > items.itype, > biblioitems.itemtype, > >- items.ccode, >+ items.ccode AS collection, > > borrowernumber, > surname, >@@ -156,6 +156,11 @@ while ( my $c = $sth->fetchrow_hashref() ) { > my $av = Koha::AuthorisedValues->search({ category => 'LOC', authorised_value => $c->{location} }); > $location = $av->count ? $av->next->lib : ''; > } >+ my $collection; >+ if ( $c->{collection} ) { >+ my $av = Koha::AuthorisedValues->search({ category => 'CCODE', authorised_value => $c->{collection} }); >+ $collection = $av->count ? $av->next->lib : ''; >+ } > my $lost; > if ( $c->{itemlost} ) { > my $av = Koha::AuthorisedValues->search({ category => 'LOST', authorised_value => $c->{itemlost} }); >@@ -173,7 +178,7 @@ while ( my $c = $sth->fetchrow_hashref() ) { > barcode => $c->{barcode}, > itemtype => $item_level_itypes ? $c->{itype} : $c->{itemtype}, > itemtype_description => $itemtype ? $itemtype->translated_description : q{}, >- ccode => $c->{ccode}, >+ collection => $collection, > location => $location, > homebranch => $c->{homebranch}, > itemnotes => $c->{itemnotes}, >-- >2.14.1
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 19719
:
72773
|
72829
|
73510
|
73511
|
74538
|
74539
|
76199
|
77559
|
77560
|
77561