X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=FS%2Fbin%2Ffreeside-queued;h=7c4cf1b64f53809cc39ca7b4089878b09b71ce92;hb=8e2372530191ae32938786363885aa4b540e29c7;hp=f1a87cac9ffa264929e2370803ccda25cf606699;hpb=d4cdc4db87f1b6a373398b7ab33e791bd0527dda;p=freeside.git diff --git a/FS/bin/freeside-queued b/FS/bin/freeside-queued index f1a87cac9..7c4cf1b64 100644 --- a/FS/bin/freeside-queued +++ b/FS/bin/freeside-queued @@ -11,6 +11,7 @@ use FS::Conf; use FS::Record qw(qsearch); use FS::queue; use FS::queue_depend; +use FS::queue_stat; use FS::Log; use FS::Cron::expire_user_pref qw( expire_user_pref ); @@ -140,6 +141,8 @@ while (1) { foreach my $job ( @jobs ) { + my $start_date = time; + $log->debug('locking queue job', object => $job); my %hash = $job->hash; @@ -193,7 +196,7 @@ while (1) { dbh->{'private_profile'} = {} if UNIVERSAL::can(dbh, 'sprintProfile'); #auto-use classes... - if ( $ljob->job =~ /(FS::(part_export|cust_main|cust_pkg|Cron)::\w+)::/ + if ( $ljob->job =~ /(FS::(part_export|cust_main|cust_pkg|part_pkg|Cron)::\w+)::/ || $ljob->job =~ /(FS::\w+)::/ ) { @@ -236,6 +239,20 @@ while (1) { dbh->commit; # for the job itself } + if ( $ljob->job eq 'FS::cust_main::queued_bill' ) { + my $queue_stat = new FS::queue_stat { + 'jobnum' => $ljob->jobnum, + 'job' => $ljob->job, + 'custnum' => $ljob->custnum, + 'insert_date' => $ljob->_date, + 'start_date' => $start_date, + 'end_date' => time, + }; + my $error = $queue_stat->insert; + die $error if $error; + dbh->commit; #for the stat + } + if ( UNIVERSAL::can(dbh, 'sprintProfile') ) { open(PROFILE,">%%%FREESIDE_LOG%%%/queueprofile.$$.".time) or die "can't open profile file: $!";