1 package FS::part_event::Condition::pkg_notchange;
5 use base qw( FS::part_event::Condition );
6 use FS::Record qw( qsearch );
9 'Package is a new order, not a change';
12 sub eventtable_hashref {
20 my( $self, $cust_pkg ) = @_;
22 ! $cust_pkg->change_date;
27 '( cust_pkg.change_date IS NULL OR cust_pkg.change_date = 0 )';