diff options
author | Ivan Kohler <ivan@freeside.biz> | 2013-01-26 13:16:35 -0800 |
---|---|---|
committer | Ivan Kohler <ivan@freeside.biz> | 2013-01-26 13:16:35 -0800 |
commit | d6abfe4e240cc8b9994390e956d109663ee898a1 (patch) | |
tree | c64f179f33bd57dcc72d28e106991195d230aef1 /FS | |
parent | a0d5cc19b565ca5361bb3a3f0753f86a7b49fc69 (diff) |
simplify description
Diffstat (limited to 'FS')
-rw-r--r-- | FS/FS/part_event/Condition/has_pkgpart.pm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/FS/FS/part_event/Condition/has_pkgpart.pm b/FS/FS/part_event/Condition/has_pkgpart.pm index c54b7e256..d85e1bd43 100644 --- a/FS/FS/part_event/Condition/has_pkgpart.pm +++ b/FS/FS/part_event/Condition/has_pkgpart.pm @@ -4,7 +4,7 @@ use strict; use base qw( FS::part_event::Condition ); -sub description { 'Customer has uncancelled package of specified definitions'; } +sub description { 'Customer has uncancelled specific package(s)'; } sub eventtable_hashref { { 'cust_main' => 1, @@ -27,7 +27,6 @@ sub condition { my $cust_main = $self->cust_main($object); - #XXX test my $if_pkgpart = $self->option('if_pkgpart') || {}; grep $if_pkgpart->{ $_->pkgpart }, $cust_main->ncancelled_pkgs; |