Lucas Gass
60564519b0
To test: 1. Have 3 staff accounts to test: -STAFF A: superlibrarian -STAFF B: loggedinlibrary permission -STAFF C: no loggedinlibrary or superlibrarian permission 2. Enable 'UseCirculationDesks' and create some desks. (Admin > Circulation desks) 3. Enable 'UseCashRegisters' and create some registers ( Admin > Cash registers) 4. Use STAFF A ( superlibrarian ) and make sure you can change branch, desk and register. 5. Use STAFF B ( loggedinlibrary permission ) and make sure you can change branch, desk and register. 6. Use STAFF C ( no loggedinlibrary or superlibrarian permission ) and make sure you can change branch, desk and register. 7. Each time you change you should be redirected to the page you were previously on. Signed-off-by: Owen Leonard <oleonard@myacpl.org> Signed-off-by: Tomas Cohen Arazi <tomascohen@theke.io> Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
113 lines
3.7 KiB
Perl
Executable file
113 lines
3.7 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
# Copyright 2000-2002 Katipo Communications
|
|
#
|
|
# 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 C4::Context;
|
|
use C4::Output qw( output_html_with_http_headers );
|
|
use C4::Auth qw( get_template_and_user get_session haspermission );
|
|
use Koha::BiblioFrameworks;
|
|
use Koha::Cash::Registers;
|
|
use Koha::Libraries;
|
|
use Koha::Desks;
|
|
|
|
my $query = CGI->new();
|
|
|
|
my ( $template, $borrowernumber, $cookie, $flags ) = get_template_and_user({
|
|
template_name => "circ/set-library.tt",
|
|
query => $query,
|
|
type => "intranet",
|
|
flagsrequired => { catalogue => 1, },
|
|
});
|
|
|
|
my $sessionID = $query->cookie("CGISESSID");
|
|
my $session = get_session($sessionID);
|
|
|
|
my $op = $query->param('op') || q{};
|
|
my $branch = $query->param('branch');
|
|
my $desk_id = $query->param('desk_id');
|
|
my $register_id = $query->param('register_id');
|
|
my $userenv_branch = C4::Context->userenv->{'branch'} || '';
|
|
my $userenv_desk = C4::Context->userenv->{'desk_id'} || '';
|
|
my $userenv_register_id = C4::Context->userenv->{'register_id'} || '';
|
|
my $updated;
|
|
|
|
my $library = Koha::Libraries->find($branch);
|
|
# $session lines here are doing the updating
|
|
if (
|
|
$op eq 'cud-set-library'
|
|
&& $library
|
|
&& ( C4::Auth::haspermission( C4::Context->userenv->{'id'}, { 'loggedinlibrary' => 1 } )
|
|
or C4::Context::IsSuperLibrarian() )
|
|
)
|
|
{
|
|
if ( !$userenv_branch or $userenv_branch ne $branch ) {
|
|
my $branchname = $library->branchname;
|
|
$session->param( 'branchname', $branchname ); # update sesssion in DB
|
|
$session->param( 'branch', $branch ); # update sesssion in DB
|
|
$updated = 1;
|
|
}
|
|
} else {
|
|
$branch = $userenv_branch; # fallback value
|
|
}
|
|
|
|
if ( $desk_id && ( !$userenv_desk or $userenv_desk ne $desk_id ) ) {
|
|
my $desk = Koha::Desks->find( { desk_id => $desk_id } );
|
|
my $old_desk_name = '';
|
|
if ($userenv_desk) {
|
|
$old_desk_name = Koha::Desks->find( { desk_id => $userenv_desk } )->desk_name;
|
|
}
|
|
$session->param( desk_name => $desk->desk_name );
|
|
$session->param( desk_id => $desk->desk_id );
|
|
$updated = 1;
|
|
} else {
|
|
$desk_id = $userenv_desk;
|
|
}
|
|
|
|
if ( defined($register_id)
|
|
&& ( $userenv_register_id ne $register_id ) )
|
|
{
|
|
my $old_register_name = C4::Context->userenv->{'register_name'} || '';
|
|
my $register = Koha::Cash::Registers->find($register_id);
|
|
$session->param( 'register_id', $register_id );
|
|
$session->param( 'register_name', $register ? $register->name : '' );
|
|
$updated = 1;
|
|
} else {
|
|
$register_id = $userenv_register_id;
|
|
}
|
|
|
|
$session->flush();
|
|
|
|
|
|
my $referer = $query->param('oldreferer') || $ENV{HTTP_REFERER} || '';
|
|
if ( $updated ) {
|
|
print $query->redirect($referer || '/cgi-bin/koha/mainpage.pl');
|
|
}
|
|
|
|
$template->param(
|
|
referer => $referer,
|
|
branch => $branch,
|
|
desk_id => $desk_id,
|
|
);
|
|
|
|
# Checking if there is a Fast Cataloging Framework
|
|
$template->param( fast_cataloging => 1 ) if Koha::BiblioFrameworks->find( 'FA' );
|
|
|
|
output_html_with_http_headers $query, $cookie, $template->output;
|