|
Lines 107-117
while ( my $h = $holds_rs->next() ) {
Link Here
|
| 107 |
waiting_here => $h->branch()->branchcode() eq $branch, |
107 |
waiting_here => $h->branch()->branchcode() eq $branch, |
| 108 |
priority => $h->priority(), |
108 |
priority => $h->priority(), |
| 109 |
itemtype_limit => $itemtype_limit, |
109 |
itemtype_limit => $itemtype_limit, |
| 110 |
subtitle => GetRecordValue( |
|
|
| 111 |
'subtitle', |
| 112 |
GetMarcBiblio({ biblionumber => $biblionumber }), |
| 113 |
GetFrameworkCode($biblionumber) |
| 114 |
), |
| 115 |
suspend_until_formatted => $h->suspend_until() ? output_pref( |
110 |
suspend_until_formatted => $h->suspend_until() ? output_pref( |
| 116 |
{ dt => dt_from_string( $h->suspend_until() ), dateonly => 1 } |
111 |
{ dt => dt_from_string( $h->suspend_until() ), dateonly => 1 } |
| 117 |
) |
112 |
) |
| 118 |
- |
|
|