summaryrefslogtreecommitdiff
path: root/FS/FS/part_pkg/agent.pm
diff options
context:
space:
mode:
authorIvan Kohler <ivan@freeside.biz>2014-12-12 17:09:23 -0800
committerIvan Kohler <ivan@freeside.biz>2014-12-12 17:09:23 -0800
commit6bab3cf66992f581d35ae57c633a81e8503d5c35 (patch)
treea0e29a0ba1cd459a909acdbe1291509485d47e99 /FS/FS/part_pkg/agent.pm
parenta81ff71c918e7a82ccd6646351734ce74e8e4dd3 (diff)
option to separate customer and package display, RT#32301
Diffstat (limited to 'FS/FS/part_pkg/agent.pm')
-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 0e89f42..37e7d9d 100644
--- a/FS/FS/part_pkg/agent.pm
+++ b/FS/FS/part_pkg/agent.pm
@@ -36,6 +36,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 ) ],
@@ -97,12 +101,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. ': '
@@ -159,12 +165,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;