From 6cb25c437f1cd52d4ba97db4902868af382582c1 Mon Sep 17 00:00:00 2001 From: Kyle Huckins Date: Tue, 30 Jan 2018 00:00:16 +0000 Subject: [PATCH] CAT-181 SCKO Wording Tweaks - Change "Fees" to "Fines." - Unbold Table Labels. - Bold table contents. - Add callnumber to Items ready for pickup. Signed-off-by: Kyle Huckins Changes to be committed: modified: KCLS/openils/var/templates_kcls/circ/selfcheck/circ_page.tt2 modified: KCLS/openils/var/templates_kcls/circ/selfcheck/fines.tt2 modified: KCLS/openils/var/templates_kcls/circ/selfcheck/footer.tt2 modified: KCLS/openils/var/templates_kcls/circ/selfcheck/holds_page.tt2 modified: Open-ILS/web/css/skin/kcls/selfcheck.css modified: Open-ILS/web/js/ui/kcls/circ/selfcheck/selfcheck.js --- .../templates_kcls/circ/selfcheck/circ_page.tt2 | 12 ++++++------ .../var/templates_kcls/circ/selfcheck/fines.tt2 | 10 +++++----- .../var/templates_kcls/circ/selfcheck/footer.tt2 | 2 +- .../templates_kcls/circ/selfcheck/holds_page.tt2 | 22 ++++++++++++---------- Open-ILS/web/css/skin/kcls/selfcheck.css | 5 ++++- .../web/js/ui/kcls/circ/selfcheck/selfcheck.js | 1 + 6 files changed, 29 insertions(+), 23 deletions(-) diff --git a/KCLS/openils/var/templates_kcls/circ/selfcheck/circ_page.tt2 b/KCLS/openils/var/templates_kcls/circ/selfcheck/circ_page.tt2 index 50c7301b40..4617a704f7 100644 --- a/KCLS/openils/var/templates_kcls/circ/selfcheck/circ_page.tt2 +++ b/KCLS/openils/var/templates_kcls/circ/selfcheck/circ_page.tt2 @@ -32,13 +32,13 @@ - + - - - - - + + + + +
BARCODE:BARCODE:
TITLE:
AUTHOR:
DUE DATE:
REMAINING RENEWALS:
FORMAT:
TITLE:
AUTHOR:
DUE DATE:
REMAINING RENEWALS:
FORMAT:
diff --git a/KCLS/openils/var/templates_kcls/circ/selfcheck/fines.tt2 b/KCLS/openils/var/templates_kcls/circ/selfcheck/fines.tt2 index b1e92856db..fe8aa4aa1d 100644 --- a/KCLS/openils/var/templates_kcls/circ/selfcheck/fines.tt2 +++ b/KCLS/openils/var/templates_kcls/circ/selfcheck/fines.tt2 @@ -14,11 +14,11 @@ - - - - - + + + + +
TITLE:
DUE DATE:
DATE RETURN:
LAST CHARGE:
BALANCE OWED:$
TITLE:
DUE DATE:
DATE RETURN:
LAST CHARGE:
BALANCE OWED:$
diff --git a/KCLS/openils/var/templates_kcls/circ/selfcheck/footer.tt2 b/KCLS/openils/var/templates_kcls/circ/selfcheck/footer.tt2 index a67bac20fd..9b4ce90101 100644 --- a/KCLS/openils/var/templates_kcls/circ/selfcheck/footer.tt2 +++ b/KCLS/openils/var/templates_kcls/circ/selfcheck/footer.tt2 @@ -27,7 +27,7 @@
Fees + id='oils-selfck-view-fines-link'>Fines
diff --git a/KCLS/openils/var/templates_kcls/circ/selfcheck/holds_page.tt2 b/KCLS/openils/var/templates_kcls/circ/selfcheck/holds_page.tt2 index e58a00265e..90c19f908b 100644 --- a/KCLS/openils/var/templates_kcls/circ/selfcheck/holds_page.tt2 +++ b/KCLS/openils/var/templates_kcls/circ/selfcheck/holds_page.tt2 @@ -25,11 +25,13 @@ - - - + + + + + - +
TITLE:
AUTHOR:
STATUS:
TITLE:
AUTHOR:
CALL NUMBER:
STATUS:
LOCATION:
@@ -47,9 +49,9 @@ - - - + + +
TITLE:
AUTHOR:
STATUS:
TITLE:
AUTHOR:
STATUS:
@@ -66,9 +68,9 @@ - - - + + +
TITLE:
AUTHOR:
STATUS:
TITLE:
AUTHOR:
STATUS:
diff --git a/Open-ILS/web/css/skin/kcls/selfcheck.css b/Open-ILS/web/css/skin/kcls/selfcheck.css index 6c083719a4..4d6855b639 100644 --- a/Open-ILS/web/css/skin/kcls/selfcheck.css +++ b/Open-ILS/web/css/skin/kcls/selfcheck.css @@ -224,13 +224,16 @@ h2 { } .scko-table-label { - font-weight:bold; text-transform: uppercase; text-align: right; white-space:nowrap; padding-right:10px; } +.scko-table-content { + font-weight:bold; +} + .checkout .item_table table td { border:none; width:100%; diff --git a/Open-ILS/web/js/ui/kcls/circ/selfcheck/selfcheck.js b/Open-ILS/web/js/ui/kcls/circ/selfcheck/selfcheck.js index 1b4c2b95cb..b6726ad309 100644 --- a/Open-ILS/web/js/ui/kcls/circ/selfcheck/selfcheck.js +++ b/Open-ILS/web/js/ui/kcls/circ/selfcheck/selfcheck.js @@ -944,6 +944,7 @@ SelfCheckManager.prototype.drawHolds = function(holds) { var row2 = this.readyTemplate.cloneNode(true); this.byName(row2, 'title').innerHTML = readyHolds[hold].mvr.title(); this.byName(row2, 'author').innerHTML = readyHolds[hold].mvr.author(); + this.byName(row2, 'call_number').innerHTML = readyHolds[hold].volume.label(); this.byName(row2, 'status').innerHTML = "Ready for pickup"; this.byName(row2, 'pickup_lib').innerHTML = fieldmapper.aou.findOrgUnit( -- 2.11.0