summaryrefslogtreecommitdiff
path: root/FS/FS/part_pkg
diff options
context:
space:
mode:
authorChristopher Burger <burgerc@freeside.biz>2018-05-15 09:52:08 -0400
committerChristopher Burger <burgerc@freeside.biz>2018-05-15 09:52:08 -0400
commit1ef463d50def1a8af49a8687ae4fc53f40311ab4 (patch)
treefe7e9c6b5d4e63ad1fe19a4996fa459a251bd04a /FS/FS/part_pkg
parent780141c7e972a8b55212515049bf3d51ef590466 (diff)
Revert "RT# 77964 - Placed waive setup fee check back to billing.pm, and added check for prorate package in billing.pm"
This reverts commit d263897b2b9247340901f93c57f44c7f85d87d37.
Diffstat (limited to 'FS/FS/part_pkg')
-rw-r--r--FS/FS/part_pkg/flat.pm28
1 files changed, 16 insertions, 12 deletions
diff --git a/FS/FS/part_pkg/flat.pm b/FS/FS/part_pkg/flat.pm
index cfee584..0bc3860 100644
--- a/FS/FS/part_pkg/flat.pm
+++ b/FS/FS/part_pkg/flat.pm
@@ -118,22 +118,26 @@ sub calc_setup {
return 0 if $self->prorate_setup($cust_pkg, $sdate);
- my $i = 0;
- my $count = $self->option( 'additional_count', 'quiet' ) || 0;
- while ($i < $count) {
- push @$details, $self->option( 'additional_info' . $i++ );
- }
+ if (!$cust_pkg->waive_setup) {
+ my $i = 0;
+ my $count = $self->option( 'additional_count', 'quiet' ) || 0;
+ while ($i < $count) {
+ push @$details, $self->option( 'additional_info' . $i++ );
+ }
- my $charge = $self->base_setup($cust_pkg, $sdate, $details);
+ my $charge = $self->base_setup($cust_pkg, $sdate, $details);
- my $discount = 0;
- if ( $charge > 0 ) {
- $param->{'setup_charge'} = $charge;
- $discount = $self->calc_discount($cust_pkg, $sdate, $details, $param);
- delete $param->{'setup_charge'};
+ my $discount = 0;
+ if ( $charge > 0 ) {
+ $param->{'setup_charge'} = $charge;
+ $discount = $self->calc_discount($cust_pkg, $sdate, $details, $param);
+ delete $param->{'setup_charge'};
+ }
+
+ return sprintf( '%.2f', ($cust_pkg->quantity || 1) * ($charge - $discount) );
}
- sprintf( '%.2f', ($cust_pkg->quantity || 1) * ($charge - $discount) );
+ return;
}