X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=reporting%2Frep302.php;h=e92c27c5ff4a5fc4249f40c28861e55c86f828b8;hb=2383d33373d6ddec06906658a0ed6398077c1147;hp=68758cd4dbeb5c492eb6dfed82e47f2bba3e46d0;hpb=b6af4ea4c99734cfd051395289107bbba5a405e9;p=fa-stable.git diff --git a/reporting/rep302.php b/reporting/rep302.php index 68758cd4..e92c27c5 100644 --- a/reporting/rep302.php +++ b/reporting/rep302.php @@ -1,5 +1,14 @@ . +***********************************************************************/ $page_security = 2; // ---------------------------------------------------------------- // $ Revision: 2.0 $ @@ -7,17 +16,17 @@ $page_security = 2; // date_: 2005-05-19 // Title: Inventory Planning // ---------------------------------------------------------------- -$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_category_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_category_db.inc"); +include_once($path_to_root . "/includes/db/manufacturing_db.inc"); //---------------------------------------------------------------------------------------------------- -// trial_inquiry_controls(); print_inventory_planning(); function getTransactions($category, $location) @@ -37,7 +46,7 @@ function getTransactions($category, $location) if ($category != 0) $sql .= " AND ".TB_PREF."stock_master.category_id = '$category'"; if ($location != 'all') - $sql .= " AND ".TB_PREF."stock_moves.loc_code = '$location'"; + $sql .= " AND IF(".TB_PREF."stock_moves.stock_id IS NULL, '1=1',".TB_PREF."stock_moves.loc_code = '$location')"; $sql .= " GROUP BY ".TB_PREF."stock_master.category_id, ".TB_PREF."stock_category.description, ".TB_PREF."stock_master.stock_id, @@ -49,65 +58,6 @@ function getTransactions($category, $location) } -function getCustQty($stockid, $location) -{ - $sql = "SELECT SUM(".TB_PREF."sales_order_details.quantity - ".TB_PREF."sales_order_details.qty_sent) AS qty_demand - FROM ".TB_PREF."sales_order_details, - ".TB_PREF."sales_orders - WHERE ".TB_PREF."sales_order_details.order_no=".TB_PREF."sales_orders.order_no AND "; - if ($location != "") - $sql .= TB_PREF."sales_orders.from_stk_loc ='$location' AND "; - $sql .= TB_PREF."sales_order_details.stk_code = '$stockid'"; - - $TransResult = db_query($sql,"No transactions were returned"); - $DemandRow = db_fetch($TransResult); - return $DemandRow['qty_demand']; -} - -function getCustAsmQty($stockid, $location) -{ - $sql = "SELECT SUM((".TB_PREF."sales_order_details.quantity-".TB_PREF."sales_order_details.qty_sent)*".TB_PREF."bom.quantity) - AS Dem - FROM ".TB_PREF."sales_order_details, - ".TB_PREF."sales_orders, - ".TB_PREF."bom, - ".TB_PREF."stock_master - WHERE ".TB_PREF."sales_order_details.stk_code=".TB_PREF."bom.parent AND - ".TB_PREF."sales_orders.order_no = ".TB_PREF."sales_order_details.order_no AND "; - if ($location != "") - $sql .= TB_PREF."sales_orders.from_stk_loc ='$location' AND "; - $sql .= TB_PREF."sales_order_details.quantity-".TB_PREF."sales_order_details.qty_sent > 0 AND - ".TB_PREF."bom.component='$stockid' AND - ".TB_PREF."stock_master.stock_id=".TB_PREF."bom.parent AND - ".TB_PREF."stock_master.mb_flag='A'"; - - $TransResult = db_query($sql,"No transactions were returned"); - if (db_num_rows($TransResult) == 1) - { - $DemandRow = db_fetch_row($TransResult); - $DemandQty = $DemandRow[0]; - } - else - $DemandQty = 0.0; - - return $DemandQty; -} - -function getSuppQty($stockid, $location) -{ - $sql = "SELECT SUM(".TB_PREF."purch_order_details.quantity_ordered - ".TB_PREF."purch_order_details.quantity_received) AS QtyOnOrder - FROM ".TB_PREF."purch_order_details, - ".TB_PREF."purch_orders - WHERE ".TB_PREF."purch_order_details.order_no = ".TB_PREF."purch_orders.order_no - AND ".TB_PREF."purch_order_details.item_code = '$stockid'"; - if ($location != "") - $sql .= " AND ".TB_PREF."purch_orders.into_stock_location= '$location'"; - - $TransResult = db_query($sql,"No transactions were returned"); - $DemandRow = db_fetch($TransResult); - return $DemandRow['QtyOnOrder']; -} - function getPeriods($stockid, $location) { $date5 = date('Y-m-d'); @@ -138,11 +88,14 @@ function print_inventory_planning() { global $path_to_root; - include_once($path_to_root . "reporting/includes/pdf_report.inc"); - $category = $_POST['PARAM_0']; $location = $_POST['PARAM_1']; $comments = $_POST['PARAM_2']; + $destination = $_POST['PARAM_3']; + if ($destination) + include_once($path_to_root . "/reporting/includes/excel_report.inc"); + else + include_once($path_to_root . "/reporting/includes/pdf_report.inc"); if ($category == reserved_words::get_all_numeric()) $category = 0; @@ -176,7 +129,7 @@ function print_inventory_planning() 1 => array('text' => _('Category'), 'from' => $cat, 'to' => ''), 2 => array('text' => _('Location'), 'from' => $loc, 'to' => '')); - $rep = new FrontReport(_('Inventory Planning Report'), "InventoryPlanning.pdf", user_pagesize()); + $rep = new FrontReport(_('Inventory Planning Report'), "InventoryPlanning", user_pagesize()); $rep->Font(); $rep->Info($params, $cols, $headers, $aligns); @@ -201,35 +154,37 @@ function print_inventory_planning() if ($location == 'all') $loc_code = ""; else - $loc_code = $trans['loc_code']; - $custqty = getCustQty($trans['stock_id'], $loc_code); - $custqty += getCustAsmQty($trans['stock_id'], $loc_code); - $suppqty = getSuppQty($trans['stock_id'], $loc_code); + $loc_code = $location; + $custqty = get_demand_qty($trans['stock_id'], $loc_code); + $custqty += get_demand_asm_qty($trans['stock_id'], $loc_code); + $suppqty = get_on_porder_qty($trans['stock_id'], $loc_code); + $suppqty += get_on_worder_qty($trans['stock_id'], $loc_code); $period = getPeriods($trans['stock_id'], $trans['loc_code']); $rep->NewLine(); $dec = get_qty_dec($trans['stock_id']); $rep->TextCol(0, 1, $trans['stock_id']); $rep->TextCol(1, 2, $trans['description']); - $rep->TextCol(2, 3, number_format2($period['prd0'], $dec)); - $rep->TextCol(3, 4, number_format2($period['prd1'], $dec)); - $rep->TextCol(4, 5, number_format2($period['prd2'], $dec)); - $rep->TextCol(5, 6, number_format2($period['prd3'], $dec)); - $rep->TextCol(6, 7, number_format2($period['prd4'], $dec)); + $rep->AmountCol(2, 3, $period['prd0'], $dec); + $rep->AmountCol(3, 4, $period['prd1'], $dec); + $rep->AmountCol(4, 5, $period['prd2'], $dec); + $rep->AmountCol(5, 6, $period['prd3'], $dec); + $rep->AmountCol(6, 7, $period['prd4'], $dec); $MaxMthSales = Max($period['prd0'], $period['prd1'], $period['prd2'], $period['prd3']); $IdealStockHolding = $MaxMthSales * 3; - $rep->TextCol(7, 8, number_format2($IdealStockHolding, $dec)); + $rep->AmountCol(7, 8, $IdealStockHolding, $dec); - $rep->TextCol(8, 9, number_format2($trans['qty_on_hand'], $dec)); - $rep->TextCol(9, 10, number_format2($custqty, $dec)); - $rep->TextCol(10, 11, number_format2($suppqty, $dec)); + $rep->AmountCol(8, 9, $trans['qty_on_hand'], $dec); + $rep->AmountCol(9, 10, $custqty, $dec); + $rep->AmountCol(10, 11, $suppqty, $dec); $SuggestedTopUpOrder = $IdealStockHolding - $trans['qty_on_hand'] + $custqty - $suppqty; if ($SuggestedTopUpOrder < 0.0) $SuggestedTopUpOrder = 0.0; - $rep->TextCol(11, 12, number_format2($SuggestedTopUpOrder, $dec)); + $rep->AmountCol(11, 12, $SuggestedTopUpOrder, $dec); } $rep->Line($rep->row - 4); + $rep->NewLine(); $rep->End(); }