Lines 1610-1622
sub send_patron_notice {
Link Here
|
1610 |
push @fail, $transport; |
1610 |
push @fail, $transport; |
1611 |
} |
1611 |
} |
1612 |
} |
1612 |
} |
1613 |
if (scalar @success > 0) { |
1613 |
# if (scalar @success > 0) { |
1614 |
my $logger = Koha::Illrequest::Logger->new; |
1614 |
my $logger = Koha::Illrequest::Logger->new; |
1615 |
$logger->log_patron_notice({ |
1615 |
$logger->log_patron_notice({ |
1616 |
request => $self, |
1616 |
request => $self, |
1617 |
notice_code => $notice_code |
1617 |
notice_code => $notice_code |
1618 |
}); |
1618 |
}); |
1619 |
} |
1619 |
# } |
1620 |
return { |
1620 |
return { |
1621 |
result => { |
1621 |
result => { |
1622 |
success => \@success, |
1622 |
success => \@success, |
1623 |
- |
|
|