X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep113.php;h=f38fd4c19e3805b655ea8b28f093758d3323a430;hb=58d6bd7c2fe37ccc02917b2fbbb7259cec784694;hp=4a110745cd02180823c77ce2fc423c1c526d1d69;hpb=565a41e2d7fd4b4a32848e4829c11dbbcb5881d1;p=fa-stable.git diff --git a/reporting/rep113.php b/reporting/rep113.php index 4a110745..f38fd4c1 100644 --- a/reporting/rep113.php +++ b/reporting/rep113.php @@ -42,15 +42,17 @@ function print_credits() $email = $_POST['PARAM_3']; $paylink = $_POST['PARAM_4']; $comments = $_POST['PARAM_5']; + $orientation = $_POST['PARAM_6']; - if ($from == null) - $from = 0; - if ($to == null) - $to = 0; + if (!$from || !$to) return; + + $orientation = ($orientation ? 'L' : 'P'); $dec = user_price_dec(); $fno = explode("-", $from); $tno = explode("-", $to); + $from = min($fno[0], $tno[0]); + $to = max($fno[0], $tno[0]); $cols = array(4, 60, 225, 300, 325, 385, 450, 515); @@ -62,15 +64,11 @@ function print_credits() $cur = get_company_Pref('curr_default'); if ($email == 0) - { - $rep = new FrontReport(_('CREDIT NOTE'), "InvoiceBulk", user_pagesize()); - $rep->SetHeaderType('Header2'); - $rep->currency = $cur; - $rep->Font(); - $rep->Info($params, $cols, null, $aligns); - } + $rep = new FrontReport(_('CREDIT NOTE'), "InvoiceBulk", user_pagesize(), 9, $orientation); + if ($orientation == 'L') + recalculate_cols($cols); - for ($i = $fno[0]; $i <= $tno[0]; $i++) + for ($i = $from; $i <= $to; $i++) { if (!exists_customer_trans(ST_CUSTCREDIT, $i)) continue; @@ -84,17 +82,16 @@ function print_credits() $sales_order = null; 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 = _('CREDIT NOTE'); $rep->filename = "CreditNote" . $myrow['reference'] . ".pdf"; - $rep->Info($params, $cols, null, $aligns); } - else - $rep->title = _('CREDIT NOTE'); - $contacts = get_branch_contacts($branch['branch_code'], 'invoice', $branch['debtor_no']); + $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); $rep->SetCommonData($myrow, $branch, $sales_order, $baccount, ST_CUSTCREDIT, $contacts); $rep->NewPage(); @@ -131,12 +128,11 @@ function print_credits() $rep->NewPage(); } - $comments = get_comments(ST_CUSTCREDIT, $i); - if ($comments && db_num_rows($comments)) + $memo = get_comments_string(ST_CUSTCREDIT, $i); + if ($memo != "") { $rep->NewLine(); - while ($comment=db_fetch($comments)) - $rep->TextColLines(0, 6, $comment['memo_'], -2); + $rep->TextColLines(1, 5, $memo, -2); } $DisplaySubTot = number_format2($SubTotal,$dec); @@ -204,7 +200,7 @@ function print_credits() if ($email == 1) { $myrow['dimension_id'] = $paylink; // helper for pmt link - $rep->End($email, '', $myrow, ST_CUSTCREDIT); + $rep->End($email); } } if ($email == 0)