diff options
author | ivan <ivan> | 2009-08-20 09:55:58 +0000 |
---|---|---|
committer | ivan <ivan> | 2009-08-20 09:55:58 +0000 |
commit | d9baa1b16a6419108ab98d40bd05b1d62f1551bb (patch) | |
tree | d0b9168ace30df77a026366db7b6d2f1306d2bc0 | |
parent | 1e34f4a5d142bd58f5918219db0931e81ad0418e (diff) |
allow generic conditions for cust_statement, RT#4860
-rw-r--r-- | FS/FS/part_event/Condition.pm | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/FS/FS/part_event/Condition.pm b/FS/FS/part_event/Condition.pm index 544b560b6..ddd8a616f 100644 --- a/FS/FS/part_event/Condition.pm +++ b/FS/FS/part_event/Condition.pm @@ -41,6 +41,7 @@ of eventtables (values set true indicate the condition can be tested): 'cust_bill' => 1, 'cust_pkg' => 0, 'cust_pay_batch' => 0, + 'cust_statement' => 0, }; } @@ -52,6 +53,7 @@ sub eventtable_hashref { 'cust_bill' => 1, 'cust_pkg' => 1, 'cust_pay_batch' => 1, + 'cust_statement' => 1, }; } |