X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep109.php;h=acb0e2e6c2bafea4fcd3e745b75b713aa84689e4;hb=efc1a9ce400be6233323af9c193ab9460407bcf6;hp=2c3bb116e54e4c3ad0c8fc9c1d0b694e17dc1608;hpb=5f06887dedd4d14701864fb72994d7e20352086d;p=fa-stable.git diff --git a/reporting/rep109.php b/reporting/rep109.php index 2c3bb116..acb0e2e6 100644 --- a/reporting/rep109.php +++ b/reporting/rep109.php @@ -64,6 +64,7 @@ function print_sales_orders() $rep = new FrontReport(_("SALES ORDER"), "SalesOrderBulk", user_pagesize()); else $rep = new FrontReport(_("QUOTE"), "QuoteBulk", user_pagesize()); + $rep->SetHeaderType('Header2'); $rep->currency = $cur; $rep->Font(); $rep->Info($params, $cols, null, $aligns); @@ -78,6 +79,7 @@ function print_sales_orders() if ($email == 1) { $rep = new FrontReport("", "", user_pagesize()); + $rep->SetHeaderType('Header2'); $rep->currency = $cur; $rep->Font(); if ($print_as_quote == 1) @@ -94,7 +96,8 @@ function print_sales_orders() } else $rep->title = ($print_as_quote==1 ? _("QUOTE") : _("SALES ORDER")); - $rep->Header2($myrow, $branch, $myrow, $baccount, ST_SALESORDER); + $rep->SetCommonData($myrow, $branch, $myrow, $baccount, ST_SALESORDER); + $rep->NewPage(); $result = get_sales_order_details($i, ST_SALESORDER); $SubTotal = 0; @@ -123,7 +126,7 @@ function print_sales_orders() $rep->row = $newrow; //$rep->NewLine(1); if ($rep->row < $rep->bottomMargin + (15 * $rep->lineHeight)) - $rep->Header2($myrow, $branch, $myrow, $baccount, ST_SALESORDER); + $rep->NewPage(); } if ($myrow['comments'] != "") { @@ -136,14 +139,7 @@ function print_sales_orders() $rep->row = $rep->bottomMargin + (15 * $rep->lineHeight); $linetype = true; $doctype = ST_SALESORDER; - if ($rep->currency != $myrow['curr_code']) - { - include($path_to_root . "/reporting/includes/doctext2.inc"); - } - else - { - include($path_to_root . "/reporting/includes/doctext.inc"); - } + include($path_to_root . "/reporting/includes/doctext.inc"); $rep->TextCol(3, 6, $doc_Sub_total, -2); $rep->TextCol(6, 7, $DisplaySubTot, -2);