From: ivan Date: Mon, 15 Dec 2003 08:07:06 +0000 (+0000) Subject: print_ps returns ths invoice now, do not count on latex printing it, oops X-Git-Tag: NET_WHOIS_RAW_0_31~228 X-Git-Url: http://git.freeside.biz/gitweb/?p=freeside.git;a=commitdiff_plain;h=b3808f960c0351710f7005e7a2729925f57c7f4a print_ps returns ths invoice now, do not count on latex printing it, oops --- diff --git a/httemplate/misc/print-invoice.cgi b/httemplate/misc/print-invoice.cgi index 8c1240c05..0dda68a4e 100755 --- a/httemplate/misc/print-invoice.cgi +++ b/httemplate/misc/print-invoice.cgi @@ -13,8 +13,7 @@ die "Can't find invoice!\n" unless $cust_bill; open(LPR,"|$lpr") or die "Can't open $lpr: $!"; if ( $conf->exists('invoice_latex') ) { - $cust_bill->print_ps; - #print LPR $cust_bill->print_ps; #( date ) + print LPR $cust_bill->print_ps; #( date ) } else { print LPR $cust_bill->print_text; #( date ) }