Lines 1711-1723
sub send_patron_notice {
Link Here
|
1711 |
push @fail, $transport; |
1711 |
push @fail, $transport; |
1712 |
} |
1712 |
} |
1713 |
} |
1713 |
} |
1714 |
if (scalar @success > 0) { |
1714 |
#if (scalar @success > 0) { |
1715 |
my $logger = Koha::ILL::Request::Logger->new; |
1715 |
my $logger = Koha::ILL::Request::Logger->new; |
1716 |
$logger->log_patron_notice({ |
1716 |
$logger->log_patron_notice({ |
1717 |
request => $self, |
1717 |
request => $self, |
1718 |
notice_code => $notice_code |
1718 |
notice_code => $notice_code |
1719 |
}); |
1719 |
}); |
1720 |
} |
1720 |
#} |
1721 |
return { |
1721 |
return { |
1722 |
result => { |
1722 |
result => { |
1723 |
success => \@success, |
1723 |
success => \@success, |
1724 |
- |
|
|