Double semicolon line endings fixed by @apmuthu.
[fa-stable.git] / inventory / view / view_transfer.php
index 75f567cbe50c6a72270a49be7a389f867e75642d..f9c77816e9f0acfd9dbef5c0a0f9e46514372da2 100644 (file)
@@ -1,11 +1,20 @@
 <?php
-
-$page_security = 1;
-$path_to_root="../..";
+/**********************************************************************
+    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_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");
@@ -16,42 +25,35 @@ if (isset($_GET["trans_no"]))
        $trans_no = $_GET["trans_no"];
 }
 
-$transfer_items = get_stock_transfer($trans_no);
-
-$from_trans = $transfer_items[0];
-$to_trans = $transfer_items[1];
+$trans = get_stock_transfer($trans_no);
 
-display_heading(systypes::name(systypes::location_transfer()) . " #$trans_no");
+display_heading($systypes_array[ST_LOCTRANSFER] . " #$trans_no");
 
 echo "<br>";
-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'");
-label_cells(_("From Location"), $from_trans['location_name'], "class='tableheader2'");
-label_cells(_("To Location"), $to_trans['location_name'], "class='tableheader2'");
+label_cells(_("Reference"), $trans['reference'], "class='tableheader2'");
+label_cells(_("Date"), sql2date($trans['tran_date']), "class='tableheader2'");
 end_row();
 start_row();
-label_cells(_("Reference"), $from_trans['reference'], "class='tableheader2'");
-$adjustment_type = get_movement_type($from_trans['person_id']) ;
-label_cells(_("Adjustment Type"), $adjustment_type['name'], "class='tableheader2'");
-label_cells(_("Date"), sql2date($from_trans['tran_date']), "class='tableheader2'");
+label_cells(_("From Location"), $trans['from_name'], "class='tableheader2'");
+label_cells(_("To Location"), $trans['to_name'], "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 "<br>";
-start_table("$table_style width=90%");
+start_table(TABLESTYLE, "width='90%'");
 
-$th = array(_("Item"), _("Description"), _("Quantity"), _("Units"));
+$th = array(_("Item Code"), _("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))
 {
-       if ($item['loc_code'] == $to_trans['loc_code'])
+       if ($item['loc_code'] == $trans['to_loc'])
        {
         alt_table_row_color($k);
 
@@ -59,13 +61,12 @@ while ($item = db_fetch($transfer_items))
         label_cell($item['description']);
         qty_cell($item['qty'], false, get_qty_dec($item['stock_id']));
         label_cell($item['units']);
-        end_row();;
+        end_row();
        }
 }
 
 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);
-?>
\ No newline at end of file
+end_page(true, false, false, ST_LOCTRANSFER, $trans_no);