diff options
author | Ivan Kohler <ivan@freeside.biz> | 2018-08-01 15:37:10 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2018-08-01 15:37:10 -0700 |
commit | 5a7fbc51bbbe090d45655862f3ab222d28b60962 (patch) | |
tree | 1198827221513964f6d1448877926edf1eb95949 | |
parent | 31399723786cf0510e15b88ff7b8eaec3c909def (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'; |