Double semicolon line endings fixed by @apmuthu.
[fa-stable.git] / inventory / view / view_transfer.php
1 <?php
2 /**********************************************************************
3     Copyright (C) FrontAccounting, LLC.
4         Released under the terms of the GNU General Public License, GPL, 
5         as published by the Free Software Foundation, either version 3 
6         of the License, or (at your option) any later version.
7     This program is distributed in the hope that it will be useful,
8     but WITHOUT ANY WARRANTY; without even the implied warranty of
9     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  
10     See the License here <http://www.gnu.org/licenses/gpl-3.0.html>.
11 ***********************************************************************/
12 $page_security = 'SA_ITEMSTRANSVIEW';
13 $path_to_root = "../..";
14
15 include($path_to_root . "/includes/session.inc");
16
17 page(_($help_context = "View Inventory Transfer"), true);
18
19 include_once($path_to_root . "/includes/date_functions.inc");
20 include_once($path_to_root . "/includes/ui.inc");
21 include_once($path_to_root . "/gl/includes/gl_db.inc");
22
23 if (isset($_GET["trans_no"]))
24 {
25         $trans_no = $_GET["trans_no"];
26 }
27
28 $trans = get_stock_transfer($trans_no);
29
30 display_heading($systypes_array[ST_LOCTRANSFER] . " #$trans_no");
31
32 echo "<br>";
33 start_table(TABLESTYLE2, "width='90%'");
34
35 start_row();
36 label_cells(_("Reference"), $trans['reference'], "class='tableheader2'");
37 label_cells(_("Date"), sql2date($trans['tran_date']), "class='tableheader2'");
38 end_row();
39 start_row();
40 label_cells(_("From Location"), $trans['from_name'], "class='tableheader2'");
41 label_cells(_("To Location"), $trans['to_name'], "class='tableheader2'");
42 end_row();
43
44 comments_display_row(ST_LOCTRANSFER, $trans_no);
45
46 end_table(2);
47
48 start_table(TABLESTYLE, "width='90%'");
49
50 $th = array(_("Item Code"), _("Description"), _("Quantity"), _("Units"));
51 table_header($th);
52 $transfer_items = get_stock_moves(ST_LOCTRANSFER, $trans_no);
53 $k = 0;
54 while ($item = db_fetch($transfer_items))
55 {
56         if ($item['loc_code'] == $trans['to_loc'])
57         {
58         alt_table_row_color($k);
59
60         label_cell($item['stock_id']);
61         label_cell($item['description']);
62         qty_cell($item['qty'], false, get_qty_dec($item['stock_id']));
63         label_cell($item['units']);
64         end_row();
65         }
66 }
67
68 end_table(1);
69
70 is_voided_display(ST_LOCTRANSFER, $trans_no, _("This transfer has been voided."));
71
72 end_page(true, false, false, ST_LOCTRANSFER, $trans_no);