X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep409.php;h=6f453834fc45895cacf46abc3c7ebdc58d778676;hb=8a16c90606ab7f98b5238de10397a3da3bb2a6e9;hp=19122ed21df39d11fd5304c0f092037fa02525af;hpb=4c5b43869317149a7577bdc5c57de84d820ac47b;p=fa-stable.git diff --git a/reporting/rep409.php b/reporting/rep409.php index 19122ed2..6f453834 100644 --- a/reporting/rep409.php +++ b/reporting/rep409.php @@ -28,7 +28,7 @@ print_workorders(); function print_workorders() { - global $path_to_root, $SysPrefs, $dflt_lang; + global $path_to_root, $dflt_lang; include_once($path_to_root . "/reporting/includes/pdf_report.inc"); @@ -38,7 +38,6 @@ function print_workorders() $comments = $_POST['PARAM_3']; $orientation = $_POST['PARAM_4']; - if (!$from || !$to) return; $orientation = ($orientation ? 'L' : 'P'); @@ -63,17 +62,15 @@ function print_workorders() for ($i = $from; $i <= $to; $i++) { - $myrow = get_work_order($i); + $myrow = get_work_order($i, true); if ($myrow === false) continue; - $date_ = sql2date($myrow["date_"]); if ($email == 1) { $rep = new FrontReport("", "", user_pagesize(), 9, $orientation); $rep->title = _('WORK ORDER'); $rep->filename = "WorkOrder" . $myrow['wo_ref'] . ".pdf"; } - $rep->SetHeaderType('Header2'); $rep->currency = $cur; $rep->Font(); $rep->Info($params, $cols, null, $aligns); @@ -82,12 +79,12 @@ function print_workorders() 'name' => $myrow['contact'], 'name2' => '', 'contact'); $rep->SetCommonData($myrow, null, null, '', 26, $contact); + $rep->SetHeaderType('Header2'); $rep->NewPage(); $result = get_wo_requirements($i); $rep->TextCol(0, 5,_("Work Order Requirements"), -2); $rep->NewLine(2); - $has_marked = false; while ($myrow2=db_fetch($result)) { $rep->TextCol(0, 1, $myrow2['stock_id'], -2); @@ -122,4 +119,3 @@ function print_workorders() $rep->End(); } -?> \ No newline at end of file