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

(-)a/C4/Items.pm (-2 / +1 lines)
Lines 306-312 sub ModItemFromMarc { Link Here
306
    my $item_object = Koha::Items->find($itemnumber);
306
    my $item_object = Koha::Items->find($itemnumber);
307
    my $item = TransformMarcToKoha( $localitemmarc, $frameworkcode, 'items' );
307
    my $item = TransformMarcToKoha( $localitemmarc, $frameworkcode, 'items' );
308
308
309
    my $has_permanent_location = $item->{permanent_location};
309
    my $has_permanent_location = exists $item->{permanent_location};
310
310
311
    # Retrieving the values for the fields that are not linked
311
    # Retrieving the values for the fields that are not linked
312
    my @mapped_fields = Koha::MarcSubfieldStructures->search(
312
    my @mapped_fields = Koha::MarcSubfieldStructures->search(
313
- 

Return to bug 27837