Bugzilla – Attachment 115311 Details for
Bug 20457
Overdue and pre-overdue cronjobs not skipping phone notices
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
[patch]
Bug 20457: Overdue and pre-overdue cronjobs not skipping phone notices
Bug-20457-Overdue-and-pre-overdue-cronjobs-not-ski.patch (text/plain), 3.04 KB, created by
Kyle M Hall (khall)
on 2021-01-19 11:59:52 UTC
(
hide
)
Description:
Bug 20457: Overdue and pre-overdue cronjobs not skipping phone notices
Filename:
MIME Type:
Creator:
Kyle M Hall (khall)
Created:
2021-01-19 11:59:52 UTC
Size:
3.04 KB
patch
obsolete
>From 2df9e40c7c7c2578e6748569942bd150ed133139 Mon Sep 17 00:00:00 2001 >From: Kyle M Hall <kyle@bywatersolutions.com> >Date: Mon, 25 Mar 2019 14:03:16 -0400 >Subject: [PATCH] Bug 20457: Overdue and pre-overdue cronjobs not skipping > phone notices > >The overdue and pre-overdue cron scripts are not skipping the generation of phone notices. This causes many phone notices to be created that will always be left at 'pending' as the Talking Tech outbound script creates its own phone notices and puts them in the message queue. > >Test Plan: >1) Enable Talking Tech >2) Enable predue and overdue notice phone transports for a patron >3) Generate overdues and predues, notice phone notices are generated >4) Apply the patch >5) Repeat steps 2-3 >6) Note phone notices are not generated >--- > misc/cronjobs/advance_notices.pl | 3 +++ > misc/cronjobs/overdue_notices.pl | 1 + > 2 files changed, 4 insertions(+) > >diff --git a/misc/cronjobs/advance_notices.pl b/misc/cronjobs/advance_notices.pl >index fb65cd4343..aba675b42f 100755 >--- a/misc/cronjobs/advance_notices.pl >+++ b/misc/cronjobs/advance_notices.pl >@@ -323,6 +323,7 @@ UPCOMINGITEM: foreach my $upcoming ( @$upcoming_dues ) { > > ## Get branch info for borrowers home library. > foreach my $transport ( keys %{$borrower_preferences->{'transports'}} ) { >+ next if $transport eq 'itiva'; > my $letter = parse_letter( { letter_code => $letter_type, > borrowernumber => $upcoming->{'borrowernumber'}, > branchcode => $branchcode, >@@ -370,6 +371,7 @@ UPCOMINGITEM: foreach my $upcoming ( @$upcoming_dues ) { > > ## Get branch info for borrowers home library. > foreach my $transport ( keys %{$borrower_preferences->{'transports'}} ) { >+ next if $transport eq 'itiva'; > my $letter = parse_letter( { letter_code => $letter_type, > borrowernumber => $upcoming->{'borrowernumber'}, > branchcode => $branchcode, >@@ -617,6 +619,7 @@ sub send_digests { > } > > foreach my $transport ( keys %{ $borrower_preferences->{'transports'} } ) { >+ next if $transport eq 'itiva'; > my $letter = parse_letter( > { > letter_code => $params->{letter_code}, >diff --git a/misc/cronjobs/overdue_notices.pl b/misc/cronjobs/overdue_notices.pl >index 7b50f254c6..8027293acd 100755 >--- a/misc/cronjobs/overdue_notices.pl >+++ b/misc/cronjobs/overdue_notices.pl >@@ -707,6 +707,7 @@ END_SQL > > my $print_sent = 0; # A print notice is not yet sent for this patron > for my $mtt ( @message_transport_types ) { >+ next if $mtt eq 'itiva'; > my $effective_mtt = $mtt; > if ( ($mtt eq 'email' and not scalar @emails_to_use) or ($mtt eq 'sms' and not $data->{smsalertnumber}) ) { > # email or sms is requested but not exist, do a print. >-- >2.24.1 (Apple Git-126)
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
|
Splinter Review
Attachments on
bug 20457
:
73141
|
86990
|
115311
|
140213
|
141280