summaryrefslogtreecommitdiff
path: root/FS
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2014-12-12 17:09:24 -0800
committerIvan Kohler <ivan@freeside.biz>2014-12-12 17:09:24 -0800
commit359a6c266813ba42ae534a900da36c5885984207 (patch)
tree1469898edef9bfe4a9d9974684367b0f85aa91f9 /FS
parente4278a4de86f87a4a25c6cbdd93fd9f650bbccf0 (diff)
option to separate customer and package display, RT#32301
Diffstat (limited to 'FS')
-rw-r--r--FS/FS/part_pkg/agent.pm21
1 files 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;