X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;ds=sidebyside;f=reporting%2Frep107.php;h=94681d9010e20f2203b04cd37efae6a419708ad3;hb=03dbf580a48b9831dfb6fcbf8c34e1315c26a99e;hp=5e044f2898df54935a36d3daf75de299c4b10cde;hpb=661dccbdc80ee5c9ef5b8a515e60e60249827869;p=fa-stable.git diff --git a/reporting/rep107.php b/reporting/rep107.php index 5e044f28..94681d90 100644 --- a/reporting/rep107.php +++ b/reporting/rep107.php @@ -42,9 +42,11 @@ function print_invoices() $email = $_POST['PARAM_3']; $pay_service = $_POST['PARAM_4']; $comments = $_POST['PARAM_5']; + $orientation = $_POST['PARAM_6']; if (!$from || !$to) return; + $orientation = ($orientation ? 'L' : 'P'); $dec = user_price_dec(); $fno = explode("-", $from); @@ -62,13 +64,9 @@ function print_invoices() $cur = get_company_Pref('curr_default'); if ($email == 0) - { - $rep = new FrontReport(_('INVOICE'), "InvoiceBulk", user_pagesize()); - $rep->SetHeaderType('Header2'); - $rep->currency = $cur; - $rep->Font(); - $rep->Info($params, $cols, null, $aligns); - } + $rep = new FrontReport(_('INVOICE'), "InvoiceBulk", user_pagesize(), 9, $orientation); + if ($orientation == 'L') + recalculate_cols($cols); for ($i = $from; $i <= $to; $i++) { if (!exists_customer_trans(ST_SALESINVOICE, $i)) @@ -82,17 +80,16 @@ function print_invoices() $sales_order = get_sales_order_header($myrow["order_"], ST_SALESORDER); if ($email == 1) { - $rep = new FrontReport("", "", user_pagesize()); - $rep->SetHeaderType('Header2'); - $rep->currency = $cur; - $rep->Font(); + $rep = new FrontReport("", "", user_pagesize(), 9, $orientation); $rep->title = _('INVOICE'); $rep->filename = "Invoice" . $myrow['reference'] . ".pdf"; - $rep->Info($params, $cols, null, $aligns); - } - else - $rep->title = _('INVOICE'); - $contacts = get_branch_contacts($branch['branch_code'], 'invoice', $branch['debtor_no'], false); + } + $rep->SetHeaderType('Header2'); + $rep->currency = $cur; + $rep->Font(); + $rep->Info($params, $cols, null, $aligns); + + $contacts = get_branch_contacts($branch['branch_code'], 'invoice', $branch['debtor_no'], true); $baccount['payment_service'] = $pay_service; $rep->SetCommonData($myrow, $branch, $sales_order, $baccount, ST_SALESINVOICE, $contacts); $rep->NewPage();