From: Jonathan Prykop Date: Wed, 22 Jul 2015 21:47:50 +0000 (-0500) Subject: RT#37165: Print document when account is created [added svcnum to job] X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=80d97e2e53aaab8ac67da8e43c6352222b78c1d5 RT#37165: Print document when account is created [added svcnum to job] --- diff --git a/FS/FS/part_export/print_template.pm b/FS/FS/part_export/print_template.pm index 21f0a152e..65e68ac56 100644 --- a/FS/FS/part_export/print_template.pm +++ b/FS/FS/part_export/print_template.pm @@ -142,7 +142,8 @@ sub print_template { my ($self, $phase, $svc_x) = @_; if ($self->option('phase') eq $phase) { my $queue = new FS::queue { - 'job' => 'FS::part_export::print_template::process_print_template', + 'svcnum' => $svc_x->svcnum, + 'job' => 'FS::part_export::print_template::process_print_template', }; my $error = $queue->insert( 'svcnum' => $svc_x->svcnum,