@@ -, +, @@ handling --- Koha/REST/V1/Biblios.pm | 28 ++++++++-------------------- t/db_dependent/api/v1/biblios.t | 2 +- 2 files changed, 9 insertions(+), 21 deletions(-) --- a/Koha/REST/V1/Biblios.pm +++ a/Koha/REST/V1/Biblios.pm @@ -432,32 +432,20 @@ sub update_item { $item->set_from_api($body); - my $barcodeSearch; - $barcodeSearch = Koha::Items->search( { barcode => $body->{external_id} } ) if defined $body->{external_id}; - - if ( $barcodeSearch - && ($barcodeSearch->count > 1 - || ($barcodeSearch->count == 1 - && $barcodeSearch->next->itemnumber != $item->itemnumber - ) - ) - ) - { - return $c->render( - status => 400, - openapi => { error => "Barcode not unique" } - ); - } - - my $storedItem = $item->store; - $storedItem->discard_changes; + $item->store->discard_changes; $c->render( status => 200, - openapi => $storedItem->to_api + openapi => $item->to_api ); } catch { + if ( blessed $_ and $_->isa('Koha::Exceptions::Object::DuplicateID') ) { + return $c->render( + status => 409, + openapi => { error => 'Duplicate barcode.' } + ); + } $c->unhandled_exception($_); } } --- a/t/db_dependent/api/v1/biblios.t +++ a/t/db_dependent/api/v1/biblios.t @@ -1772,7 +1772,7 @@ subtest 'update_item() tests' => sub { $t->put_ok("//$userid:$password@/api/v1/biblios/$biblio_id/items/$item_id" => json => { external_id => $other_item->barcode, }) - ->status_is(400, 'Barcode not unique'); + ->status_is(409, 'Barcode not unique'); $t->put_ok("//$userid:$password@/api/v1/biblios/$biblio_id/items/$item_id" => json => { replacement_price => 30, --