LP 1749502: Add Call Number Prefix & Suffix to pull list print template.
[evergreen-equinox.git] / Open-ILS / src / templates / staff / share / print_templates / t_hold_pull_list.tt2
index 5a06dde..cecb377 100644 (file)
@@ -24,17 +24,21 @@ Template for printing a table of holds to pull. Fields include:
       <th>[% l('Title') %]</th>
       <th>[% l('Author') %]</th>
       <th>[% l('Shelf Location') %]</th>
+      <th>[% l('Call Number Prefix') %]</th>
       <th>[% l('Call Number') %]</th>
+      <th>[% l('Call Number Suffix') %]</th>
       <th>[% l('Barcode/Part') %]</th>
     </tr>
   </thead>
   <tbody>
-    <tr ng-repeat="hold_data in holds | orderBy : ['hold._copy_location_position', 'volume.prefix', 'volume.label']">
+    <tr ng-repeat="hold_data in holds | orderBy : ['hold._copy_location_position', 'volume.prefix', 'volume.label', 'volume.suffix']">
       <td>{{hold_data.hold.hold_type}}</td>
       <td>{{hold_data.title}}</td>
       <td>{{hold_data.author}}</td>
       <td>{{hold_data.copy.location.name}}</td>
+      <td>{{hold_data.volume.prefix}}</td>
       <td>{{hold_data.volume.label}}</td>
+      <td>{{hold_data.volume.suffix}}</td>
       <td>{{hold_data.copy.barcode}} {{hold_data.part.label}}</td>
     </tr>
   </tbody>