X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fpart_export%2Fpbxware.pm;h=36b1a2a828d139ae923f40e904b072798ed7aa76;hb=b92ac439205c878ab88510a18e1336d34ec7d8e8;hp=e647dce7544a0f07132ab385ae41439b5358ee7b;hpb=f7778ade37e3b5d4efed7757e252dc826275bd60;p=freeside.git diff --git a/FS/FS/part_export/pbxware.pm b/FS/FS/part_export/pbxware.pm index e647dce75..36b1a2a82 100644 --- a/FS/FS/part_export/pbxware.pm +++ b/FS/FS/part_export/pbxware.pm @@ -57,7 +57,7 @@ returns an error message. If there are no new CDRs, returns nothing. # map their column names to cdr fields # (warning: API docs are not quite accurate here) our %column_map = ( - 'Tenant' => 'subscriber', + 'Tenant' => 'accountcode', 'From' => 'src', 'To' => 'dst', 'Date/Time' => 'startdate', @@ -140,6 +140,11 @@ sub import_cdrs { uniqueid => $uniqueid, ); @hash{@names} = @$row; + # strip non-numeric junk that sometimes gets appended to these (it + # causes problems creating Freeside detail records) + foreach (qw(src dst)) { + $hash{$_} =~ s/\D*$//; + } my $cdr = FS::cdr->new(\%hash); $error = $cdr->insert;