X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep409.php;h=218f07faa59191b84f20cdda2c54c61325e2bb59;hb=33dfc21a26f08e9ac19048bbcf80cce2351a6cfe;hp=d5a66e040652fcb409872ba1421482e131eab4f9;hpb=0489317205141deaecefe3a7243d11a3e38a51d0;p=fa-stable.git diff --git a/reporting/rep409.php b/reporting/rep409.php index d5a66e04..218f07fa 100644 --- a/reporting/rep409.php +++ b/reporting/rep409.php @@ -38,9 +38,9 @@ function print_workorders() $comments = $_POST['PARAM_3']; $orientation = $_POST['PARAM_4']; - $orientation = ($orientation ? 'L' : 'P'); if (!$from || !$to) return; + $orientation = ($orientation ? 'L' : 'P'); $fno = explode("-", $from); $tno = explode("-", $to); $from = min($fno[0], $tno[0]); @@ -58,8 +58,8 @@ function print_workorders() if ($email == 0) $rep = new FrontReport(_('WORK ORDER'), "WorkOrderBulk", user_pagesize(), 9, $orientation); if ($orientation == 'L') - $rep->recalculate_cols($cols); - + recalculate_cols($cols); + for ($i = $from; $i <= $to; $i++) { $myrow = get_work_order($i); @@ -67,18 +67,20 @@ function print_workorders() continue; $date_ = sql2date($myrow["date_"]); if ($email == 1) + { $rep = new FrontReport("", "", user_pagesize(), 9, $orientation); - $rep->SetHeaderType('Header2'); - $rep->currency = $cur; - $rep->Font(); $rep->title = _('WORK ORDER'); $rep->filename = "WorkOrder" . $myrow['wo_ref'] . ".pdf"; + } + $rep->currency = $cur; + $rep->Font(); $rep->Info($params, $cols, null, $aligns); $contact = array('email' =>$myrow['email'],'lang' => $dflt_lang, // ??? 'name' => $myrow['contact'], 'name2' => '', 'contact'); $rep->SetCommonData($myrow, null, null, '', 26, $contact); + $rep->SetHeaderType('Header2'); $rep->NewPage(); $result = get_wo_requirements($i); @@ -143,4 +145,3 @@ function print_workorders() $rep->End(); } -?> \ No newline at end of file