LP1749502 - Holds Pull List Print Order
[evergreen-equinox.git] / Open-ILS / src / templates / staff / share / print_templates / t_hold_pull_list.tt2
index cecb377..bd0586f 100644 (file)
@@ -24,21 +24,17 @@ 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', 'volume.suffix']">
+    <tr ng-repeat="hold_data in holds | orderBy : ['hold._copy_location_position', 'copy.location.name', 'volume.prefix_sortkey', 'volume.label_sortkey', 'volume.suffix_sortkey']">
       <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.volume.prefix}} {{hold_data.volume.label}} {{hold_data.volume.suffix}}</td>
       <td>{{hold_data.copy.barcode}} {{hold_data.part.label}}</td>
     </tr>
   </tbody>