From 1fb17d7c4fe99b48d42ae89b1241e9447d4ed699 Mon Sep 17 00:00:00 2001 From: ivan Date: Fri, 12 Sep 2008 21:55:27 +0000 Subject: support multiple internal_prefixen --- FS/FS/part_pkg/voip_cdr.pm | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/FS/FS/part_pkg/voip_cdr.pm b/FS/FS/part_pkg/voip_cdr.pm index 979134a5a..3006d6f34 100644 --- a/FS/FS/part_pkg/voip_cdr.pm +++ b/FS/FS/part_pkg/voip_cdr.pm @@ -80,7 +80,7 @@ tie my %temporalities, 'Tie::IxHash', # 'type' => 'checkbox', # }, - 'international_prefix' => { 'name' => 'Destination prefix for international CDR records', + 'international_prefix' => { 'name' => 'Destination prefix(es) for international CDR records. Separate multiple options with commas.', 'default' => '011', }, @@ -277,10 +277,15 @@ sub calc_recur { # $dest =~ s/\@(.*)$// and $siphost = $1; # @10.54.32.1, @sip.example.com my $intl = $self->option('international_prefix') || '011'; + my @intl = (); + if ( $intl =~ /,/ ) { + @intl = split(/\s*,\s*/, $intl); + } else { + @intl = ($intl); #determine the country code my $countrycode; - if ( $number =~ /^$intl(((\d)(\d))(\d))(\d+)$/ + if ( grep { $number =~ /^$_(((\d)(\d))(\d))(\d+)$/ } @intl || $number =~ /^\+(((\d)(\d))(\d))(\d+)$/ ) { -- cgit v1.2.1