Koha/svc/article_request
Marcel de Rooy f103260006 Bug 20472: Edit URL field on staff form
This patch makes the following changes:

Add menu option Edit URLs.
Edit modal form to edit URLs.
Save URLs via ajax call to svc/article_request (Add action update_urls).
Add URL column to pending and processing table.
Allow Edit URLs for pending table too (just as Complete).
Do not allow 'Complete request' if a scan request has no URL(s).

Test plan:
[1] Add a few scan and photocopy requests.
[2] Fill url-A and url-B in two separate scan requests.
[3] Verify that these two urls are really saved (refresh form).
[4] Check that you cannot complete a scan request without URL and that you
    cannot add a URL to a photocopy request.

Signed-off-by: Marcel de Rooy <m.de.rooy@rijksmuseum.nl>
Signed-off-by: Martin Renvoize <martin.renvoize@ptfs-europe.com>

Signed-off-by: Nick Clemens <nick@bywatersolutions.com>

Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
2021-07-12 15:47:34 +02:00

68 lines
1.9 KiB
Perl
Executable file

#!/usr/bin/perl
# Copyright 2015 ByWater Solutions
#
# This file is part of Koha.
#
# Koha is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 3 of the License, or
# (at your option) any later version.
#
# Koha is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Koha; if not, see <http://www.gnu.org/licenses>.
#
use Modern::Perl;
use CGI qw ( -utf8 );
use JSON qw(to_json);
use C4::Auth qw(check_cookie_auth);
use Koha::ArticleRequests;
my $cgi = CGI->new;
my ( $auth_status, $sessionID ) =
check_cookie_auth( $cgi->cookie('CGISESSID'), { circulate => 'circulate_remaining_permissions' } );
if ( $auth_status ne "ok" ) {
exit 0;
}
binmode STDOUT, ':encoding(UTF-8)';
print $cgi->header( -type => 'text/plain', -charset => 'UTF-8' );
my $id = $cgi->param('id');
my $action = $cgi->param('action') || q{};
my $notes = $cgi->param('notes');
my $ar = Koha::ArticleRequests->find($id);
if ($ar) {
if ( $action eq 'cancel' ) {
$ar = $ar->cancel( $notes );
}
elsif ( $action eq 'process' ) {
$ar = $ar->process();
}
elsif ( $action eq 'complete' ) {
$ar = $ar->complete();
}
elsif ( $action eq 'update_branchcode' ) {
my $branchcode = $cgi->param('branchcode');
$ar->branchcode( $branchcode ) if $branchcode;
$ar = $ar->store();
}
elsif( $action eq 'update_urls' ) {
my $urls = $cgi->param('urls') // q{};
$ar->urls( $urls );
$ar = $ar->store();
}
}
print to_json( { success => $ar ? 1 : 0 } );