Bug 26922: Regression tests
[koha.git] / Koha / REST / V1 / Stage.pm
blobb72a28e7502e8dae479acfa8c9da4d89d3a8ca9b
1 package Koha::REST::V1::Stage;
3 # This file is part of Koha.
5 # Koha is free software; you can redistribute it and/or modify it
6 # under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # Koha is distributed in the hope that it will be useful, but
11 # WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with Koha; if not, see <http://www.gnu.org/licenses>.
18 use Modern::Perl;
20 use Mojo::Base 'Mojolicious::Controller';
22 use Koha::StockRotationRotas;
23 use Koha::StockRotationStages;
25 =head1 NAME
27 Koha::REST::V1::Stage
29 =head2 Operations
31 =head3 move
33 Move a stage up or down the stockrotation rota.
35 =cut
37 sub move {
38 my $c = shift->openapi->valid_input or return;
39 my $input = $c->validation->output;
41 my $rota = Koha::StockRotationRotas->find( $input->{rota_id} );
42 my $stage = Koha::StockRotationStages->find( $input->{stage_id} );
44 if ( $stage && $rota ) {
45 my $result = $stage->move_to( $input->{position} );
46 return $c->render( openapi => {}, status => 200 ) if $result;
47 return $c->render(
48 openapi => { error => "Bad request - new position invalid" },
49 status => 400
52 else {
53 return $c->render(
54 openapi => { error => "Not found - Invalid rota or stage ID" },
55 status => 404