From: Steve Sutton Date: Thu, 14 Feb 2019 18:05:37 +0000 (-0500) Subject: Update pdf invoice X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/?a=commitdiff_plain;h=8c6265a5c7e0d325503495a574d79c62a50ef9f0;p=WP-Plugins%2Fglm-member-db-billing.git Update pdf invoice Move the pay this amount up --- diff --git a/lib/GlmPDFInvoice.php b/lib/GlmPDFInvoice.php index 0c5f3b9..f495d8b 100644 --- a/lib/GlmPDFInvoice.php +++ b/lib/GlmPDFInvoice.php @@ -288,28 +288,30 @@ class GlmPDFInvoice extends Cezpdf // $MAXcodeWidth = $v['x'] + $v['b']; // } // } - $this->ezSetY( 130 ); - // $this->ezText( $barcode, $this->pdf_font_size, array( 'aright' => 335, 'justification' => 'right' ) ); - $barCode = array( - array( 'content' => $barcode ), - ); - $this->ezTable( - $barCode, - array( 'content' => 'barcode' ), - '', - array( - 'fontSize' => $this->pdf_font_size, - 'showHeadings' => 0, - 'showLines' => 0, - 'width' => 250, - 'xPos' => 300, - 'xOrientation' => 'right', - 'cols' => array( - 'content' => array( 'width' => 250 ) - ), - ) - ); + // $this->ezSetY( 130 ); + $this->ezSetY( 150 ); $this->ezText( '', $this->pdf_font_size ); + // $this->ezText( $barcode, $this->pdf_font_size, array( 'aright' => 335, 'justification' => 'right' ) ); + // $barCode = array( + // array( 'content' => $barcode ), + // ); + // $this->ezTable( + // $barCode, + // array( 'content' => 'barcode' ), + // '', + // array( + // 'fontSize' => $this->pdf_font_size, + // 'showHeadings' => 0, + // 'showLines' => 0, + // 'width' => 250, + // 'xPos' => 300, + // 'xOrientation' => 'right', + // 'cols' => array( + // 'content' => array( 'width' => 250 ) + // ), + // ) + // ); + // $this->ezText( '', $this->pdf_font_size ); $paymentForm1 = array( array( 'header' => 'Please Pay:', 'value' => '$'.$invoice['balance'] ), );