diff options
author | Christopher Burger <burgerc@freeside.biz> | 2017-11-28 20:45:12 -0500 |
---|---|---|
committer | Christopher Burger <burgerc@freeside.biz> | 2017-11-28 20:45:12 -0500 |
commit | abfb5eb4df9efd4be4fbf6ef60e770505e0f4151 (patch) | |
tree | 0ebb0d3345e07a580ab35682d9496008bc55650c /FS/FS | |
parent | 45d02884d15d18e67c1c70cca05c8905243b8117 (diff) |
RT# 24643 - fixed error in saving waive setup fee flag when not selected
Diffstat (limited to 'FS/FS')
-rw-r--r-- | FS/FS/cust_pkg.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/FS/FS/cust_pkg.pm b/FS/FS/cust_pkg.pm index c70a6795f..7d683235b 100644 --- a/FS/FS/cust_pkg.pm +++ b/FS/FS/cust_pkg.pm @@ -2372,7 +2372,8 @@ sub change { $same_pkgpart = 0; } - $self->set('waive_setup', $opt->{'waive_setup'}) if $opt->{'waive_setup'}; + if ($opt->{'waive_setup'}) { $self->set('waive_setup', $opt->{'waive_setup'}) } + else { $self->set('waive_setup', ''); } # Before going any further here: if the package is still in the pre-setup # state, it's safe to modify it in place. No need to charge/credit for |