diff options
author | Christopher Burger <burgerc@freeside.biz> | 2019-01-04 16:13:05 -0500 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2019-01-06 12:43:06 -0500 |
commit | b0ef27c471c45bcd4a1f07aac0b0f50ecf50a8c4 (patch) | |
tree | 843c9713630c2cfc3bd9dc33d468ab9e73df0d7c | |
parent | a53cb2e07c493498481728c305638baa50c08183 (diff) |
RT# 37817 - Added more invoice sending actions
-rw-r--r-- | FS/FS/part_event/Condition/invoice_has_not_been_sent.pm | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/FS/FS/part_event/Condition/invoice_has_not_been_sent.pm b/FS/FS/part_event/Condition/invoice_has_not_been_sent.pm index f80508a9a..4868f6636 100644 --- a/FS/FS/part_event/Condition/invoice_has_not_been_sent.pm +++ b/FS/FS/part_event/Condition/invoice_has_not_been_sent.pm @@ -22,7 +22,14 @@ sub condition { my($self, $cust_bill, %opt) = @_; ## search actions for invoice send events. - my $extra_sql = " AND (action LIKE 'cust_bill_send%' OR action LIKE 'cust_bill_email%')"; + my @send_actions = ( + "action LIKE 'cust_bill_send%'", + "action LIKE 'cust_bill_email%'", + "action LIKE 'cust_bill_print%'", + "action LIKE 'cust_bill_fsinc_print%'", + ); + my $actions = join ' OR ', @send_actions; + my $extra_sql = " AND ($actions)"; my $event = qsearchs( { 'table' => 'cust_event', |