diff options
author | Jeremy Davis <jeremyd@freeside.biz> | 2015-01-08 15:04:52 -0500 |
---|---|---|
committer | Jeremy Davis <jeremyd@freeside.biz> | 2015-01-08 15:04:52 -0500 |
commit | 26491da90aa6a1870d88be044c419be6d0b8dec0 (patch) | |
tree | 3e8c51e8af76f6159be4be07c7afca1e75adeace | |
parent | 041af3668f2fa697d5bad35d96dfe13423393fc6 (diff) |
Ticket A2billing credit limit fix
-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 e0297161f..7aab01a26 100644 --- a/FS/FS/part_export/a2billing.pm +++ b/FS/FS/part_export/a2billing.pm @@ -131,7 +131,7 @@ sub export_insert { username => $username, useralias => $username, uipass => $svc->_password, - credit => $cust_main->credit_limit || $self->option('credit') || 0, + creditlimit => $cust_main->credit_limit || $self->option('credit') || 0, tariff => $part_pkg->option('a2billing_tariff'), status => 1, lastname => $cust_main->last, # $svc->finger? |