Koha/C4/SIP/ILS/Transaction/RenewAll.pm
Colin Campbell 827ef0e83c Bug 8429: Remove unnecessary use of Exporter from SIP/ILS
All the modules in the SIP/ILS tree are objects
The addition of calls to Exporter or hand manipulation of
@ISA added unnecessary bloat
Removed the "self = shift or return" idiom  as it is nonsensical
if the method can only be called via an object.
standardized inheritance via use parent
added a $self = shift in a couple of places where it
was not strictly necessary as its absence seemed to have
misled readers in the past

Signed-off-by: Kyle M Hall <kyle@bywatersolutions.com>
Passed-QA-by: Mason James <mtj@kohaaloha.com>
Signed-off-by: Jared Camins-Esakov <jcamins@cpbibliography.com>
2012-11-30 17:50:10 -05:00

71 lines
1.7 KiB
Perl

#
# RenewAll: class to manage status of "Renew All" transaction
package ILS::Transaction::RenewAll;
use strict;
use warnings;
use Sys::Syslog qw(syslog);
use ILS::Item;
use C4::Members qw( GetMember );
use parent qw(ILS::Transaction::Renew);
my %fields = (
renewed => [],
unrenewed => [],
);
sub new {
my $class = shift;
my $self = $class->SUPER::new();
foreach my $element ( keys %fields ) {
$self->{_permitted}->{$element} = $fields{$element};
}
@{$self}{ keys %fields } = values %fields;
return bless $self, $class;
}
sub do_renew_all {
my $self = shift;
my $patron = $self->{patron}; # SIP's patron
my $borrower = GetMember( cardnumber => $patron->id ); # Koha's patron
my $all_ok = 1;
$self->{renewed} = [];
$self->{unrenewed} = [];
foreach my $itemx ( @{ $patron->{items} } ) {
my $item_id = $itemx->{barcode};
my $item = ILS::Item->new($item_id);
if ( !defined($item) ) {
syslog(
'LOG_WARNING',
q|renew_all: Invalid item id '%s' associated with patron '%s'|,
$item_id,
$patron->id
);
# $all_ok = 0; Do net set as still ok
push @{ $self->unrenewed }, $item_id;
next;
}
$self->{item} = $item;
$self->do_renew_for($borrower);
if ( $self->renewal_ok ) {
$item->{due_date} = $self->{due};
push @{ $self->{renewed} }, $item_id;
}
else {
push @{ $self->{unrenewed} }, $item_id;
}
$self->screen_msg(q{}); # clear indiv message
}
$self->ok($all_ok);
return $self;
}
1;