X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep409.php;h=19122ed21df39d11fd5304c0f092037fa02525af;hb=e0544eddcab799b9088e0a774f63443e3f634bb6;hp=a57974260ce9c0f28b7f8d5fd0609b940a1f667a;hpb=f8778441a6380212a4078623d580c5fc41a37ab8;p=fa-stable.git diff --git a/reporting/rep409.php b/reporting/rep409.php index a5797426..19122ed2 100644 --- a/reporting/rep409.php +++ b/reporting/rep409.php @@ -36,9 +36,12 @@ function print_workorders() $to = $_POST['PARAM_1']; $email = $_POST['PARAM_2']; $comments = $_POST['PARAM_3']; + $orientation = $_POST['PARAM_4']; + if (!$from || !$to) return; + $orientation = ($orientation ? 'L' : 'P'); $fno = explode("-", $from); $tno = explode("-", $to); $from = min($fno[0], $tno[0]); @@ -54,13 +57,9 @@ function print_workorders() $cur = get_company_Pref('curr_default'); if ($email == 0) - { - $rep = new FrontReport(_('WORK ORDER'), "WorkOrderBulk", user_pagesize()); - $rep->SetHeaderType('Header2'); - $rep->currency = $cur; - $rep->Font(); - $rep->Info($params, $cols, null, $aligns); - } + $rep = new FrontReport(_('WORK ORDER'), "WorkOrderBulk", user_pagesize(), 9, $orientation); + if ($orientation == 'L') + recalculate_cols($cols); for ($i = $from; $i <= $to; $i++) { @@ -70,16 +69,14 @@ function print_workorders() $date_ = sql2date($myrow["date_"]); if ($email == 1) { - $rep = new FrontReport("", "", user_pagesize()); - $rep->SetHeaderType('Header2'); - $rep->currency = $cur; - $rep->Font(); - $rep->title = _('WORK ORDER'); - $rep->filename = "WorkOrder" . $myrow['wo_ref'] . ".pdf"; - $rep->Info($params, $cols, null, $aligns); - } - else + $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); $contact = array('email' =>$myrow['email'],'lang' => $dflt_lang, // ??? 'name' => $myrow['contact'], 'name2' => '', 'contact'); @@ -93,28 +90,7 @@ function print_workorders() $has_marked = false; while ($myrow2=db_fetch($result)) { - $qoh = 0; - $show_qoh = true; - // if it's a non-stock item (eg. service) don't show qoh - if (!has_stock_holding($myrow2["mb_flag"])) - $show_qoh = false; - - if ($show_qoh) - $qoh = get_qoh_on_date($myrow2["stock_id"], $myrow2["loc_code"], $date_); - - if ($show_qoh && ($myrow2["units_req"] * $myrow["units_issued"] > $qoh) && - !$SysPrefs->allow_negative_stock()) - { - // oops, we don't have enough of one of the component items - $has_marked = true; - } - else - $has_marked = false; - if ($has_marked) - $str = $myrow2['stock_id']." ***"; - else - $str = $myrow2['stock_id']; - $rep->TextCol(0, 1, $str, -2); + $rep->TextCol(0, 1, $myrow2['stock_id'], -2); $rep->TextCol(1, 2, $myrow2['description'], -2); $rep->TextCol(2, 3, $myrow2['location_name'], -2); @@ -128,9 +104,6 @@ function print_workorders() if ($rep->row < $rep->bottomMargin + (15 * $rep->lineHeight)) $rep->NewPage(); } - $rep->NewLine(1); - $rep->TextCol(0, 5," *** = "._("Insufficient stock"), -2); - $memo = get_comments_string(ST_WORKORDER, $i); if ($memo != "") {