X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fpart_pkg%2Fagent.pm;h=e24ebe11e0b24a6c85e8bfadfb05f1f76bc79ed2;hb=2c3d4dac5b3e159a7e5bd4df457db5f148340a31;hp=6d5af91597a3cdde8b6ab828afa4c00ecf1bd241;hpb=26cd0bcebfd35aa805162718a2e27206ff65e4e4;p=freeside.git diff --git a/FS/FS/part_pkg/agent.pm b/FS/FS/part_pkg/agent.pm index 6d5af9159..e24ebe11e 100644 --- a/FS/FS/part_pkg/agent.pm +++ b/FS/FS/part_pkg/agent.pm @@ -43,7 +43,7 @@ $me = '[FS::part_pkg::agent]'; 'fieldorder' => [qw( cutoff_day add_full_period no_pkg_prorate ) ], - 'weight' => 51, + 'weight' => 52, ); @@ -59,6 +59,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; @@ -106,6 +107,10 @@ sub calc_recur { my $pkg_details = $cust_main->name_short. ': '; #name? + 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 @@ -140,8 +145,8 @@ 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 ). ')' + ' ('. time2str($date_format, $pkg_start). + ' - '. time2str($date_format, $pkg_end ). ')' if $recur_charge; $pkg_charge += $recur_charge;