View | Details | Raw Unified | Return to bug 18971
Collapse All | Expand All

(-)a/acqui/orderreceive.pl (-2 / +1 lines)
Lines 146-152 if ($AcqCreateItem eq 'receiving') { Link Here
146
        $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({frameworkcode => $fw, kohafield => 'items.materials', authorised_value => $item->{materials} });
146
        $descriptions = Koha::AuthorisedValues->get_description_by_koha_field({frameworkcode => $fw, kohafield => 'items.materials', authorised_value => $item->{materials} });
147
        $item->{materials} = $descriptions->{lib} // '';
147
        $item->{materials} = $descriptions->{lib} // '';
148
148
149
        my $itemtype = Koha::ItemsTypes->find( $item->{itype} );
149
        my $itemtype = Koha::ItemTypes->find( $item->{itype} );
150
        $item->{itemtype} = $itemtype->description; # FIXME Should not it be translated_description?
150
        $item->{itemtype} = $itemtype->description; # FIXME Should not it be translated_description?
151
        push @items, $item;
151
        push @items, $item;
152
    }
152
    }
153
- 

Return to bug 18971