Bugzilla – Attachment 75642 Details for
Bug 19902
Add column configuration to bibliographic record checkouts history table
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 19902: Add column settings to bibliographic record checkouts history table
Bug-19902-Add-column-settings-to-bibliographic-rec.patch (text/plain), 3.09 KB, created by
Owen Leonard
on 2018-05-29 18:28:55 UTC
(
hide
)
Description:
Bug 19902: Add column settings to bibliographic record checkouts history table
Filename:
MIME Type:
Creator:
Owen Leonard
Created:
2018-05-29 18:28:55 UTC
Size:
3.09 KB
patch
obsolete
>From 6589e5374bcacb52a0662bcfaba4353cee0e138c Mon Sep 17 00:00:00 2001 >From: Josef Moravec <josef.moravec@gmail.com> >Date: Tue, 2 Jan 2018 06:35:47 +0000 >Subject: [PATCH] Bug 19902: Add column settings to bibliographic record > checkouts history table > >Test plan: >0) Apply the patch >1) Go to administration -> Configure columns, note there is new >checkoutshistory-table in Catalogue section >2) Make some configuration in this table settings >3) Go to detail of any record -> Checkout history >4) The columns should be visible according to your configuration from >step 2 >5) Play with Column visibility, to ensure it does work as it should > >Signed-off-by: Owen Leonard <oleonard@myacpl.org> > >Fixed a minor typo during signoff. >--- > admin/columns_settings.yml | 22 ++++++++++++++++++++++ > .../prog/en/modules/catalogue/issuehistory.tt | 8 ++++++-- > 2 files changed, 28 insertions(+), 2 deletions(-) > >diff --git a/admin/columns_settings.yml b/admin/columns_settings.yml >index 8f0628f..6f7022d 100644 >--- a/admin/columns_settings.yml >+++ b/admin/columns_settings.yml >@@ -83,6 +83,28 @@ modules: > - > columnname: actions > >+ catalogue: >+ detail: >+ checkoutshistory-table: >+ - >+ columnname: patron >+ cannot_be_toggled: 1 >+ cannot_be_modified: 1 >+ - >+ columnname: barcode >+ cannot_be_toggled: 1 >+ cannot_be_modified: 1 >+ - >+ columnname: checked_out_from >+ - >+ columnname: renewed >+ - >+ columnname: checkout_on >+ - >+ columnname: due_date >+ - >+ columnname: checkin_on >+ > cataloguing: > additem: > itemst: >diff --git a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/issuehistory.tt b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/issuehistory.tt >index 28800ab..c807aee 100644 >--- a/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/issuehistory.tt >+++ b/koha-tmpl/intranet-tmpl/prog/en/modules/catalogue/issuehistory.tt >@@ -2,6 +2,7 @@ > [% USE Koha %] > [% USE KohaDates %] > [% USE Branches %] >+[% USE ColumnsSettings %] > [% SET footerjs = 1 %] > [% INCLUDE 'doc-head-open.inc' %] > <title>Koha › Catalog › Checkout history for [% biblio.title |html %]</title> >@@ -98,15 +99,18 @@ > > [% MACRO jsinclude BLOCK %] > [% INCLUDE 'datatables.inc' %] >+[% INCLUDE 'columns_settings.inc' %] > <script type="text/javascript" id="js"> > $(document).ready(function() { >- $("#table_issues").dataTable($.extend(true, {}, dataTablesDefaults, { >+ var columns_settings = [% ColumnsSettings.GetColumns('catalogue', 'detail', 'checkoutshistory-table', 'json') %]; >+ var table = KohaTable("table_issues", { > "aoColumnDefs": [ > { "sType": "title-string", "aTargets" : [ "title-string" ] } > ], >+ "sDom": 'C<"top pager"ilpfB><"#filter_c">tr<"bottom pager"ip>', > "aaSorting": [[ 4, "desc" ]], > "sPaginationType": "full_numbers" >- })); >+ }, columns_settings); > }); > </script> > [% END %] >-- >2.1.4
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 19902
:
70220
|
75642
|
76369
|
76420
|
76421