1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102
|
<?php
/**********************************************************************
Copyright (C) FrontAccounting, LLC.
Released under the terms of the GNU General Public License, GPL,
as published by the Free Software Foundation, either version 3
of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
***********************************************************************/
$page_security = 'SA_REORDER';
$path_to_root = "..";
include_once($path_to_root . "/includes/session.inc");
page(_($help_context = "Reorder Levels"));
include_once($path_to_root . "/includes/date_functions.inc");
include_once($path_to_root . "/includes/ui.inc");
include_once($path_to_root . "/includes/data_checks.inc");
include_once($path_to_root . "/inventory/includes/inventory_db.inc");
check_db_has_costable_items(_("There are no inventory items defined in the system (Purchased or manufactured items)."));
//------------------------------------------------------------------------------------
if (isset($_GET['stock_id']))
$_POST['stock_id'] = $_GET['stock_id'];
if (list_updated('stock_id'))
{
$Ajax->activate('show_heading');
$Ajax->activate('reorders');
}
//------------------------------------------------------------------------------------
start_form();
if (!isset($_POST['stock_id']))
$_POST['stock_id'] = get_global_stock_item();
echo "<center>" . _("Item:"). " ";
echo stock_costable_items_list('stock_id', $_POST['stock_id'], false, true);
echo "<hr></center>";
div_start('show_heading');
stock_item_heading($_POST['stock_id']);
br();
div_end();
set_global_stock_item($_POST['stock_id']);
div_start('reorders');
start_table("$table_style width=30%");
$th = array(_("Location"), _("Quantity On Hand"), _("Re-Order Level"));
table_header($th);
$j = 1;
$k=0; //row colour counter
$result = get_loc_details($_POST['stock_id']);
while ($myrow = db_fetch($result))
{
alt_table_row_color($k);
if (isset($_POST['UpdateData']) && check_num($myrow["loc_code"]))
{
$myrow["reorder_level"] = input_num($myrow["loc_code"]);
set_reorder_level($_POST['stock_id'], $myrow["loc_code"], input_num($myrow["loc_code"]));
display_notification(_("Reorder levels has been updated."));
}
$qoh = get_qoh_on_date($_POST['stock_id'], $myrow["loc_code"]);
label_cell($myrow["location_name"]);
$_POST[$myrow["loc_code"]] = qty_format($myrow["reorder_level"], $_POST['stock_id'], $dec);
qty_cell($qoh, false, $dec);
qty_cells(null, $myrow["loc_code"], null, null, null, $dec);
end_row();
$j++;
If ($j == 12)
{
$j = 1;
table_header($th);
}
}
end_table(1);
div_end();
submit_center('UpdateData', _("Update"), true, false, 'default');
end_form();
end_page();
?>
|