X-Git-Url: https://delta.frontaccounting.com/gitweb/?a=blobdiff_plain;f=inventory%2Fview%2Fview_transfer.php;h=f9c77816e9f0acfd9dbef5c0a0f9e46514372da2;hb=7226477a2624571ba8460f773092f6e38bbc46f3;hp=ce17ce75eccdc3ca3e49b96b158ac0c0a76e3228;hpb=fe5ffc2ae3bf2d2221a837131dd425a7c69633b9;p=fa-stable.git diff --git a/inventory/view/view_transfer.php b/inventory/view/view_transfer.php index ce17ce75..f9c77816 100644 --- a/inventory/view/view_transfer.php +++ b/inventory/view/view_transfer.php @@ -25,10 +25,7 @@ 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_array[ST_LOCTRANSFER] . " #$trans_no"); @@ -36,13 +33,12 @@ echo "
"; 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'"); -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(ST_LOCTRANSFER, $trans_no); @@ -51,13 +47,13 @@ end_table(2); 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(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); @@ -65,7 +61,7 @@ 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(); } }