@@ -, +, @@ ModItemFromMarc --- C4/Items.pm | 4 ++++ 1 file changed, 4 insertions(+) --- a/C4/Items.pm +++ a/C4/Items.pm @@ -306,6 +306,8 @@ sub ModItemFromMarc { my $item_object = Koha::Items->find($itemnumber); my $item = TransformMarcToKoha( $localitemmarc, $frameworkcode, 'items' ); + my $has_permanent_location = $item->{permanent_location}; + # Retrieving the values for the fields that are not linked my @mapped_fields = Koha::MarcSubfieldStructures->search( { @@ -328,6 +330,8 @@ sub ModItemFromMarc { $item_object = $item_object->set_or_blank($item); $item_object->cn_sort($existing_cn_sort); # Resetting to the existing value + $item_object->make_column_dirty('permanent_location') if $has_permanent_location; + my $unlinked_item_subfields = _get_unlinked_item_subfields( $localitemmarc, $frameworkcode ); $item_object->more_subfields_xml(_get_unlinked_subfields_xml($unlinked_item_subfields)); $item_object->store({ skip_record_index => $params->{skip_record_index} }); --