Global change in naming convention from std_cost to unit_cost.
[fa-stable.git] / inventory / view / view_adjustment.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 Adjustment"), 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 . "/inventory/includes/inventory_db.inc");
22
23 if (isset($_GET["trans_no"]))
24 {
25         $trans_no = $_GET["trans_no"];
26 }
27
28 display_heading($systypes_array[ST_INVADJUST] . " #$trans_no");
29
30 br(1);
31 $adjustment_items = get_stock_adjustment_items($trans_no);
32 $k = 0;
33 $header_shown = false;
34 while ($adjustment = db_fetch($adjustment_items))
35 {
36
37         if (!$header_shown)
38         {
39
40                 start_table(TABLESTYLE2, "width='90%'");
41                 start_row();
42                 label_cells(_("At Location"), $adjustment['location_name'], "class='tableheader2'");
43         label_cells(_("Reference"), $adjustment['reference'], "class='tableheader2'", "colspan=6");
44                 label_cells(_("Date"), sql2date($adjustment['tran_date']), "class='tableheader2'");
45                 end_row();
46                 comments_display_row(ST_INVADJUST, $trans_no);
47
48                 end_table();
49                 $header_shown = true;
50
51                 echo "<br>";
52                 start_table(TABLESTYLE, "width='90%'");
53
54         $th = array(_("Item Code"), _("Description"), _("Quantity"),
55                 _("Units"), _("Unit Cost"));
56         table_header($th);
57         }
58
59     alt_table_row_color($k);
60
61     label_cell($adjustment['stock_id']);
62     label_cell($adjustment['description']);
63     qty_cell($adjustment['qty'], false, get_qty_dec($adjustment['stock_id']));
64     label_cell($adjustment['units']);
65     amount_decimal_cell($adjustment['unit_cost']);
66     end_row();
67 }
68
69 end_table(1);
70
71 is_voided_display(ST_INVADJUST, $trans_no, _("This adjustment has been voided."));
72
73 end_page(true, false, false, ST_INVADJUST, $trans_no);