X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fphone_avail.pm;h=8bb6a5cc33c0f250b120584b07a57cc34aa131cb;hb=b49c1bd5510a5f10b05bffacc6cc8b6a1b2153e8;hp=92286abb7536c25e0147a051c242503eac5825cf;hpb=ec49e826250476a58686bfb322e7f1839e35983d;p=freeside.git diff --git a/FS/FS/phone_avail.pm b/FS/FS/phone_avail.pm index 92286abb7..8bb6a5cc3 100644 --- a/FS/FS/phone_avail.pm +++ b/FS/FS/phone_avail.pm @@ -145,7 +145,10 @@ sub check { || $self->ut_numbern('nxx') || $self->ut_numbern('station') || $self->ut_foreign_keyn('svcnum', 'cust_svc', 'svcnum' ) + || $self->ut_foreign_keyn('ordernum', 'did_order', 'ordernum' ) || $self->ut_textn('availbatch') + || $self->ut_textn('name') + || $self->ut_textn('rate_center_abbrev') ; return $error if $error; @@ -187,14 +190,42 @@ sub process_batch_import { }; my $opt = { 'table' => 'phone_avail', - 'params' => [ 'availbatch', 'exportnum', 'countrycode' ], - 'formats' => { 'default' => [ 'state', $numsub ] }, + 'params' => [ 'availbatch', 'exportnum', 'countrycode', 'ordernum' ], + 'formats' => { 'default' => [ 'state', $numsub, 'name' ], + 'bulk' => [ 'state', $numsub, 'name', 'rate_center_abbrev' ], + }, + 'postinsert_callback' => sub { + my $record = shift; + if($record->ordernum) { + my $did_order = qsearchs('did_order', + { 'ordernum' => $record->ordernum } ); + if($did_order && !$did_order->received) { + $did_order->received(time); + $did_order->replace; + } + } + }, }; FS::Record::process_batch_import( $job, $opt, @_ ); } +sub flush { # evil direct SQL + my $opt = shift; + + if ( $opt->{'ratecenter'} =~ /^[\w\s]+$/ + && $opt->{'state'} =~ /^[A-Z][A-Z]$/ + && $opt->{'exportnum'} =~ /^\d+$/) { + my $sth = dbh->prepare('delete from phone_avail where exportnum = ? '. + ' and state = ? and name = ?'); + $sth->execute($opt->{'exportnum'},$opt->{'state'},$opt->{'ratecenter'}) + or die $sth->errstr; + } + + ''; +} + # Used by FS::Upgrade to migrate to a new database. sub _upgrade_data { my ($class, %opts) = @_;