Lines 84-90
sub build_table {
Link Here
|
84 |
safe_to_delete => $item->safe_to_delete, |
84 |
safe_to_delete => $item->safe_to_delete, |
85 |
holds => $item->biblio->holds->count, |
85 |
holds => $item->biblio->holds->count, |
86 |
item_holds => $item->holds->count, |
86 |
item_holds => $item->holds->count, |
87 |
is_checked_out => $item->checkout || 0, |
87 |
is_checked_out => $item->checkout ? 1 : 0, |
88 |
}; |
88 |
}; |
89 |
push @items, $item_info; |
89 |
push @items, $item_info; |
90 |
} |
90 |
} |
91 |
- |
|
|