Lines 147-153
if ($AcqCreateItem eq 'receiving') {
Link Here
|
147 |
$item->{materials} = $descriptions->{lib} // ''; |
147 |
$item->{materials} = $descriptions->{lib} // ''; |
148 |
|
148 |
|
149 |
my $itemtype = Koha::ItemTypes->find( $item->{itype} ); |
149 |
my $itemtype = Koha::ItemTypes->find( $item->{itype} ); |
150 |
$item->{itemtype} = $itemtype->description; # FIXME Should not it be translated_description? |
150 |
if (defined $itemtype) { |
|
|
151 |
$item->{itemtype} = $itemtype->description; # FIXME Should not it be translated_description? |
152 |
} |
151 |
push @items, $item; |
153 |
push @items, $item; |
152 |
} |
154 |
} |
153 |
$template->param(items => \@items); |
155 |
$template->param(items => \@items); |
154 |
- |
|
|