904a488460
A lot of code can be removed just by using Koha::Object It also makes fetching and updating additional field values easier. Signed-off-by: Séverine QUEUNE <severine.queune@bulac.fr> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Josef Moravec <josef.moravec@gmail.com> Signed-off-by: Nick Clemens <nick@bywatersolutions.com>
107 lines
3.4 KiB
Perl
Executable file
107 lines
3.4 KiB
Perl
Executable file
#!/usr/bin/perl
|
|
|
|
# Copyright 2017 BibLibre
|
|
#
|
|
# 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::Auth;
|
|
use C4::Output;
|
|
use C4::Serials;
|
|
use Koha::Subscriptions;
|
|
use Koha::Acquisition::Booksellers;
|
|
use Koha::AdditionalFields;
|
|
use Koha::DateUtils;
|
|
|
|
my $cgi = new CGI;
|
|
|
|
my ($template, $loggedinuser, $cookie) = get_template_and_user({
|
|
template_name => 'serials/subscription-batchedit.tt',
|
|
query => $cgi,
|
|
type => 'intranet',
|
|
authnotrequired => 0,
|
|
flagsrequired => {serials => 'edit_subscription'},
|
|
});
|
|
|
|
my @subscriptionids = $cgi->multi_param('subscriptionid');
|
|
|
|
my @subscriptions;
|
|
foreach my $subscriptionid (@subscriptionids) {
|
|
my $subscription = Koha::Subscriptions->find($subscriptionid);
|
|
|
|
push @subscriptions, $subscription if $subscription;
|
|
}
|
|
|
|
my @additional_fields = Koha::AdditionalFields->search({tablename => 'subscription'});
|
|
|
|
my $batchedit = $cgi->param('batchedit');
|
|
if ($batchedit) {
|
|
my %params = (
|
|
aqbooksellerid => scalar $cgi->param('booksellerid'),
|
|
location => scalar $cgi->param('location'),
|
|
branchcode => scalar $cgi->param('branchcode'),
|
|
itemtype => scalar $cgi->param('itemtype'),
|
|
notes => scalar $cgi->param('notes'),
|
|
internalnotes => scalar $cgi->param('internalnotes'),
|
|
serialsadditems => scalar $cgi->param('serialsadditems'),
|
|
enddate => dt_from_string(scalar $cgi->param('enddate')),
|
|
);
|
|
|
|
my $field_values = {};
|
|
foreach my $field (@additional_fields) {
|
|
my $value = $cgi->param('field_' . $field->id);
|
|
$field_values->{$field->id} = $value;
|
|
}
|
|
|
|
foreach my $subscription (@subscriptions) {
|
|
next unless C4::Serials::can_edit_subscription( $subscription->unblessed ); # This should be moved to Koha::Subscription->can_edit
|
|
while (my ($key, $value) = each %params) {
|
|
if (defined $value and $value ne '') {
|
|
$subscription->$key($value);
|
|
}
|
|
}
|
|
|
|
my @additional_field_values;
|
|
foreach my $field (@additional_fields) {
|
|
my $value = $field_values->{$field->id};
|
|
if (defined $value and $value ne '') {
|
|
push @additional_field_values, {
|
|
id => $field->id,
|
|
value => $value,
|
|
};
|
|
}
|
|
}
|
|
$subscription->set_additional_fields(\@additional_field_values);
|
|
|
|
$subscription->store;
|
|
}
|
|
|
|
my $redirect_url = $cgi->param('referrer') // '/cgi-bin/koha/serials/serials-home.pl';
|
|
print $cgi->redirect($redirect_url);
|
|
exit;
|
|
}
|
|
|
|
$template->param(
|
|
subscriptions => \@subscriptions,
|
|
booksellers => [ Koha::Acquisition::Booksellers->search() ],
|
|
additional_fields => \@additional_fields,
|
|
referrer => scalar $cgi->param('referrer'),
|
|
);
|
|
|
|
output_html_with_http_headers $cgi, $cookie, $template->output;
|