Merge branch 'master' of git.freeside.biz:/home/git/freeside
[freeside.git] / FS / FS / part_pkg / voip_cdr.pm
1 package FS::part_pkg::voip_cdr;
2 use base qw( FS::part_pkg::recur_Common );
3
4 use strict;
5 use vars qw( $DEBUG %info );
6 use Tie::IxHash;
7 use Date::Format;
8 use Text::CSV_XS;
9 use FS::Conf;
10 use FS::Record qw(qsearchs qsearch);
11 use FS::cdr;
12 use FS::detail_format;
13 #use FS::rate;
14 #use FS::rate_prefix;
15 #use FS::rate_detail;
16
17 $DEBUG = 0;
18
19 tie my %cdr_svc_method, 'Tie::IxHash',
20   'svc_phone.phonenum' => 'Phone numbers (svc_phone.phonenum)',
21   'svc_pbx.title'      => 'PBX name (svc_pbx.title)',
22   'svc_pbx.svcnum'     => 'Freeside service # (svc_pbx.svcnum)',
23   'svc_pbx.ip.src'     => 'PBX name to source IP address',
24   'svc_pbx.ip.dst'     => 'PBX name to destination IP address',
25 ;
26
27 tie my %rating_method, 'Tie::IxHash',
28   'prefix' => 'Rate calls by using destination prefix to look up a region and rate according to the internal prefix and rate tables',
29 #  'upstream' => 'Rate calls based on upstream data: If the call type is "1", map the upstream rate ID directly to an internal rate (rate_detail), otherwise, pass the upstream price through directly.',
30   'upstream_simple' => 'Simply pass through and charge the "upstream_price" amount.',
31   'single_price' => 'A single price per minute for all calls.',
32 ;
33
34 #tie my %cdr_location, 'Tie::IxHash',
35 #  'internal' => 'Internal: CDR records imported into the internal CDR table',
36 #  'external' => 'External: CDR records queried directly from an external '.
37 #                'Asterisk (or other?) CDR table',
38 #;
39
40 tie my %temporalities, 'Tie::IxHash',
41   'upcoming'  => "Upcoming (future)",
42   'preceding' => "Preceding (past)",
43 ;
44
45 tie my %granularity, 'Tie::IxHash', FS::rate_detail::granularities();
46
47 # previously "1" was "ignore"
48 tie my %unrateable_opts, 'Tie::IxHash',
49   '' => 'Exit with a fatal error',
50   1  => 'Ignore and continue',
51   2  => 'Flag for later review',
52 ;
53
54 tie my %detail_formats, 'Tie::IxHash',
55   '' => '',
56   FS::cdr::invoice_formats()
57 ;
58
59 %info = (
60   'name' => 'VoIP rating by plan of CDR records in an internal (or external) SQL table',
61   'shortname' => 'VoIP/telco CDR rating (standard)',
62   'inherit_fields' => [ 'prorate_Mixin', 'global_Mixin' ],
63   'fields' => {
64     'suspend_bill' => { 'name' => 'Continue recurring billing while suspended',
65                         'type' => 'checkbox',
66                       },
67     #false laziness w/flat.pm
68     'recur_temporality' => { 'name' => 'Charge recurring fee for period',
69                              'type' => 'select',
70                              'select_options' => \%temporalities,
71                            },
72
73     'cutoff_day'    => { 'name' => 'Billing Day (1 - 28) for prorating or '.
74                                    'subscription',
75                          'default' => '1',
76                        },
77     'recur_method'  => { 'name' => 'Recurring fee method',
78                          #'type' => 'radio',
79                          #'options' => \%recur_method,
80                          'type' => 'select',
81                          'select_options' => \%FS::part_pkg::recur_Common::recur_method,
82                        },
83
84     'cdr_svc_method' => { 'name' => 'CDR service matching method',
85 #                          'type' => 'radio',
86                           'type' => 'select',
87                           'select_options' => \%cdr_svc_method,
88                         },
89
90     'rating_method' => { 'name' => 'Rating method',
91                          'type' => 'radio',
92                          'options' => \%rating_method,
93                        },
94
95     'ratenum'   => { 'name' => 'Rate plan',
96                      'type' => 'select',
97                      'select_table' => 'rate',
98                      'select_key'   => 'ratenum',
99                      'select_label' => 'ratename',
100                    },
101                    
102     'intrastate_ratenum'   => { 'name' => 'Optional alternate intrastate rate plan',
103                      'type' => 'select',
104                      'select_table' => 'rate',
105                      'select_key'   => 'ratenum',
106                      'select_label' => 'ratename',
107                      'disable_empty' => 0,
108                      'empty_label'   => '',
109                    },
110
111     'calls_included' => { 'name' => 'Number of calls included at no usage charge', },
112
113     'min_included' => { 'name' => 'Minutes included when using the "single price per minute" or "prefix" rating method',
114                     },
115
116     'min_charge' => { 'name' => 'Charge per minute when using "single price per minute" rating method',
117                     },
118
119     'sec_granularity' => { 'name' => 'Granularity when using "single price per minute" rating method',
120                            'type' => 'select',
121                            'select_options' => \%granularity,
122                          },
123
124     'ignore_unrateable' => { 'name' => 'Handling of calls without a rate in the rate table',
125                              'type' => 'select',
126                              'select_options' => \%unrateable_opts,
127                            },
128
129     'default_prefix' => { 'name'    => 'Default prefix optionally prepended to customer DID numbers when searching for CDR records',
130                           'default' => '+1',
131                         },
132
133     'disable_src' => { 'name' => 'Disable rating of CDR records based on the "src" field in addition to "charged_party"',
134                        'type' => 'checkbox'
135                      },
136
137     'domestic_prefix' => { 'name'    => 'Destination prefix for domestic CDR records',
138                            'default' => '1',
139                          },
140
141 #    'domestic_prefix_required' => { 'name' => 'Require explicit destination prefix for domestic CDR records',
142 #                                    'type' => 'checkbox',
143 #                                  },
144
145     'international_prefix' => { 'name'    => 'Destination prefix for international CDR records',
146                                 'default' => '011',
147                               },
148
149     'disable_tollfree' => { 'name' => 'Disable automatic toll-free processing',
150                             'type' => 'checkbox',
151                           },
152
153     'use_amaflags' => { 'name' => 'Only charge for CDRs where the amaflags field is set to "2" ("BILL"/"BILLING").',
154                         'type' => 'checkbox',
155                       },
156
157     'use_carrierid' => { 'name' => 'Only charge for CDRs where the Carrier ID is set to any of these (comma-separated) values: ',
158                          },
159
160     'use_cdrtypenum' => { 'name' => 'Only charge for CDRs where the CDR Type is set to: ',
161                          },
162     
163     'ignore_cdrtypenum' => { 'name' => 'Do not charge for CDRs where the CDR Type is set to: ',
164                          },
165     
166     'ignore_disposition' => { 'name' => 'Do not charge for CDRs where the Disposition is set to any of these (comma-separated) values: ',
167                          },
168     
169     'disposition_in' => { 'name' => 'Only charge for CDRs where the Disposition is set to any of these (comma-separated) values: ',
170                          },
171
172     'skip_dst_prefix' => { 'name' => 'Do not charge for CDRs where the destination number starts with any of these values: ',
173     },
174
175     'skip_dcontext' => { 'name' => 'Do not charge for CDRs where the dcontext is set to any of these (comma-separated) values: ',
176                        },
177
178     'skip_dstchannel_prefix' => { 'name' => 'Do not charge for CDRs where the dstchannel starts with:',
179                                 },
180
181     'skip_src_length_more' => { 'name' => 'Do not charge for CDRs where the source is more than this many digits:',
182                               },
183
184     'noskip_src_length_accountcode_tollfree' => { 'name' => 'Do charge for CDRs where source is equal or greater than the specified digits, when accountcode is toll free',
185                                                   'type' => 'checkbox',
186                                                 },
187
188     'accountcode_tollfree_ratenum' => {
189       'name' => 'Optional alternate rate plan when accountcode is toll free: ',
190       'type' => 'select',
191       'select_table'  => 'rate',
192       'select_key'    => 'ratenum',
193       'select_label'  => 'ratename',
194       'disable_empty' => 0,
195       'empty_label'   => '',
196     },
197
198     'skip_dst_length_less' => { 'name' => 'Do not charge for CDRs where the destination is less than this many digits:',
199                               },
200
201     'noskip_dst_length_accountcode_tollfree' => { 'name' => 'Do charge for CDRs where dst is less than the specified digits, when accountcode is toll free',
202                                                   'type' => 'checkbox',
203                                                 },
204
205     'skip_lastapp' => { 'name' => 'Do not charge for CDRs where the lastapp matches this value: ',
206                       },
207
208     'skip_max_callers' => { 'name' => 'Do not charge for CDRs where max_callers is less than or equal to this value: ',
209                           },
210
211     'use_duration'   => { 'name' => 'Calculate usage based on the duration field instead of the billsec field',
212                           'type' => 'checkbox',
213                         },
214
215     '411_rewrite' => { 'name' => 'Rewrite these (comma-separated) destination numbers to 411 for rating purposes (also ignore any carrierid check): ',
216                       },
217
218     #false laziness w/cdr_termination.pm
219     'output_format' => { 'name' => 'CDR display format for invoices',
220                          'type' => 'select',
221                          'select_options' => \%detail_formats,
222                          'default'        => 'default', #XXX test
223                        },
224
225     'selfservice_format' => 
226       { 'name' => 'CDR display format for selfservice',
227         'type' => 'select',
228         'select_options' => \%detail_formats,
229         'default' => 'default'
230       },
231     'selfservice_inbound_format' =>
232       { 'name' => 'Inbound CDR display format for selfservice',
233         'type' => 'select',
234         'select_options' => \%detail_formats,
235         'default' => ''
236       },
237
238     'usage_section' => { 'name' => 'Section in which to place usage charges (whether separated or not): ',
239                        },
240
241     'summarize_usage' => { 'name' => 'Include usage summary with recurring charges when usage is in separate section',
242                           'type' => 'checkbox',
243                         },
244
245     'usage_mandate' => { 'name' => 'Always put usage details in separate section',
246                           'type' => 'checkbox',
247                        },
248     #eofalse
249
250     'usage_nozero' => { 'name' => 'Omit details for included / no-charge calls.',
251                         'type' => 'checkbox',
252                       },
253
254     'bill_every_call' => { 'name' => 'Generate an invoice immediately for every call (as well any setup fee, upon first payment).  Useful for prepaid.',
255                            'type' => 'checkbox',
256                          },
257
258     'bill_inactive_svcs' => { 'name' => 'Bill for all phone numbers that were active during the billing period',
259                               'type' => 'checkbox',
260                             },
261
262     'count_available_phones' => { 'name' => 'Consider for tax purposes the number of lines to be svc_phones that may be provisioned rather than those that actually are.',
263                            'type' => 'checkbox',
264                          },
265
266     #XXX also have option for an external db?  these days we suck them into ours
267 #    'cdr_location' => { 'name' => 'CDR database location'
268 #                        'type' => 'select',
269 #                        'select_options' => \%cdr_location,
270 #                        'select_callback' => {
271 #                          'external' => {
272 #                            'enable' => [ 'datasrc', 'username', 'password' ],
273 #                          },
274 #                          'internal' => {
275 #                            'disable' => [ 'datasrc', 'username', 'password' ],
276 #                          }
277 #                        },
278 #                      },
279 #    'datasrc' => { 'name' => 'DBI data source for external CDR table',
280 #                   'disabled' => 'Y',
281 #                 },
282 #    'username' => { 'name' => 'External database username',
283 #                    'disabled' => 'Y',
284 #                  },
285 #    'password' => { 'name' => 'External database password',
286 #                    'disabled' => 'Y',
287 #                  },
288
289   },
290   'fieldorder' => [qw(
291                        recur_temporality
292                        recur_method cutoff_day ),
293                        FS::part_pkg::prorate_Mixin::fieldorder,
294                     qw(
295                        cdr_svc_method
296                        rating_method ratenum intrastate_ratenum 
297                        calls_included
298                        min_charge min_included sec_granularity
299                        ignore_unrateable
300                        default_prefix
301                        disable_src
302                        domestic_prefix international_prefix
303                        disable_tollfree
304                        use_amaflags
305                        use_carrierid 
306                        use_cdrtypenum ignore_cdrtypenum
307                        ignore_disposition disposition_in
308                        skip_dcontext skip_dst_prefix 
309                        skip_dstchannel_prefix skip_src_length_more 
310                        noskip_src_length_accountcode_tollfree
311                        accountcode_tollfree_ratenum
312                        skip_dst_length_less
313                        noskip_dst_length_accountcode_tollfree
314                        skip_lastapp
315                        skip_max_callers
316                        use_duration
317                        411_rewrite
318                        output_format 
319                        selfservice_format selfservice_inbound_format
320                        usage_mandate summarize_usage usage_section
321                        bill_every_call bill_inactive_svcs
322                        count_available_phones suspend_bill 
323                      )
324                   ],
325   'weight' => 40,
326 );
327
328 sub price_info {
329     my $self = shift;
330     my $str = $self->SUPER::price_info;
331     $str .= " plus usage" if $str;
332     $str;
333 }
334
335 sub calc_recur {
336   my $self = shift;
337   my($cust_pkg, $sdate, $details, $param ) = @_;
338
339   my $charges = 0;
340
341   $charges += $self->calc_usage(@_);
342   $charges += $self->calc_recur_Common(@_);
343
344   $charges;
345
346 }
347
348 # use the default
349 #sub calc_cancel {
350 #  my $self = shift;
351 #  my($cust_pkg, $sdate, $details, $param ) = @_;
352 #
353 #  $self->calc_usage(@_);
354 #}
355
356 #false laziness w/voip_sqlradacct calc_recur resolve it if that one ever gets used again
357
358 sub calc_usage {
359   my $self = shift;
360   my($cust_pkg, $sdate, $details, $param ) = @_;
361
362   #my $last_bill = $cust_pkg->last_bill;
363   my $last_bill = $cust_pkg->get('last_bill'); #->last_bill falls back to setup
364
365   return 0
366     if $self->recur_temporality eq 'preceding'
367     && ( $last_bill eq '' || $last_bill == 0 );
368
369   my $charges = 0;
370
371   my $included_min = $self->option('min_included', 1) || 0; #single price rating
372   my $included_calls = $self->option('calls_included', 1) || 0;
373
374   my $cdr_svc_method    = $self->option('cdr_svc_method',1)||'svc_phone.phonenum';
375   my $rating_method     = $self->option('rating_method') || 'prefix';
376   my $region_group_included_min = $self->option('min_included',1) || 0;
377   my %region_group_included_min = ();
378
379   my $output_format     = $self->option('output_format', 'Hush!')
380                           || ( $rating_method eq 'upstream_simple'
381                                  ? 'simple'
382                                  : 'default'
383                              );
384
385   my $usage_nozero      = $self->option('usage_nozero', 1);
386
387   my $formatter = FS::detail_format->new($output_format, buffer => $details);
388
389   my $use_duration = $self->option('use_duration');
390
391   my($svc_table, $svc_field, $by_ip_addr) = split('\.', $cdr_svc_method);
392
393   my @cust_svc;
394   if( $self->option('bill_inactive_svcs',1) ) {
395     #XXX in this mode do we need to restrict the set of CDRs by date also?
396     @cust_svc = $cust_pkg->h_cust_svc($$sdate, $last_bill);
397   }
398   else {
399     @cust_svc = $cust_pkg->cust_svc;
400   }
401   @cust_svc = grep { $_->part_svc->svcdb eq $svc_table } @cust_svc;
402
403   foreach my $cust_svc (@cust_svc) {
404
405     my $svc_x;
406     if( $self->option('bill_inactive_svcs',1) ) {
407       $svc_x = $cust_svc->h_svc_x($$sdate, $last_bill);
408     }
409     else {
410       $svc_x = $cust_svc->svc_x;
411     }
412
413     my %options = (
414         'disable_src'    => $self->option('disable_src'),
415         'default_prefix' => $self->option('default_prefix'),
416         'cdrtypenum'     => $self->option('use_cdrtypenum'),
417         'status'         => '',
418         'for_update'     => 1,
419       );  # $last_bill, $$sdate )
420     if ( $svc_field eq 'svcnum' ) {
421       $options{'by_svcnum'} = 1;
422     }
423     elsif ($svc_table eq 'svc_pbx' and $svc_field eq 'ip') {
424       $options{'by_ip_addr'} = $by_ip_addr;
425     }
426
427     #my @invoice_details_sort;
428
429     #first rate any outstanding CDRs not yet rated
430     my $cdr_search = $svc_x->psearch_cdrs(%options);
431     $cdr_search->limit(1000);
432     $cdr_search->increment(0); # because we're changing their status as we go
433     while ( my $cdr = $cdr_search->fetch ) {
434
435       my $error = $cdr->rate(
436         'part_pkg'                          => $self,
437         'cust_pkg'                          => $cust_pkg,
438         'svcnum'                            => $svc_x->svcnum,
439         'single_price_included_min'         => \$included_min,
440         'region_group_included_min'         => \$region_group_included_min,
441         'region_group_included_min_hashref' => \%region_group_included_min,
442       );
443       die $error if $error; #??
444
445       $cdr_search->adjust(1) if $cdr->freesidestatus eq '';
446       # it was skipped without changing status, so increment the 
447       # offset so that we don't re-fetch it on refill
448
449     } # $cdr
450
451     #then add details to invoices & get a total
452     $options{'status'} = 'rated';
453
454     $cdr_search = $svc_x->psearch_cdrs(%options);
455     $cdr_search->limit(1000);
456     $cdr_search->increment(0);
457     while ( my $cdr = $cdr_search->fetch ) {
458       my $error;
459       # at this point we officially Do Not Care about the rating method
460       if ( $included_calls > 0 ) {
461         $included_calls--;
462         #$charges += 0, obviously
463         #but don't set the rated price to zero--there should be a record
464         $error = $cdr->set_status('no-charge');
465       }
466       else {
467         $charges += $cdr->rated_price;
468         $error = $cdr->set_status('done');
469       }
470       die $error if $error;
471       $formatter->append($cdr) unless $usage_nozero && $cdr->rated_price == 0;
472
473       $cdr_search->adjust(1) if $cdr->freesidestatus eq 'rated';
474     } #$cdr
475   }
476
477   $formatter->finish; #writes into $details
478   unshift @$details, $formatter->header if @$details;
479
480   $charges;
481 }
482
483 #returns a reason why not to rate this CDR, or false if the CDR is chargeable
484 sub check_chargable {
485   my( $self, $cdr, %flags ) = @_;
486
487   return 'amaflags != 2'
488     if $self->option_cacheable('use_amaflags') && $cdr->amaflags != 2;
489
490   return "disposition NOT IN ( ". $self->option_cacheable('disposition_in')." )"
491     if $self->option_cacheable('disposition_in') =~ /\S/
492     && !grep { $cdr->disposition eq $_ } split(/\s*,\s*/, $self->option_cacheable('disposition_in'));
493   
494   return "disposition IN ( ". $self->option_cacheable('ignore_disposition')." )"
495     if $self->option_cacheable('ignore_disposition') =~ /\S/
496     && grep { $cdr->disposition eq $_ } split(/\s*,\s*/, $self->option_cacheable('ignore_disposition'));
497
498   foreach(split(/\s*,\s*/, $self->option_cacheable('skip_dst_prefix'))) {
499     return "dst starts with '$_'"
500     if length($_) && substr($cdr->dst,0,length($_)) eq $_;
501   }
502
503   return "carrierid NOT IN ( ". $self->option_cacheable('use_carrierid'). " )"
504     if $self->option_cacheable('use_carrierid') =~ /\S/
505     && ! $flags{'da_rewrote'} #why?
506     && !grep { $cdr->carrierid eq $_ } split(/\s*,\s*/, $self->option_cacheable('use_carrierid')); #eq otherwise 0 matches ''
507
508   # unlike everything else, use_cdrtypenum is applied in FS::svc_x::get_cdrs.
509   return "cdrtypenum != ". $self->option_cacheable('use_cdrtypenum')
510     if length($self->option_cacheable('use_cdrtypenum'))
511     && $cdr->cdrtypenum ne $self->option_cacheable('use_cdrtypenum'); #ne otherwise 0 matches ''
512   
513   return "cdrtypenum == ". $self->option_cacheable('ignore_cdrtypenum')
514     if length($self->option_cacheable('ignore_cdrtypenum'))
515     && $cdr->cdrtypenum eq $self->option_cacheable('ignore_cdrtypenum'); #eq otherwise 0 matches ''
516
517   return "dcontext IN ( ". $self->option_cacheable('skip_dcontext'). " )"
518     if $self->option_cacheable('skip_dcontext') =~ /\S/
519     && grep { $cdr->dcontext eq $_ } split(/\s*,\s*/, $self->option_cacheable('skip_dcontext'));
520
521   my $len_prefix = length($self->option_cacheable('skip_dstchannel_prefix'));
522   return "dstchannel starts with ". $self->option_cacheable('skip_dstchannel_prefix')
523     if $len_prefix
524     && substr($cdr->dstchannel,0,$len_prefix) eq $self->option_cacheable('skip_dstchannel_prefix');
525
526   my $dst_length = $self->option_cacheable('skip_dst_length_less');
527   return "destination less than $dst_length digits"
528     if $dst_length && length($cdr->dst) < $dst_length
529     && ! ( $self->option_cacheable('noskip_dst_length_accountcode_tollfree')
530             && $cdr->is_tollfree('accountcode')
531          );
532
533   return "lastapp is ". $self->option_cacheable('skip_lastapp')
534     if length($self->option_cacheable('skip_lastapp')) && $cdr->lastapp eq $self->option_cacheable('skip_lastapp');
535
536   my $src_length = $self->option_cacheable('skip_src_length_more');
537   if ( $src_length ) {
538
539     if ( $self->option_cacheable('noskip_src_length_accountcode_tollfree') ) {
540
541       if ( $cdr->is_tollfree('accountcode') ) {
542         return "source less than or equal to $src_length digits"
543           if length($cdr->src) <= $src_length;
544       } else {
545         return "source more than $src_length digits"
546           if length($cdr->src) > $src_length;
547       }
548
549     } else {
550       return "source more than $src_length digits"
551         if length($cdr->src) > $src_length;
552     }
553
554   }
555
556   return "max_callers <= ". $self->option_cacheable('skip_max_callers')
557     if length($self->option_cacheable('skip_max_callers'))
558       and length($cdr->max_callers)
559       and $cdr->max_callers <= $self->option_cacheable('skip_max_callers');
560
561   #all right then, rate it
562   '';
563 }
564
565 sub is_free {
566   0;
567 }
568
569 #  This equates svc_phone records; perhaps svc_phone should have a field
570 #  to indicate it represents a line
571 sub calc_units {    
572   my($self, $cust_pkg ) = @_;
573   my $count = 0;
574   if ( $self->option('count_available_phones', 1)) {
575     map { $count += ( $_->quantity || 0 ) }
576       grep { $_->part_svc->svcdb eq 'svc_phone' }
577       $cust_pkg->part_pkg->pkg_svc;
578   } else {
579     $count = 
580       scalar(grep { $_->part_svc->svcdb eq 'svc_phone' } $cust_pkg->cust_svc);
581   }
582   $count;
583 }
584
585 sub reset_usage {
586   my ($self, $cust_pkg, %opt) = @_;
587   my @part_pkg_usage = $self->part_pkg_usage or return '';
588   warn "  resetting usage minutes\n" if $opt{debug};
589   my %cust_pkg_usage = map { $_->pkgusagepart, $_ } $cust_pkg->cust_pkg_usage;
590   foreach my $part_pkg_usage (@part_pkg_usage) {
591     my $part = $part_pkg_usage->pkgusagepart;
592     my $usage = $cust_pkg_usage{$part} ||
593                 FS::cust_pkg_usage->new({
594                     'pkgnum'        => $cust_pkg->pkgnum,
595                     'pkgusagepart'  => $part,
596                     'minutes'       => $part_pkg_usage->minutes,
597                 });
598     foreach my $cdr_usage (
599       qsearch('cdr_cust_pkg_usage', {'cdrusagenum' => $usage->cdrusagenum})
600     ) {
601       my $error = $cdr_usage->delete;
602       warn "  error resetting CDR usage: $error\n";
603     }
604
605     if ( $usage->pkgusagenum ) {
606       if ( $part_pkg_usage->rollover ) {
607         $usage->set('minutes', $part_pkg_usage->minutes + $usage->minutes);
608       } else {
609         $usage->set('minutes', $part_pkg_usage->minutes);
610       }
611       my $error = $usage->replace;
612       warn "  error resetting usage minutes: $error\n" if $error;
613     } else {
614       my $error = $usage->insert;
615       warn "  error resetting usage minutes: $error\n" if $error;
616     }
617   } #foreach $part_pkg_usage
618 }
619
620 # tells whether cust_bill_pkg_detail should return a single line for 
621 # each phonenum
622 sub sum_usage {
623   my $self = shift;
624   $self->option('output_format') =~ /^sum_/;
625 }
626
627 # and whether cust_bill should show a detail line for the service label 
628 # (separate from usage details)
629 sub hide_svc_detail {
630   my $self = shift;
631   $self->option('output_format') =~ /^sum_/;
632 }
633
634
635 1;
636