diff options
author | Ivan Kohler <ivan@freeside.biz> | 2017-07-14 14:27:49 -0700 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2017-07-14 14:27:49 -0700 |
commit | 473825b64a85556abafacc032b4be276133ddc08 (patch) | |
tree | da75a007d9b5628d27b2f473f3063b321057bdab /FS/FS | |
parent | 679a06edb0386712301715acf4f369388efa4b3f (diff) |
optimize rate display, RT#72030
Diffstat (limited to 'FS/FS')
-rw-r--r-- | FS/FS/rate_region.pm | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/FS/FS/rate_region.pm b/FS/FS/rate_region.pm index fec540ec7..0a501a785 100644 --- a/FS/FS/rate_region.pm +++ b/FS/FS/rate_region.pm @@ -304,6 +304,36 @@ sub prefixes_short { $out; } +sub prefixes_short_sql { + my $self = shift; + + my $countrycode = ''; + my $out = ''; + + foreach my $prefix (sort split(',', $self->prefixes)) { + my($cc, $npa) = split(' ', $prefix); + + if ( $countrycode ne $cc ) { + $out =~ s/, $//; + $countrycode = $cc; + $out.= " +$countrycode "; + } + if ( $countrycode eq '1' ) { + #$out .= '('. substr( $npa, 0, 3 ). ')'; + $out .= substr( $npa, 0, 3 ); + $out .= ' '. substr( $npa, 3 ) if length($npa) > 3; + } else { + $out .= $npa; + } +#XXX have to implement this here too if we ever actually used the nxx field +# $out .= '-'. $rate_prefix->nxx if $rate_prefix->nxx; + $out .= ', '; + } + $out =~ s/, $//; + + $out; +} + =back =head1 BUGS |