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