Lines 73-78
while ( my $h = $holds_rs->next() ) {
Link Here
|
73 |
|
73 |
|
74 |
my $biblionumber = $h->biblio()->biblionumber(); |
74 |
my $biblionumber = $h->biblio()->biblionumber(); |
75 |
|
75 |
|
|
|
76 |
my $itemtype_limit; |
77 |
if ( $h->itemtype ) { |
78 |
my $itemtype = C4::Koha::getitemtypeinfo( $h->itemtype ); |
79 |
$itemtype_limit = $itemtype->{translated_description}; |
80 |
} |
81 |
|
76 |
my $hold = { |
82 |
my $hold = { |
77 |
DT_RowId => $h->reserve_id(), |
83 |
DT_RowId => $h->reserve_id(), |
78 |
biblionumber => $biblionumber, |
84 |
biblionumber => $biblionumber, |
Lines 89-94
while ( my $h = $holds_rs->next() ) {
Link Here
|
89 |
waiting_at => $h->branch()->branchname(), |
95 |
waiting_at => $h->branch()->branchname(), |
90 |
waiting_here => $h->branch()->branchcode() eq $branch, |
96 |
waiting_here => $h->branch()->branchcode() eq $branch, |
91 |
priority => $h->priority(), |
97 |
priority => $h->priority(), |
|
|
98 |
itemtype_limit => $itemtype_limit, |
92 |
subtitle => GetRecordValue( |
99 |
subtitle => GetRecordValue( |
93 |
'subtitle', GetMarcBiblio($biblionumber), |
100 |
'subtitle', GetMarcBiblio($biblionumber), |
94 |
GetFrameworkCode($biblionumber) |
101 |
GetFrameworkCode($biblionumber) |
95 |
- |
|
|