[freeside-commits] branch FREESIDE_3_BRANCH updated. 51b67436d595b43c197e83b60898cd99acf402dd
Ivan
ivan at 420.am
Mon Mar 30 07:21:02 PDT 2015
The branch, FREESIDE_3_BRANCH has been updated
via 51b67436d595b43c197e83b60898cd99acf402dd (commit)
from a7419a574afa0141836fceef3ba064c90d584d84 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 51b67436d595b43c197e83b60898cd99acf402dd
Author: Ivan Kohler <ivan at freeside.biz>
Date: Mon Mar 30 07:20:54 2015 -0700
add countrycode to a2billing export, RT#33738
diff --git a/FS/FS/part_export/a2billing.pm b/FS/FS/part_export/a2billing.pm
index 0821a34..15410ae 100644
--- a/FS/FS/part_export/a2billing.pm
+++ b/FS/FS/part_export/a2billing.pm
@@ -224,7 +224,7 @@ sub export_insert {
id_cc_didgroup => $self->option('didgroup'),
id_cc_country => $cc_country_id,
iduser => $cc_card_id,
- did => $svc->phonenum,
+ did => $svc->countrycode. $svc->phonenum,
billingtype => ($self->option('billtype') eq 'Dial Out Rate' ? 2 : 3),
activated => 1,
aleg_carrier_cost_min_offp => $part_pkg->option('a2billing_carrier_cost_min'),
@@ -242,7 +242,7 @@ sub export_insert {
my $cc_did_id = $self->a2b_find('cc_did', 'svcnum', $svc->svcnum);
- my $destination = 'SIP/user-'. $svc_acct->username. '@'. $svc->sip_server. "!". $svc->phonenum;
+ my $destination = 'SIP/user-'. $svc_acct->username. '@'. $svc->sip_server. "!". $svc->countrycode. $svc->phonenum;
my %cc_did_destination = (
destination => $destination,
priority => 1,
@@ -408,7 +408,7 @@ sub export_replace {
} elsif ( $new->isa('FS::svc_phone') ) {
# if the phone number has changed, need to create a new DID.
- if ( $new->phonenum ne $old->phonenum ) {
+ if ( $new->phonenum ne $old->phonenum || $new->countrycode ne $old->countrycode ) {
# deactivate/unlink/close the old DID
# and create/link the new one
$error = $self->export_delete($old)
-----------------------------------------------------------------------
Summary of changes:
FS/FS/part_export/a2billing.pm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
More information about the freeside-commits
mailing list