diff options
author | Jeremy Davis <jeremyd@freeside.biz> | 2014-10-20 15:01:43 -0400 |
---|---|---|
committer | Jeremy Davis <jeremyd@freeside.biz> | 2014-10-20 15:01:43 -0400 |
commit | f6b7e98aba4ed5a264809a712a3a3c5487a53049 (patch) | |
tree | 2f52467d81b225dd4fe6fff7e19be9f95e080988 | |
parent | 9d878141d7230e6d1a3a913d30ee04b3f2448cf2 (diff) |
Ticket #31242 Fix A2billing suspends
-rw-r--r-- | FS/FS/part_export/a2billing.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/part_export/a2billing.pm b/FS/FS/part_export/a2billing.pm index dc152e4a1..0547a21d0 100644 --- a/FS/FS/part_export/a2billing.pm +++ b/FS/FS/part_export/a2billing.pm @@ -444,7 +444,7 @@ sub export_unsuspend { if ( $svc->isa('FS::svc_acct') ) { $error = $self->a2b_insert_or_replace('cc_card', 'svcnum', { svcnum => $svc->svcnum, - status => 0, #"ACTIVE" + status => 1, #"ACTIVE" activated => 1, } ); |