LP#1851306: (follow-up) fix printing of destination
authorGalen Charlton <gmc@equinoxinitiative.org>
Thu, 18 Jun 2020 20:13:21 +0000 (16:13 -0400)
committerGalen Charlton <gmc@equinoxinitiative.org>
Thu, 18 Jun 2020 20:13:21 +0000 (16:13 -0400)
Updated the default template for booking capture
transit slips to print the shortname of the destination.

Signed-off-by: Galen Charlton <gmc@equinoxinitiative.org>
Open-ILS/src/sql/Pg/950.data.seed-values.sql
Open-ILS/src/sql/Pg/upgrade/XXXX.data.port_capture_reservations_to_angular.sql

index 6370049..2e7dbbc 100644 (file)
@@ -20293,8 +20293,10 @@ $TEMPLATE$
     # template_data is data returned from open-ils.booking.resources.capture_for_reservation.
 -%]
 <div>
-  [% IF data.transit %]
-  <div>This item need to be routed to <strong>data.transit.dest</strong></div>
+  [% IF data.transit;
+       dest_ou = helpers.get_org_unit(data.transit.dest);
+  %]
+  <div>This item need to be routed to <strong>[% dest_ou.shortname %]</strong></div>
   [% ELSE %]
   <div>This item need to be routed to <strong>RESERVATION SHELF:</strong></div>
   [% END %]
index fbf53fc..75293dd 100644 (file)
@@ -15,8 +15,10 @@ $TEMPLATE$
     # template_data is data returned from open-ils.booking.resources.capture_for_reservation.
 -%]
 <div>
-  [% IF data.transit %]
-  <div>This item need to be routed to <strong>data.transit.dest</strong></div>
+  [% IF data.transit;
+       dest_ou = helpers.get_org_unit(data.transit.dest);
+  %]
+  <div>This item need to be routed to <strong>[% dest_ou.shortname %]</strong></div>
   [% ELSE %]
   <div>This item need to be routed to <strong>RESERVATION SHELF:</strong></div>
   [% END %]