summaryrefslogtreecommitdiff
path: root/FS/FS/part_event/Condition/dundate.pm
diff options
context:
space:
mode:
Diffstat (limited to 'FS/FS/part_event/Condition/dundate.pm')
-rw-r--r--FS/FS/part_event/Condition/dundate.pm26
1 files changed, 0 insertions, 26 deletions
diff --git a/FS/FS/part_event/Condition/dundate.pm b/FS/FS/part_event/Condition/dundate.pm
deleted file mode 100644
index ee2a95f..0000000
--- a/FS/FS/part_event/Condition/dundate.pm
+++ /dev/null
@@ -1,26 +0,0 @@
-package FS::part_event::Condition::dundate;
-
-use strict;
-
-use base qw( FS::part_event::Condition );
-
-sub description {
- "Skip until customer dun date is reached";
-}
-
-sub condition {
- my($self, $object, %opt) = @_;
-
- my $cust_main = $self->cust_main($object);
-
- $cust_main->dundate <= $opt{time};
-
-}
-
-#sub condition_sql {
-# my( $self, $table ) = @_;
-#
-# 'true';
-#}
-
-1;