X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep401.php;h=7db56ed35ba8b31591b717cd8bfa6e0b44e62a33;hb=e8f8879003c1918b59e6da26be7f3927115ec21f;hp=c0d3987d30690b1e3a61ae87a52bd52a57c7ca11;hpb=da8311619dd73feae101d246a1957b972e00cbd2;p=fa-stable.git diff --git a/reporting/rep401.php b/reporting/rep401.php index c0d3987d..7db56ed3 100644 --- a/reporting/rep401.php +++ b/reporting/rep401.php @@ -1,5 +1,14 @@ . +***********************************************************************/ $page_security = 2; // ---------------------------------------------------------------- // $ Revision: 2.0 $ @@ -7,13 +16,13 @@ $page_security = 2; // date_: 2005-05-19 // Title: Bill Of Material // ---------------------------------------------------------------- -$path_to_root="../"; +$path_to_root=".."; -include_once($path_to_root . "includes/session.inc"); -include_once($path_to_root . "includes/date_functions.inc"); -include_once($path_to_root . "includes/data_checks.inc"); -include_once($path_to_root . "gl/includes/gl_db.inc"); -include_once($path_to_root . "inventory/includes/db/items_db.inc"); +include_once($path_to_root . "/includes/session.inc"); +include_once($path_to_root . "/includes/date_functions.inc"); +include_once($path_to_root . "/includes/data_checks.inc"); +include_once($path_to_root . "/gl/includes/gl_db.inc"); +include_once($path_to_root . "/inventory/includes/db/items_db.inc"); //---------------------------------------------------------------------------------------------------- @@ -47,13 +56,11 @@ function print_bill_of_material() { global $path_to_root; - include_once($path_to_root . "reporting/includes/pdf_report.inc"); + include_once($path_to_root . "/reporting/includes/pdf_report.inc"); $frompart = $_POST['PARAM_0']; $topart = $_POST['PARAM_1']; $comments = $_POST['PARAM_2']; - - $dec = user_qty_dec(); $cols = array(0, 50, 305, 375, 445, 515); @@ -87,12 +94,16 @@ function print_bill_of_material() $parent = $trans['parent']; $rep->NewLine(); } - + $rep->NewLine(); + $dec = get_qty_dec($trans['component']); $rep->TextCol(0, 1, $trans['component']); $rep->TextCol(1, 2, $trans['CompDescription']); - $rep->TextCol(2, 3, $trans['loc_code']); - $rep->TextCol(3, 4, $trans['workcentre_added']); + //$rep->TextCol(2, 3, $trans['loc_code']); + //$rep->TextCol(3, 4, $trans['workcentre_added']); + $wc = get_work_centre($trans['workcentre_added']); + $rep->TextCol(2, 3, get_location_name($trans['loc_code'])); + $rep->TextCol(3, 4, $wc['name']); $rep->TextCol(4, 5, number_format2($trans['quantity'], $dec)); } $rep->Line($rep->row - 4);