X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fpart_event%2FCondition.pm;h=32751974ca7da3bf713bd28c9d015823e1f420f2;hb=be4541cfd9ed7c985ffe1b3ef3a38be0e19460d9;hp=69027744a1ac4aff79da7b9cca83653bf00adef7;hpb=a0fec35d6bac0cece6bafa557a7a53058fdf5c6a;p=freeside.git diff --git a/FS/FS/part_event/Condition.pm b/FS/FS/part_event/Condition.pm index 69027744a..32751974c 100644 --- a/FS/FS/part_event/Condition.pm +++ b/FS/FS/part_event/Condition.pm @@ -54,6 +54,7 @@ sub eventtable_hashref { 'cust_pkg' => 1, 'cust_pay_batch' => 1, 'cust_statement' => 1, + 'svc_acct' => 1, }; } @@ -234,6 +235,21 @@ sub cust_main { } +=item cust_pkg OBJECT + +Return the package object (L) associated with the provided +object. The object must be either a service (L) or a +package. + +=cut + +sub cust_pkg { + my( $self, $object ) = @_; + $object->isa('FS::cust_pkg') ? $object : + $object->isa('FS::svc_Common') ? $object->cust_svc->cust_pkg : + undef; +} + =item option_label OPTIONNAME Returns the label for the specified option name. @@ -253,6 +269,23 @@ sub option_label { =back +=item option_type OPTION + +Returns the type of the option, as a string: 'text', 'money', 'date', +or 'freq'. + +=cut + +sub option_type { + my( $self, $optionname ) = @_; + + my %option_fields = $self->option_fields; + + ref( $option_fields{$optionname} ) + ? $option_fields{$optionname}->{'type'} + : 'text' +} + =item option_age_from OPTION FROM_TIMESTAMP Retreives a condition option, parses it from a frequency (such as "1d", "1w" or @@ -322,11 +355,35 @@ sub condition_sql_option_option { )"; "( SELECT optionname FROM part_event_condition_option_option - WHERE optionnum = $optionnum + WHERE optionnum IN $optionnum )"; } +#used for part_event/Condition/cust_bill_has_service.pm +#a little false laziness w/above and condition_sql_option_integer +sub condition_sql_option_option_integer { + my( $class, $option, $driver_name ) = @_; + + ( my $condname = $class ) =~ s/^.*:://; + + my $optionnum = + "( SELECT optionnum FROM part_event_condition_option + WHERE part_event_condition_option.eventconditionnum = + cond_$condname.eventconditionnum + AND part_event_condition_option.optionname = '$option' + AND part_event_condition_option.optionvalue = 'HASH' + )"; + + my $integer = ($driver_name =~ /^mysql/) ? 'UNSIGNED INTEGER' : 'INTEGER'; + + my $optionname = "CAST(optionname AS $integer)"; + + "( SELECT $optionname FROM part_event_condition_option_option + WHERE optionnum IN $optionnum + )"; + +} =item condition_sql_option_age_from OPTION FROM_TIMESTAMP @@ -469,7 +526,10 @@ sub condition_sql_option_integer { my $integer = ($driver_name =~ /^mysql/) ? 'UNSIGNED INTEGER' : 'INTEGER'; - 'CAST ('. $class->condition_sql_option($option). " AS $integer )"; + 'CAST( + COALESCE('. $class->condition_sql_option($option). + " ,'0') ". + " AS $integer )"; } =head1 NEW CONDITION CLASSES