X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fpart_pkg%2Fagent.pm;h=49c2c8654f13b5bcc5c20a2f1bb527c756285a50;hb=b7cf1606a66cca95e3540f803ffa66d223f23a40;hp=6ab21d64f77c5330c65a172ecc2936904fa66508;hpb=0fb307c305e4bc2c9c27dc25a3308beae3a4d33c;p=freeside.git diff --git a/FS/FS/part_pkg/agent.pm b/FS/FS/part_pkg/agent.pm index 6ab21d64f..49c2c8654 100644 --- a/FS/FS/part_pkg/agent.pm +++ b/FS/FS/part_pkg/agent.pm @@ -1,17 +1,14 @@ package FS::part_pkg::agent; +#use base qw(FS::part_pkg::recur_Common); +use base qw(FS::part_pkg::prorate); use strict; -use vars qw(@ISA $DEBUG $me %info); +use vars qw($DEBUG $me %info); use Date::Format; use FS::Record qw( qsearch ); use FS::agent; use FS::cust_main; -#use FS::part_pkg::recur_Common;; -#@ISA = qw(FS::part_pkg::recur_Common); -use FS::part_pkg::prorate; -@ISA = qw(FS::part_pkg::prorate); - $DEBUG = 0; $me = '[FS::part_pkg::agent]'; @@ -39,11 +36,19 @@ $me = '[FS::part_pkg::agent]'; 'type' => 'checkbox', }, + 'display_separate_cust'=> { 'name' => 'Separate customer from package display on invoices', + 'type' => 'checkbox', + }, + + 'cost_only' => { 'name' => 'Bill wholesale on cost only, disabling the price fallback', + 'type' => 'checkbox' + }, + }, - 'fieldorder' => [qw( cutoff_day add_full_period no_pkg_prorate ) ], + 'fieldorder' => [qw( cutoff_day add_full_period no_pkg_prorate display_separate_cust cost_only) ], - 'weight' => 51, + 'weight' => 52, ); @@ -59,6 +64,7 @@ sub calc_recur { my $conf = new FS::Conf; my $money_char = $conf->config('money_char') || '$'; + my $date_format = $conf->config('date_format') || '%m/%d/%Y'; my $total_agent_charge = 0; @@ -99,35 +105,55 @@ sub calc_recur { } $cust_main->all_pkgs; + my $cust_details = 0; + foreach my $cust_pkg ( @cust_pkg ) { warn "$me billing agent charges for pkgnum ". $cust_pkg->pkgnum. "\n" if $DEBUG; - my $pkg_details = $cust_main->name_short. ': '; #name? + my $pkg_details = ''; + + my $cust_location = $cust_pkg->cust_location; + $pkg_details .= $cust_location->locationname. ': ' + if $cust_location->locationname; + + my $part_pkg = $cust_pkg->part_pkg; + # + something to identify package... primary service probably + # no... package def for now + $pkg_details .= $part_pkg->pkg. ': '; my $pkg_charge = 0; - my $part_pkg = $cust_pkg->part_pkg; - #option to not fallback? via options above - my $pkg_setup_fee = - $part_pkg->setup_cost || $part_pkg->option('setup_fee'); - my $pkg_base_recur = - $part_pkg->recur_cost || $part_pkg->base_recur_permonth($cust_pkg); + my $quantity = $cust_pkg->quantity || 1; + + my $pkg_setup_fee = $part_pkg->setup_cost; + $pkg_setup_fee ||= $part_pkg->option('setup_fee') + unless $self->option('cost_only'); + $pkg_setup_fee ||= 0; + + my $pkg_base_recur = $part_pkg->recur_cost; + $pkg_base_recur ||= $part_pkg->base_recur_permonth($cust_pkg) + unless $self->option('cost_only'); + $pkg_base_recur ||= 0; my $pkg_start = $cust_pkg->get('setup'); if ( $pkg_start < $last_bill ) { $pkg_start = $last_bill; } elsif ( $pkg_setup_fee ) { - $pkg_charge += $pkg_setup_fee; - $pkg_details .= $money_char. sprintf('%.2f setup, ', $pkg_setup_fee ); + $pkg_charge += $quantity * $pkg_setup_fee; + $pkg_details .= $money_char. + sprintf('%.2f setup', $quantity * $pkg_setup_fee ); + $pkg_details .= sprintf(" ($quantity \@ $money_char". '%.2f)', + $pkg_setup_fee ) + if $quantity > 1; + $pkg_details .= ', '; } my $pkg_end = $cust_pkg->get('cancel'); $pkg_end = ( !$pkg_end || $pkg_end > $$sdate ) ? $$sdate : $pkg_end; - my $pkg_recur_charge = $prorate_ratio * $pkg_base_recur; $pkg_recur_charge *= ( $pkg_end - $pkg_start ) / ( $$sdate - $last_bill ) @@ -135,19 +161,33 @@ sub calc_recur { my $recur_charge += $pkg_recur_charge; - $pkg_details .= $money_char. sprintf('%.2f', $recur_charge ). - ' ('. time2str('%x', $pkg_start). - ' - '. time2str('%x', $pkg_end ). ')' - if $recur_charge; + if ( $recur_charge ) { + $pkg_details .= $money_char. + sprintf('%.2f', $quantity * $recur_charge ); + $pkg_details .= sprintf(" ($quantity \@ $money_char". '%.2f)', + $recur_charge ) + if $quantity > 1; + $pkg_details .= ' ('. time2str($date_format, $pkg_start). + ' - '. time2str($date_format, $pkg_end ). ')'; + } + + $pkg_charge += $quantity * $recur_charge; - $pkg_charge += $recur_charge; + if ( $pkg_charge ) { + if ( $self->option('display_separate_cust') ) { + push @$details, $cust_main->name.':' unless $cust_details++; + push @$details, ' '.$pkg_details; + } else { + push @$details, $cust_main->name_short.': '. $pkg_details; + } + }; - push @$details, $pkg_details - if $pkg_charge; $total_agent_charge += $pkg_charge; } #foreach $cust_pkg + push @$details, ' ' if $cust_details; + } #foreach $cust_main } #foreach $agent; @@ -160,13 +200,11 @@ sub calc_recur { sub can_discount { 0; } -sub hide_svc_detail { - 1; -} +sub hide_svc_detail { 1; } -sub is_free { - 0; -} +sub is_free { 0; } + +sub can_usageprice { 0; } 1;