From 359a6c266813ba42ae534a900da36c5885984207 Mon Sep 17 00:00:00 2001 From: Ivan Kohler Date: Fri, 12 Dec 2014 17:09:24 -0800 Subject: [PATCH] option to separate customer and package display, RT#32301 --- FS/FS/part_pkg/agent.pm | 21 ++++++++++++++++++--- 1 file changed, 18 insertions(+), 3 deletions(-) diff --git a/FS/FS/part_pkg/agent.pm b/FS/FS/part_pkg/agent.pm index 99b77494f..bb8a26df5 100644 --- a/FS/FS/part_pkg/agent.pm +++ b/FS/FS/part_pkg/agent.pm @@ -39,6 +39,10 @@ $me = '[FS::part_pkg::agent]'; 'type' => 'checkbox', }, + 'display_separate_cust'=> { 'name' => 'Separate customer from package display on invoices', + 'type' => 'checkbox', + }, + }, 'fieldorder' => [qw( cutoff_day add_full_period no_pkg_prorate ) ], @@ -100,12 +104,14 @@ 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. ': ' @@ -162,12 +168,21 @@ sub calc_recur { $pkg_charge += $quantity * $recur_charge; - push @$details, $pkg_details - if $pkg_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; + } + }; + $total_agent_charge += $pkg_charge; } #foreach $cust_pkg + push @$details, ' ' if $cust_details; + } #foreach $cust_main } #foreach $agent; -- 2.11.0