X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fphone_avail.pm;h=3066ac0334b15fb79fefee1fe9edfbde2a8c1406;hb=31f2e890b5b3e1b0ad29a877ff67bc641ea1fc40;hp=68aeca159dfb4fc5fb70d8b32f4105b1a3a26291;hpb=16302a5c91267095f9c6eb6c2ad21238b6f1b781;p=freeside.git diff --git a/FS/FS/phone_avail.pm b/FS/FS/phone_avail.pm index 68aeca159..3066ac033 100644 --- a/FS/FS/phone_avail.pm +++ b/FS/FS/phone_avail.pm @@ -1,10 +1,15 @@ package FS::phone_avail; use strict; -use vars qw( @ISA ); -use FS::Record qw( qsearch qsearchs ); +use vars qw( @ISA $DEBUG $me ); +use FS::Record qw( qsearch qsearchs dbh ); +use FS::cust_svc; +use FS::Misc::DateTime qw( parse_datetime ); -@ISA = qw(FS::Record); +@ISA = qw(FS::cust_main_Mixin FS::Record); + +$me = '[FS::phone_avail]'; +$DEBUG = 0; =head1 NAME @@ -57,6 +62,22 @@ npa nxx +=item station + +station + +=item name + +Optional name + +=item svcnum + +svcnum + +=item availbatch + +availbatch + =back =head1 METHODS @@ -123,12 +144,108 @@ sub check { || $self->ut_alphan('state') || $self->ut_number('npa') || $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; $self->SUPER::check; } +=item cust_svc + +=cut + +sub cust_svc { + my $self = shift; + return '' unless $self->svcnum; + qsearchs('cust_svc', { 'svcnum' => $self->svcnum }); +} + +=item part_export + +=cut + +sub part_export { + my $self = shift; + return '' unless $self->exportnum; + qsearchs('part_export', { 'exportnum' => $self->exportnum }); +} + + +sub process_batch_import { + my $job = shift; + + my $numsub = sub { + my( $phone_avail, $value ) = @_; + $value =~ s/\D//g; + $value =~ /^(\d{3})(\d{3})(\d+)$/ or die "unparsable number $value\n"; + #( $hash->{npa}, $hash->{nxx}, $hash->{station} ) = ( $1, $2, $3 ); + $phone_avail->npa($1); + $phone_avail->nxx($2); + $phone_avail->station($3); + }; + + my $opt = { 'table' => 'phone_avail', + 'params' => [ 'availbatch', 'exportnum', 'countrycode', 'ordernum', 'vendor_order_id', 'confirmed' ], + 'formats' => { 'default' => [ 'state', $numsub, 'name' ], + 'bulk' => [ 'state', $numsub, 'name', 'rate_center_abbrev', 'msa', 'latanum' ], + }, + '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->confirmed(parse_datetime($record->confirmed)); + $did_order->vendor_order_id($record->vendor_order_id); + $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) = @_; + + warn "$me upgrading $class\n" if $DEBUG; + + my $sth = dbh->prepare( + 'UPDATE phone_avail SET svcnum = NULL + WHERE svcnum IS NOT NULL + AND 0 = ( SELECT COUNT(*) FROM svc_phone + WHERE phone_avail.svcnum = svc_phone.svcnum )' + ) or die dbh->errstr; + + $sth->execute or die $sth->errstr; + +} + =back =head1 BUGS