X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Fview%2Fview_transfer.php;h=86ad8bfa23c813074184df7e9da707b4983857b3;hb=46c5f7a65a7659a44ae8254c63152074363d3987;hp=75f567cbe50c6a72270a49be7a389f867e75642d;hpb=c09be0dad6b05131e240349a375af7a4b7bf3444;p=fa-stable.git diff --git a/inventory/view/view_transfer.php b/inventory/view/view_transfer.php index 75f567cb..86ad8bfa 100644 --- a/inventory/view/view_transfer.php +++ b/inventory/view/view_transfer.php @@ -1,11 +1,20 @@ . +***********************************************************************/ +$page_security = 'SA_ITEMSTRANSVIEW'; +$path_to_root = "../.."; include($path_to_root . "/includes/session.inc"); -page(_("View Inventory Transfer"), true); +page(_($help_context = "View Inventory Transfer"), true); include_once($path_to_root . "/includes/date_functions.inc"); include_once($path_to_root . "/includes/ui.inc"); @@ -21,10 +30,10 @@ $transfer_items = get_stock_transfer($trans_no); $from_trans = $transfer_items[0]; $to_trans = $transfer_items[1]; -display_heading(systypes::name(systypes::location_transfer()) . " #$trans_no"); +display_heading($systypes_array[ST_LOCTRANSFER] . " #$trans_no"); echo "
"; -start_table("$table_style2 width=90%"); +start_table(TABLESTYLE2, "width=90%"); start_row(); label_cells(_("Item"), $from_trans['stock_id'] . " - " . $from_trans['description'], "class='tableheader2'"); @@ -38,16 +47,15 @@ label_cells(_("Adjustment Type"), $adjustment_type['name'], "class='tableheader2 label_cells(_("Date"), sql2date($from_trans['tran_date']), "class='tableheader2'"); end_row(); -comments_display_row(systypes::location_transfer(), $trans_no); +comments_display_row(ST_LOCTRANSFER, $trans_no); -end_table(1); +end_table(2); -echo "
"; -start_table("$table_style width=90%"); +start_table(TABLESTYLE, "width=90%"); $th = array(_("Item"), _("Description"), _("Quantity"), _("Units")); table_header($th); -$transfer_items = get_stock_moves(systypes::location_transfer(), $trans_no); +$transfer_items = get_stock_moves(ST_LOCTRANSFER, $trans_no); $k = 0; while ($item = db_fetch($transfer_items)) { @@ -65,7 +73,7 @@ while ($item = db_fetch($transfer_items)) end_table(1); -is_voided_display(systypes::location_transfer(), $trans_no, _("This transfer has been voided.")); +is_voided_display(ST_LOCTRANSFER, $trans_no, _("This transfer has been voided.")); -end_page(true); +end_page(true, false, false, ST_LOCTRANSFER, $trans_no); ?> \ No newline at end of file