<tr>
<th only="shelf_expired_holds">Patron</th>
<th only="shelf_expired_holds">Action</th>
+ <th>Type</th>
<th>Title</th>
<th>Author</th>
<th>Shelving Location</th>
<tr>
<td only="shelf_expired_holds">${usr.display_name}</td>
<td only="shelf_expired_holds">${action}</td>
+ <td>${hold_type}</td>
<td type='opac/slot-data' query='datafield[tag=245]'></td>
<td type='opac/slot-data' query='datafield[tag^=1]' limit='1'> </td>
<td>${current_copy.location.name}</td>
function pullListDrawCopy( tbody, row, hold, idx, copy ) {
+ $n(row, 'hold_type').appendChild(text(hold.hold_type()));
$n(row, 'barcode').appendChild(text(copy.barcode()));
$n(row, 'copy_location').appendChild(text(copy.location().name()));
$n(row, 'copy_number').appendChild(text(copy.copy_number()));
<td name='patron'/>
<td name='date'/>
<td>
+ <span name='hold_type'></span>
<span name='copy_hold' class='hide_me'>&staff.server.admin.hold_pull.copy_hold;</span>
<span name='volume_hold' class='hide_me'>&staff.server.admin.hold_pull.volume_hold;</span>
<span name='title_hold' class='hide_me'>&staff.server.admin.hold_pull.title_hold;</span>
function pullListDrawCopy( tbody, row, hold, idx, copy ) {
+ $n(row, 'hold_type').appendChild(text(hold.hold_type()));
$n(row, 'barcode').appendChild(text(copy.barcode()));
$n(row, 'copy_location').appendChild(text(copy.location().name()));
$n(row, 'copy_number').appendChild(text(copy.copy_number()));
<span name='author'></span>
<b>Copy:</b> <span name='copy_number'></span> <b>Location:</b> <span name='copy_location'></span> <b>Item ID:</b> <span name='barcode'></span>
<b>Item Type:</b> <span name='item_type'><span name='format_at' class='hide_me'>Book </span><span name='format_at-d' class='hide_me'>Large Print Book </span><span name='format_i' class='hide_me'>Audiobook </span><span name='format_g' class='hide_me'>Video Recording </span><span name='format_j' class='hide_me'>Music </span><span name='format_m' class='hide_me'>Electronic Resource</span></span> <b>Patron ID:</b> <span name='patron'></span>
-<b>Requested:</b> <span name='date'></span> <b>Hold Type:</b> <span name='copy_hold' class='hide_me'>Copy Hold</span><span name='volume_hold' class='hide_me'>Volume Hold</span><span name='title_hold' class='hide_me'>Title Hold</span><span name='mr_hold' class='hide_me'>Metarecord Hold</span>
+<b>Requested:</b> <span name='date'></span> <b>Hold Type:</b> <span name='hold_type'></span> <span name='copy_hold' class='hide_me'>Copy Hold</span><span name='volume_hold' class='hide_me'>Volume Hold</span><span name='title_hold' class='hide_me'>Title Hold</span><span name='mr_hold' class='hide_me'>Metarecord Hold</span>
<b>Pickup:</b> <span name='pickup'></span> <span name="age_protect_span" class='hide_me'><b>Hold Protection:</b> <span name="age_protect"></span></span>
</pre>
</div>
'current_copy' : { 'hidden' : false },
'phone_notify' : { 'hidden' : false },
'email_notify' : { 'hidden' : false },
+ 'hold_type' : { 'hidden' : false },
}
);
JSAN.use('util.list'); g.list = new util.list('holds_list');