Lines 1640-1652
sub send_patron_notice {
Link Here
|
1640 |
push @fail, $transport; |
1640 |
push @fail, $transport; |
1641 |
} |
1641 |
} |
1642 |
} |
1642 |
} |
1643 |
if (scalar @success > 0) { |
1643 |
#if (scalar @success > 0) { |
1644 |
my $logger = Koha::Illrequest::Logger->new; |
1644 |
my $logger = Koha::Illrequest::Logger->new; |
1645 |
$logger->log_patron_notice({ |
1645 |
$logger->log_patron_notice({ |
1646 |
request => $self, |
1646 |
request => $self, |
1647 |
notice_code => $notice_code |
1647 |
notice_code => $notice_code |
1648 |
}); |
1648 |
}); |
1649 |
} |
1649 |
#} |
1650 |
return { |
1650 |
return { |
1651 |
result => { |
1651 |
result => { |
1652 |
success => \@success, |
1652 |
success => \@success, |
1653 |
- |
|
|