X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Finquiry%2Fstock_movements.php;h=d6fdce42646bec2abb3d9ea58f7aae8487eacbfa;hb=0a6988eadb9d779a9c49c79772c1c2a3e19b6b05;hp=2c2e0974225965cbc2764b141a2835308c051a17;hpb=0b63d898491b6577a5a5bf90e771dca0dcbbcf1f;p=fa-stable.git diff --git a/inventory/inquiry/stock_movements.php b/inventory/inquiry/stock_movements.php index 2c2e0974..d6fdce42 100644 --- a/inventory/inquiry/stock_movements.php +++ b/inventory/inquiry/stock_movements.php @@ -19,14 +19,26 @@ include_once($path_to_root . "/sales/includes/sales_db.inc"); include_once($path_to_root . "/includes/ui.inc"); $js = ""; -if ($use_popup_windows) +if ($SysPrefs->use_popup_windows) $js .= get_js_open_window(800, 500); -if ($use_date_picker) +if (user_use_date_picker()) $js .= get_js_date_picker(); -page(_($help_context = "Inventory Item Movement"), @$_GET['popup'], false, "", $js); + +if (isset($_GET['FixedAsset'])) { + $page_security = 'SA_ASSETSTRANSVIEW'; + $_POST['fixed_asset'] = 1; + $_SESSION['page_title'] = _($help_context = "Fixed Assets Movement"); +} else { + $_SESSION['page_title'] = _($help_context = "Inventory Item Movement"); +} + +page($_SESSION['page_title'], isset($_GET['stock_id']), false, "", $js); //------------------------------------------------------------------------------------------------ -check_db_has_stock_items(_("There are no items defined in the system.")); +if (get_post('fixed_asset') == 1) + check_db_has_fixed_assets(_("There are no fixed asset defined in the system.")); +else + check_db_has_stock_items(_("There are no items defined in the system.")); if(get_post('ShowMoves')) { @@ -40,29 +52,43 @@ if (isset($_GET['stock_id'])) start_form(); +hidden('fixed_asset'); + if (!isset($_POST['stock_id'])) $_POST['stock_id'] = get_global_stock_item(); start_table(TABLESTYLE_NOBORDER); start_row(); if (!$page_nested) - stock_costable_items_list_cells(_("Item:"), 'stock_id', $_POST['stock_id']); +{ + if (get_post('fixed_asset') == 1) { + stock_items_list_cells(_("Item:"), 'stock_id', $_POST['stock_id'], + false, false, check_value('show_inactive'), false, array('fixed_asset' => true)); + check_cells(_("Show inactive:"), 'show_inactive', null, true); + + if (get_post('_show_inactive_update')) { + $Ajax->activate('stock_id'); + set_focus('stock_id'); + } + } else + stock_costable_items_list_cells(_("Item:"), 'stock_id', $_POST['stock_id']); +} + end_row(); end_table(); start_table(TABLESTYLE_NOBORDER); start_row(); -locations_list_cells(_("From Location:"), 'StockLocation', null, true); +locations_list_cells(_("From Location:"), 'StockLocation', null, true, false, (get_post('fixed_asset') == 1)); -date_cells(_("From:"), 'AfterDate', '', null, -$_SESSION["wa_current_user"]->prefs->transaction_days()); +date_cells(_("From:"), 'AfterDate', '', null, -user_transaction_days()); date_cells(_("To:"), 'BeforeDate'); submit_cells('ShowMoves',_("Show Movements"),'',_('Refresh Inquiry'), 'default'); end_row(); end_table(); -if (!@$_GET['popup']) - end_form(); +end_form(); set_global_stock_item($_POST['stock_id']); @@ -76,22 +102,18 @@ $result = get_stock_movements($_POST['stock_id'], $_POST['StockLocation'], div_start('doc_tbl'); start_table(TABLESTYLE); $th = array(_("Type"), _("#"), _("Reference")); -if($display_location) array_push($th, _("Location")); -array_push($th, _("Date"), _("Detail"), _("Quantity In"), _("Quantity Out"), _("Quantity On Hand")); +if ($display_location) + array_push($th, _("Location")); + +array_push($th, _("Date"), _("Detail"), _("Quantity In"), _("Quantity Out"), _("Quantity On Hand")); table_header($th); -$before_qty = get_stock_movements_before($_POST['stock_id'], $_POST['StockLocation'], $_POST['AfterDate']); - +$before_qty = get_qoh_on_date($_POST['stock_id'], $_POST['StockLocation'], add_days($_POST['AfterDate'], -1)); + $after_qty = $before_qty; -/* -if (!isset($before_qty_row[0])) -{ - $after_qty = $before_qty = 0; -} -*/ start_row("class='inquirybg'"); $header_span = $display_location ? 6 : 5; label_cell(""._("Quantity on hand before") . " " . $_POST['AfterDate']."", "align=center colspan=$header_span"); @@ -113,7 +135,10 @@ while ($myrow = db_fetch($result)) $trandate = sql2date($myrow["tran_date"]); - $type_name = $systypes_array[$myrow["type"]]; + if (get_post('fixed_asset') == 1 && isset($fa_systypes_array[$myrow["type"]])) + $type_name = $fa_systypes_array[$myrow["type"]]; + else + $type_name = $systypes_array[$myrow["type"]]; if ($myrow["qty"] > 0) { @@ -129,60 +154,31 @@ while ($myrow = db_fetch($result)) label_cell($type_name); - label_cell(get_trans_view_str($myrow["type"], $myrow["trans_no"])); + label_cell(get_trans_view_str($myrow["type"], $myrow["trans_no"]), "nowrap align='right'"); label_cell(get_trans_view_str($myrow["type"], $myrow["trans_no"], $myrow["reference"])); + if($display_location) { label_cell($myrow['loc_code']); } label_cell($trandate); - $person = $myrow["person_id"]; $gl_posting = ""; - if (($myrow["type"] == ST_CUSTDELIVERY) || ($myrow["type"] == ST_CUSTCREDIT)) - { - $cust_row = get_customer_details_from_trans($myrow["type"], $myrow["trans_no"]); - - if (strlen($cust_row['name']) > 0) - $person = $cust_row['name'] . " (" . $cust_row['br_name'] . ")"; - - } - elseif ($myrow["type"] == ST_SUPPRECEIVE || $myrow['type'] == ST_SUPPCREDIT) - { - // get the supplier name - $supp_name = get_supplier_name($myrow["person_id"]); - - if (strlen($supp_name) > 0) - $person = $supp_name; - } - elseif ($myrow["type"] == ST_LOCTRANSFER || $myrow["type"] == ST_INVADJUST) - { - // get the adjustment type - $movement_type = get_movement_type($myrow["person_id"]); - $person = $movement_type["name"]; - } - elseif ($myrow["type"]==ST_WORKORDER || $myrow["type"] == ST_MANUISSUE || - $myrow["type"] == ST_MANURECEIVE) - { - $person = ""; - } - - label_cell($person); + label_cell($myrow['name']); label_cell((($myrow["qty"] >= 0) ? $quantity_formatted : ""), "nowrap align=right"); label_cell((($myrow["qty"] < 0) ? $quantity_formatted : ""), "nowrap align=right"); qty_cell($after_qty, false, $dec); end_row(); + $j++; - If ($j == 12) + if ($j == 12) { $j = 1; table_header($th); } -//end of page full new headings if } -//end of while loop start_row("class='inquirybg'"); label_cell(""._("Quantity on hand after") . " " . $_POST['BeforeDate']."", "align=center colspan=$header_span"); @@ -195,4 +191,3 @@ end_table(1); div_end(); end_page(); -?>