From: Bill Erickson Date: Mon, 19 May 2014 20:02:02 +0000 (-0400) Subject: support patron summary display collapsing X-Git-Url: https://old-git.evergreen-ils.org/?a=commitdiff_plain;h=efe07ab7c9ec789c665b164a098160e22c9a6e75;p=working%2FEvergreen.git support patron summary display collapsing Signed-off-by: Bill Erickson --- diff --git a/Open-ILS/src/templates/staff/circ/patron/index.tt2 b/Open-ILS/src/templates/staff/circ/patron/index.tt2 index 18a0b572ba..ee09fa1274 100644 --- a/Open-ILS/src/templates/staff/circ/patron/index.tt2 +++ b/Open-ILS/src/templates/staff/circ/patron/index.tt2 @@ -36,9 +36,31 @@ angular.module('egCoreMod').run(['egStrings', function(s) {
- [% INCLUDE 'staff/circ/patron/t_summary.tt2' %] -
- +
+

+
+
+ [% l('[_1], [_2], [_3]', + '{{patron().family_name()}}', + '{{patron().first_given_name()}}', + '{{patron().second_given_name()}}') %] +
+ +
+

+
+
+
+ + +
+
+ [% INCLUDE 'staff/circ/patron/t_summary.tt2' %] +
+
-
-
+ + [% END %] diff --git a/Open-ILS/src/templates/staff/circ/patron/t_summary.tt2 b/Open-ILS/src/templates/staff/circ/patron/t_summary.tt2 index 493ebc0d94..251bc5e500 100644 --- a/Open-ILS/src/templates/staff/circ/patron/t_summary.tt2 +++ b/Open-ILS/src/templates/staff/circ/patron/t_summary.tt2 @@ -1,5 +1,6 @@ -
+
+ +
diff --git a/Open-ILS/web/js/ui/default/staff/circ/patron/app.js b/Open-ILS/web/js/ui/default/staff/circ/patron/app.js index ed4f143889..f40b1893c8 100644 --- a/Open-ILS/web/js/ui/default/staff/circ/patron/app.js +++ b/Open-ILS/web/js/ui/default/staff/circ/patron/app.js @@ -669,15 +669,6 @@ function($scope, $q, $routeParams, $timeout, $window, $location, egCore, } }]) -/** * Manages patron summary view - */ -.controller('PatronSummaryCtrl', - ['$scope', -function($scope) { - // so for, all data for this controller is data inherited - // from the parent scope. Nothing to do here. -}]) - /** * Manages edit */