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