Lines 194-200
sub printbasketgrouppdf{
Link Here
|
194 |
} |
194 |
} |
195 |
} |
195 |
} |
196 |
|
196 |
|
197 |
$ord->{itemtype} = ( $ord->{itemtype} and $biblioitem->itemtype ) ? Koha::ItemTypes->find( $biblioitem->itemtype )->description : undef; |
197 |
my $item_has_type_description = ($ord->{itemtype} |
|
|
198 |
and $biblioitem->itemtype |
199 |
and Koha::ItemTypes->find( $biblioitem->itemtype )); |
200 |
$ord->{itemtype} = $item_has_type_description ? Koha::ItemTypes->find( $biblioitem->itemtype )->description : undef; |
198 |
$ord->{en} = $en ? $en : undef; |
201 |
$ord->{en} = $en ? $en : undef; |
199 |
$ord->{edition} = $edition ? $edition : undef; |
202 |
$ord->{edition} = $edition ? $edition : undef; |
200 |
|
203 |
|
201 |
- |
|
|