summaryrefslogtreecommitdiff
path: root/FS/FS/cust_pkg_discount.pm
diff options
context:
space:
mode:
authorivan <ivan>2011-11-22 04:35:09 +0000
committerivan <ivan>2011-11-22 04:35:09 +0000
commitee48f55cdc11b2573f66234b6077d4c2c6ceb4d0 (patch)
tree8d305d76d72d49ecb9e9f6f56e129a5b15d13529 /FS/FS/cust_pkg_discount.pm
parentbc217aee44661770c9c1c743ede8e7b7a906fafb (diff)
fix incorrect error message: Discount does not apply to setup fees, and package has no recurring, RT#15257
Diffstat (limited to 'FS/FS/cust_pkg_discount.pm')
-rw-r--r--FS/FS/cust_pkg_discount.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/FS/FS/cust_pkg_discount.pm b/FS/FS/cust_pkg_discount.pm
index 015b6e3..a207940 100644
--- a/FS/FS/cust_pkg_discount.pm
+++ b/FS/FS/cust_pkg_discount.pm
@@ -172,7 +172,7 @@ sub check {
return $error if $error;
return "Discount does not apply to setup fees, and package has no recurring"
- if ! $self->discount->setup && ! $self->cust_pkg->part_pkg->freq;
+ if ! $self->discount->setup && $self->cust_pkg->part_pkg->freq =~ /^0/;
$self->usernum($FS::CurrentUser::CurrentUser->usernum) unless $self->usernum;