X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=blobdiff_plain;f=httemplate%2Fmisc%2Ffax-invoice.cgi;h=d490b8e7963375dca4d2292da0e59d34a50ef656;hp=46b2a1721739799fa8c03141d83221838241be2e;hb=c2146ae32fdef80049abfa13098db2d45f3ebdd5;hpb=18c025613fa052cf4ba8d484f1296cc2a1719a24 diff --git a/httemplate/misc/fax-invoice.cgi b/httemplate/misc/fax-invoice.cgi index 46b2a1721..d490b8e79 100755 --- a/httemplate/misc/fax-invoice.cgi +++ b/httemplate/misc/fax-invoice.cgi @@ -5,15 +5,15 @@ my $lpr = $conf->config('lpr'); #untaint invnum my($query) = $cgi->keywords; -$query =~ /^(\d*)$/; -my $invnum = $1; +$query =~ /^((.+)-)?(\d+)$/; +my $template = $2; +my $invnum = $3; my $cust_bill = qsearchs('cust_bill',{'invnum'=>$invnum}); die "Can't find invoice!\n" unless $cust_bill; - my $error = &FS::Misc::send_fax( dialstring => $cust_bill->cust_main->getfield('fax'), - docdata => [ $cust_bill->print_ps ], + docdata => [ $cust_bill->print_ps('', $template) ], ); die $error if $error;