X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fsvc_alarm.pm;h=fafd9e88686120a5e0e750a2743847a6989e9ff3;hb=a0e00fa0547e99893c735ab3dbdacdb2bb054f5a;hp=3e910f0bf8e71dcd27117a9b497c6ad8bfa8d107;hpb=0683f451ea789809e64d183ef7fde24790157fe8;p=freeside.git diff --git a/FS/FS/svc_alarm.pm b/FS/FS/svc_alarm.pm index 3e910f0bf..fafd9e886 100644 --- a/FS/FS/svc_alarm.pm +++ b/FS/FS/svc_alarm.pm @@ -1,9 +1,8 @@ package FS::svc_alarm; +use base qw( FS::svc_Common ); use strict; -use base qw( FS::svc_Common ); use Tie::IxHash; -use FS::Record qw( qsearchs ); # qw( qsearch qsearchs ); use FS::alarm_system; use FS::alarm_type; use FS::alarm_station; @@ -99,12 +98,15 @@ sub table_info { ; { - 'name' => 'Alarm service', - 'sorts' => 'acctnum', - 'display_weight' => 80, - 'cancel_weight' => 85, - 'fields' => \%fields, - + 'name' => 'Alarm service', + 'sorts' => 'acctnum', + 'display_weight' => 80, + 'cancel_weight' => 85, + 'fields' => \%fields, + 'addl_process_fields' => [qw( alarmsystemnum_systemname + alarmtypenum_inputs alarmtypenum_outputs + alarmstationnum_stationname + )], }; } @@ -134,6 +136,50 @@ Delete this record from the database. Replaces the OLD_RECORD with this one in the database. If there is an error, returns the error, otherwise returns false. +=cut + +sub preinsert_hook_first { shift->_inline_add(@_); } +sub prereplace_hook_first { shift->_inline_add(@_); } + +sub _inline_add { + my $self = shift; + + my $agentnum = $self->cust_svc->cust_pkg->cust_main->agentnum; + + if ( $self->alarmsystemnum == -1 ) { + my $alarm_system = new FS::alarm_system { + 'agentnum' => $agentnum, + 'systemname' => $self->alarmsystemnum_systemname, + }; + my $error = $alarm_system->insert; + return $error if $error; + $self->alarmsystemnum($alarm_system->alarmsystemnum); + } + + if ( $self->alarmtypenum == -1 ) { + my $alarm_type = new FS::alarm_type { + 'agentnum' => $agentnum, + 'inputs' => $self->alarmtypenum_inputs, + 'outputs' => $self->alarmtypenum_outputs, + }; + my $error = $alarm_type->insert; + return $error if $error; + $self->alarmtypenum($alarm_type->alarmtypenum); + } + + if ( $self->alarmstationnum == -1 ) { + my $alarm_station = new FS::alarm_station { + 'agentnum' => $agentnum, + 'stationname' => $self->alarmstationnum_stationname, + }; + my $error = $alarm_station->insert; + return $error if $error; + $self->alarmstationnum($alarm_station->alarmstationnum) + } + + ''; +} + =item check Checks all fields to make sure this is a valid service. If there is @@ -162,10 +208,6 @@ sub check { $self->SUPER::check; } -sub alarm_system { qsearchs('alarm_system', {systemnum =>shift->systemnum } ) } -sub alarm_type { qsearchs('alarm_type', {typenum =>shift->systemnum } ) } -sub alarm_station { qsearchs('alarm_station',{stationnum=>shift->stationnum} ) } - =back =head1 SEE ALSO