diff options
author | Jeremy Davis <jeremyd@freeside.biz> | 2015-01-08 15:03:20 -0500 |
---|---|---|
committer | Jeremy Davis <jeremyd@freeside.biz> | 2015-01-08 15:03:20 -0500 |
commit | 005784113c4ddfb3924ae68408c87dc6cb171640 (patch) | |
tree | 748a2fb5c89e30a2b61980bc141c2164239b5c69 | |
parent | b876530e6f10f9a8974f619de6e6ff35e6cd104a (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? |