X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2FFS%2Fphone_avail.pm;h=0d591138c737c4cca28add354e9b7309863a414c;hb=7bc84db7378c6e23fa1495de539a3136b1f44730;hp=d60b2e0efff8f8e83e2ea6a5b3a0015c359c0634;hpb=4c321ba053a206853598ae0675100516a2304770;p=freeside.git diff --git a/FS/FS/phone_avail.pm b/FS/FS/phone_avail.pm index d60b2e0ef..0d591138c 100644 --- a/FS/FS/phone_avail.pm +++ b/FS/FS/phone_avail.pm @@ -2,10 +2,10 @@ package FS::phone_avail; use strict; use vars qw( @ISA $DEBUG $me ); -use FS::Record qw( qsearch qsearchs ); +use FS::Record qw( qsearch qsearchs dbh ); use FS::cust_svc; -@ISA = qw(FS::Record); +@ISA = qw(FS::cust_main_Mixin FS::Record); $me = '[FS::phone_avail]'; $DEBUG = 0; @@ -162,6 +162,17 @@ sub cust_svc { 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; @@ -177,13 +188,28 @@ sub process_batch_import { my $opt = { 'table' => 'phone_avail', 'params' => [ 'availbatch', 'exportnum', 'countrycode' ], - 'formats' => { 'default' => [ 'state', $numsub ] }, + 'formats' => { 'default' => [ 'state', $numsub, 'name' ], }, }; 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) = @_;