X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fsvc_alarm.pm;h=2332f11b627c8cbbeff6fa1668b8fc77efd2fbe3;hb=c649441b5fdab63a35cdfe3907b486630af658bb;hp=3e910f0bf8e71dcd27117a9b497c6ad8bfa8d107;hpb=61a84d1b2dc076e80dec0b96bc9867ad4215e374;p=freeside.git diff --git a/FS/FS/svc_alarm.pm b/FS/FS/svc_alarm.pm index 3e910f0bf..2332f11b6 100644 --- a/FS/FS/svc_alarm.pm +++ b/FS/FS/svc_alarm.pm @@ -75,6 +75,9 @@ sub table_info { 'acctnum' => { label => 'Account #', %opts }, '_password' => { label => 'Password' , %opts }, 'location' => { label => 'Location', %opts }, + 'cs_receiver' => { label => 'CS Receiver #'}, + 'cs_phonenum' => { label => 'CS Phone #' }, + 'serialnum' => { label => 'Alarm Serial #' }, 'alarmsystemnum' => { label => 'Alarm System Vendor', type => 'select-alarm_system', disable_inventory => 1, @@ -99,12 +102,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 +140,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 @@ -148,23 +198,38 @@ sub check { my $x = $self->setfixed; return $x unless ref $x; - my $error = + my $iso3166 = $self->cust_main->ship_location->country(); + + my $error = $self->ut_numbern('svcnum') || $self->ut_text('acctnum') || $self->ut_alphan('_password') || $self->ut_textn('location') + || $self->ut_numbern('cs_receiver') + || $self->ut_phonen('cs_phonenum', $iso3166) + || $self->ut_alphan('serialnum') || $self->ut_foreign_key('alarmsystemnum', 'alarm_system', 'systemnum') || $self->ut_foreign_key('alarmtypenum', 'alarm_type', 'typenum') || $self->ut_foreign_key('alarmstationnum', 'alarm_station', 'stationnum') ; return $error if $error; + #really just an signed int, but to discourage storing other data (e.g. phone) + return 'CS Receiver must be 9 digits or less' + if $self->cs_receiver =~ /\d{10}/; + $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} ) } +sub alarm_system { + qsearchs('alarm_system', { alarmsystemnum => shift->alarmsystemnum } ); +} +sub alarm_type { + qsearchs('alarm_type', { alarmtypenum => shift->alarmtypenum } ); +} +sub alarm_station { + qsearchs('alarm_station', { alarmstationnum => shift->alarmstationnum } ); +} =back