From ff0e2db203c1cca26d178bffabcf08ccc2c5d50b Mon Sep 17 00:00:00 2001 From: Bill Erickson Date: Mon, 4 Nov 2013 10:27:04 -0500 Subject: [PATCH] ff ui / wording improvements and i18n; show circ patron info Signed-off-by: Bill Erickson --- Open-ILS/src/templates/staff/fulfillment/t_actions.tt2 | 6 ++---- Open-ILS/src/templates/staff/fulfillment/t_circulating.tt2 | 4 ++-- Open-ILS/src/templates/staff/fulfillment/t_inbound.tt2 | 4 ++-- Open-ILS/src/templates/staff/fulfillment/t_item_table.tt2 | 4 ++++ Open-ILS/src/templates/staff/fulfillment/t_outbound.tt2 | 4 ++-- Open-ILS/src/templates/staff/fulfillment/t_pending.tt2 | 6 +++--- Open-ILS/web/js/ui/default/staff/fulfillment/app.js | 1 + 7 files changed, 16 insertions(+), 13 deletions(-) diff --git a/Open-ILS/src/templates/staff/fulfillment/t_actions.tt2 b/Open-ILS/src/templates/staff/fulfillment/t_actions.tt2 index e5c1d6274c..f2aa2e9b3b 100644 --- a/Open-ILS/src/templates/staff/fulfillment/t_actions.tt2 +++ b/Open-ILS/src/templates/staff/fulfillment/t_actions.tt2 @@ -35,10 +35,8 @@ ng-show="tab_inbound">[% l('Receive Item') %]
  • [% l('Check In') %]
  • - +
  • [% l('Check Out') %]
  • [% l('Mark Lost') %]
  • [% l('Print') %]
  • diff --git a/Open-ILS/src/templates/staff/fulfillment/t_circulating.tt2 b/Open-ILS/src/templates/staff/fulfillment/t_circulating.tt2 index f82e6491e8..51c8b7e112 100644 --- a/Open-ILS/src/templates/staff/fulfillment/t_circulating.tt2 +++ b/Open-ILS/src/templates/staff/fulfillment/t_circulating.tt2 @@ -4,10 +4,10 @@ diff --git a/Open-ILS/src/templates/staff/fulfillment/t_inbound.tt2 b/Open-ILS/src/templates/staff/fulfillment/t_inbound.tt2 index 6d5e780004..93c56cd57f 100644 --- a/Open-ILS/src/templates/staff/fulfillment/t_inbound.tt2 +++ b/Open-ILS/src/templates/staff/fulfillment/t_inbound.tt2 @@ -5,10 +5,10 @@ diff --git a/Open-ILS/src/templates/staff/fulfillment/t_item_table.tt2 b/Open-ILS/src/templates/staff/fulfillment/t_item_table.tt2 index 098e2a8c0b..55aef1e6af 100644 --- a/Open-ILS/src/templates/staff/fulfillment/t_item_table.tt2 +++ b/Open-ILS/src/templates/staff/fulfillment/t_item_table.tt2 @@ -24,6 +24,8 @@ [% l('Shelf Date') %] + [% l('Patron Name') %] + [% l('Patron Barcode') %] [% l('Checkout Date') %] [% l('Due Date') %] [% l('Circulating Library') %] @@ -46,6 +48,8 @@ {{item.transit_source}} {{item.transit_dest}} {{item.hold_shelf_time | date}} + {{item.circ_usr_name}} + {{item.circ_usr}} {{item.circ_xact_start | date}} {{item.due_date | date}} {{item.circ_circ_lib}} diff --git a/Open-ILS/src/templates/staff/fulfillment/t_outbound.tt2 b/Open-ILS/src/templates/staff/fulfillment/t_outbound.tt2 index 7e6116107e..61759b9866 100644 --- a/Open-ILS/src/templates/staff/fulfillment/t_outbound.tt2 +++ b/Open-ILS/src/templates/staff/fulfillment/t_outbound.tt2 @@ -4,10 +4,10 @@ diff --git a/Open-ILS/src/templates/staff/fulfillment/t_pending.tt2 b/Open-ILS/src/templates/staff/fulfillment/t_pending.tt2 index 1dc247e4fc..b42f5eee4f 100644 --- a/Open-ILS/src/templates/staff/fulfillment/t_pending.tt2 +++ b/Open-ILS/src/templates/staff/fulfillment/t_pending.tt2 @@ -6,10 +6,10 @@ @@ -36,7 +36,7 @@ [% l('Expire Date') %] [% l('Requesting Patron') %] [% l('Requesting Library') %] - [% l('Current Copy') %] + [% l('Targeted Copy') %] [% l('Copy Library') %] [% l('Title') %] diff --git a/Open-ILS/web/js/ui/default/staff/fulfillment/app.js b/Open-ILS/web/js/ui/default/staff/fulfillment/app.js index 2e9a25fa13..dfde3efb61 100644 --- a/Open-ILS/web/js/ui/default/staff/fulfillment/app.js +++ b/Open-ILS/web/js/ui/default/staff/fulfillment/app.js @@ -271,6 +271,7 @@ function ($scope, $q, $compile, $timeout, $rootScope, $location, item.circ_stop_fines = circ.stop_fines(); item.circ_usr = circ.usr().card() ? circ.usr().card().barcode() : circ.usr().usrname(); + item.circ_usr_name = circ.usr().first_given_name() + ' ' + circ.usr().family_name() // i18n item.can_mark_lost = (item.circ && item.copy.status().id() == 1); // checked out } -- 2.11.0