diff options
| author | Ivan Kohler <ivan@freeside.biz> | 2018-08-01 15:37:13 -0700 |
|---|---|---|
| committer | Ivan Kohler <ivan@freeside.biz> | 2018-08-01 15:37:13 -0700 |
| commit | ecfee532f0251531f67acf91696188c9a2c56c9d (patch) | |
| tree | 790fe3abc84a8542a69e09481515f47545b63e17 | |
| parent | dbfc5216f8de1450f98e69f9513897b6ab66cfcb (diff) | |
stop incrementing usage for CF accounts
| -rw-r--r-- | FS/FS/svc_acct.pm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/FS/FS/svc_acct.pm b/FS/FS/svc_acct.pm index 7c35f013f..1584cce51 100644 --- a/FS/FS/svc_acct.pm +++ b/FS/FS/svc_acct.pm @@ -1980,6 +1980,9 @@ sub _op_usage { return '' unless $amount; + return '' + if $self->cust_svc->part_svc->part_svc_column($column)->columnflag eq 'F'; + local $SIG{HUP} = 'IGNORE'; local $SIG{INT} = 'IGNORE'; local $SIG{QUIT} = 'IGNORE'; |
