96d1ad65b4
The op modify in subscription-frequencies.pl isn't a cud- operation, it's a GET of the editing form, so it shouldn't have been changed to cud-modify. Test plan: 1. Don't apply the patch yet 2. Serials - Manage frequencies - for any frequency click Edit 2. Note that the editing form is empty 3. Apply patch, restart_all 4. Repeat step 2, note that now the editing form has the existing data 5. Change anything, Display order is nice, and save to verify that cud-savemod still works Signed-off-by: Brendan Lawlor <blawlor@clamsnet.org> Signed-off-by: Nick Clemens <nick@bywatersolutions.com> Signed-off-by: Katrin Fischer <katrin.fischer@bsz-bw.de>
119 lines
3.5 KiB
Perl
Executable file
119 lines
3.5 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
# Copyright 2011-2013 Biblibre SARL
|
|
#
|
|
# 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>.
|
|
|
|
=head1 NAME
|
|
|
|
subscription-frequencies.pl
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
Manage subscription frequencies
|
|
|
|
=cut
|
|
|
|
use Modern::Perl;
|
|
|
|
use CGI qw ( -utf8 );
|
|
|
|
use C4::Auth qw( get_template_and_user );
|
|
use C4::Output qw( output_html_with_http_headers );
|
|
use C4::Serials qw( GetSubscription ModSubscription DelSubscription );
|
|
use C4::Serials::Frequency;
|
|
|
|
my $input = CGI->new;
|
|
my ($template, $loggedinuser, $cookie, $flags) = get_template_and_user( {
|
|
template_name => 'serials/subscription-frequencies.tt',
|
|
query => $input,
|
|
type => 'intranet',
|
|
flagsrequired => { 'serials' => 1 },
|
|
} );
|
|
|
|
my $op = $input->param('op');
|
|
|
|
if($op && ($op eq 'new' || $op eq 'modify')) {
|
|
my @units_loop;
|
|
push @units_loop, {val => $_} for (qw/ day week month year /);
|
|
|
|
if($op eq 'modify') {
|
|
my $frequencyid = $input->param('frequencyid');
|
|
my $frequency = GetSubscriptionFrequency($frequencyid);
|
|
foreach (@units_loop) {
|
|
if($frequency->{unit} and $_->{val} eq $frequency->{unit}) {
|
|
$_->{selected} = 1;
|
|
last;
|
|
}
|
|
}
|
|
$template->param( %$frequency );
|
|
}
|
|
|
|
$template->param(
|
|
units_loop => \@units_loop,
|
|
$op => 1,
|
|
);
|
|
output_html_with_http_headers $input, $cookie, $template->output;
|
|
exit;
|
|
}
|
|
|
|
if($op && ($op eq 'cud-savenew' || $op eq 'cud-savemod')) {
|
|
my $frequency;
|
|
foreach (qw/ description unit issuesperunit unitsperissue displayorder /) {
|
|
$frequency->{$_} = $input->param($_);
|
|
}
|
|
$frequency->{unit} = undef if $frequency->{unit} eq '';
|
|
foreach (qw/issuesperunit unitsperissue/) {
|
|
$frequency->{$_} = 1 if $frequency->{$_} !~ /\d+/;
|
|
}
|
|
$frequency->{issuesperunit} = 1 if $frequency->{issuesperunit} < 1;
|
|
$frequency->{unitsperissue} = 1 if $frequency->{issuesperunit} != 1;
|
|
|
|
if($op eq 'cud-savemod') {
|
|
$frequency->{id} = $input->param('id');
|
|
ModSubscriptionFrequency($frequency);
|
|
} else {
|
|
AddSubscriptionFrequency($frequency);
|
|
}
|
|
} elsif($op && $op eq 'cud-del') {
|
|
my $frequencyid = $input->param('frequencyid');
|
|
|
|
if ($frequencyid) {
|
|
my $confirm = $input->param('confirm');
|
|
if ($confirm) {
|
|
DelSubscriptionFrequency($frequencyid);
|
|
} else {
|
|
my @subs = GetSubscriptionsWithFrequency($frequencyid);
|
|
if (@subs) {
|
|
$template->param(
|
|
frequencyid => $frequencyid,
|
|
still_used => 1,
|
|
subscriptions => \@subs
|
|
);
|
|
} else {
|
|
DelSubscriptionFrequency($frequencyid);
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
my @frequencies = GetSubscriptionFrequencies();
|
|
|
|
$template->param(frequencies_loop => \@frequencies);
|
|
$template->param($op => 1) if $op;
|
|
|
|
output_html_with_http_headers $input, $cookie, $template->output;
|