[freeside-commits] freeside/FS/FS/part_pkg voip_cdr.pm, 1.120, 1.121 voip_inbound.pm, 1.9, 1.10
Erik Levinson
levinse at wavetail.420.am
Thu Jun 16 15:57:06 PDT 2011
Update of /home/cvs/cvsroot/freeside/FS/FS/part_pkg
In directory wavetail.420.am:/tmp/cvs-serv27666/FS/FS/part_pkg
Modified Files:
voip_cdr.pm voip_inbound.pm
Log Message:
add CDR rating options to ignore CDRs having configurable disposition values and having particular cdrtypenum values, RT10091
Index: voip_cdr.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/part_pkg/voip_cdr.pm,v
retrieving revision 1.120
retrieving revision 1.121
diff -u -w -d -r1.120 -r1.121
--- voip_cdr.pm 9 Jun 2011 02:14:45 -0000 1.120
+++ voip_cdr.pm 16 Jun 2011 22:57:04 -0000 1.121
@@ -155,6 +155,12 @@
'use_cdrtypenum' => { 'name' => 'Do not charge for CDRs where the CDR Type is not set to: ',
},
+ 'ignore_cdrtypenum' => { 'name' => 'Do not charge for CDRs where the CDR Type is set to: ',
+ },
+
+ 'ignore_disposition' => { 'name' => 'Do not charge for CDRs where the Disposition is set to any of these (comma-separated) values: ',
+ },
+
'skip_dst_prefix' => { 'name' => 'Do not charge for CDRs where the destination number starts with any of these values: ',
},
@@ -270,7 +276,9 @@
domestic_prefix international_prefix
disable_tollfree
use_amaflags use_disposition
- use_disposition_taqua use_carrierid use_cdrtypenum
+ use_disposition_taqua use_carrierid
+ use_cdrtypenum ignore_cdrtypenum
+ ignore_disposition
skip_dcontext skip_dst_prefix
skip_dstchannel_prefix skip_src_length_more
noskip_src_length_accountcode_tollfree
@@ -877,6 +885,8 @@
use_disposition_taqua
use_carrierid
use_cdrtypenum
+ ignore_cdrtypenum
+ ignore_disposition
skip_dst_prefix
skip_dcontext
skip_dstchannel_prefix
@@ -899,6 +909,10 @@
return "disposition != 100"
if $opt{'use_disposition_taqua'} && $cdr->disposition != 100;
+ return "disposition IN ( $opt{'ignore_disposition'} )"
+ if $opt{'ignore_disposition'} =~ /\S/
+ && grep { $cdr->disposition eq $_ } split(/\s*,\s*/, $opt{'ignore_disposition'});
+
return "carrierid != $opt{'use_carrierid'}"
if length($opt{'use_carrierid'})
&& $cdr->carrierid ne $opt{'use_carrierid'} #ne otherwise 0 matches ''
@@ -908,6 +922,10 @@
if length($opt{'use_cdrtypenum'})
&& $cdr->cdrtypenum ne $opt{'use_cdrtypenum'}; #ne otherwise 0 matches ''
+ return "cdrtypenum == $opt{'ignore_cdrtypenum'}"
+ if length($opt{'ignore_cdrtypenum'})
+ && $cdr->cdrtypenum eq $opt{'ignore_cdrtypenum'}; #eq otherwise 0 matches ''
+
foreach(split(',',$opt{'skip_dst_prefix'})) {
return "dst starts with '$_'"
if length($_) && substr($cdr->dst,0,length($_)) eq $_;
Index: voip_inbound.pm
===================================================================
RCS file: /home/cvs/cvsroot/freeside/FS/FS/part_pkg/voip_inbound.pm,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -w -d -r1.9 -r1.10
--- voip_inbound.pm 16 Jun 2011 19:42:03 -0000 1.9
+++ voip_inbound.pm 16 Jun 2011 22:57:04 -0000 1.10
@@ -82,6 +82,12 @@
'use_cdrtypenum' => { 'name' => 'Do not charge for CDRs where the CDR Type is not set to: ',
},
+ 'ignore_cdrtypenum' => { 'name' => 'Do not charge for CDRs where the CDR Type is set to: ',
+ },
+
+ 'ignore_disposition' => { 'name' => 'Do not charge for CDRs where the Disposition is set to any of these (comma-separated) values: ',
+ },
+
'skip_dcontext' => { 'name' => 'Do not charge for CDRs where the dcontext is set to any of these (comma-separated) values:',
},
@@ -152,7 +158,9 @@
default_prefix
disable_tollfree
use_amaflags use_disposition
- use_disposition_taqua use_carrierid use_cdrtypenum
+ use_disposition_taqua use_carrierid
+ use_cdrtypenum ignore_cdrtypenum
+ ignore_disposition
skip_dcontext skip_dstchannel_prefix
skip_dst_length_less skip_lastapp
use_duration
@@ -329,6 +337,8 @@
use_disposition_taqua
use_carrierid
use_cdrtypenum
+ ignore_cdrtypenum
+ ignore_disposition
skip_dcontext
skip_dstchannel_prefix
skip_dst_length_less
@@ -348,6 +358,10 @@
return "disposition != 100"
if $opt{'use_disposition_taqua'} && $cdr->disposition != 100;
+ return "disposition IN ( $opt{'ignore_disposition'} )"
+ if $opt{'ignore_disposition'} =~ /\S/
+ && grep { $cdr->disposition eq $_ } split(/\s*,\s*/, $opt{'ignore_disposition'});
+
return "carrierid != $opt{'use_carrierid'}"
if length($opt{'use_carrierid'})
&& $cdr->carrierid ne $opt{'use_carrierid'} #ne otherwise 0 matches ''
@@ -357,6 +371,10 @@
if length($opt{'use_cdrtypenum'})
&& $cdr->cdrtypenum ne $opt{'use_cdrtypenum'}; #ne otherwise 0 matches ''
+ return "cdrtypenum == $opt{'ignore_cdrtypenum'}"
+ if length($opt{'ignore_cdrtypenum'})
+ && $cdr->cdrtypenum eq $opt{'ignore_cdrtypenum'}; #eq otherwise 0 matches ''
+
return "dcontext IN ( $opt{'skip_dcontext'} )"
if $opt{'skip_dcontext'} =~ /\S/
&& grep { $cdr->dcontext eq $_ } split(/\s*,\s*/, $opt{'skip_dcontext'});
More information about the freeside-commits
mailing list