X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep409.php;h=6f453834fc45895cacf46abc3c7ebdc58d778676;hb=5a3cbfe6d2df1c8c32edcab8bf93e8a8432a15fc;hp=73a384813bc9bfb4d0e008180ce92052099a43a8;hpb=8ffddf50ffbe93672c769e2cf0501d0f9125e2a0;p=fa-stable.git diff --git a/reporting/rep409.php b/reporting/rep409.php index 73a38481..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"); @@ -62,10 +62,9 @@ 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); @@ -86,7 +85,6 @@ function print_workorders() $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);