[0004216] Print Work Orders: database error fixed when voided WO is in selected range.
[fa-stable.git] / reporting / rep409.php
index 19122ed21df39d11fd5304c0f092037fa02525af..6f453834fc45895cacf46abc3c7ebdc58d778676 100644 (file)
@@ -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