Changed API for input/lists functions, added empty hints when needed
[fa-stable.git] / inventory / inquiry / stock_movements.php
1 <?php
2
3
4 $page_security = 2;
5 $path_to_root="../..";
6 include_once($path_to_root . "/includes/session.inc");
7
8 include_once($path_to_root . "/includes/date_functions.inc");
9 include_once($path_to_root . "/includes/banking.inc");
10 include_once($path_to_root . "/sales/includes/sales_db.inc");
11
12 include_once($path_to_root . "/includes/ui.inc");
13 $js = "";
14 if ($use_popup_windows)
15         $js .= get_js_open_window(800, 500);
16 if ($use_date_picker)
17         $js .= get_js_date_picker();
18
19 page(_("Inventory Item Movement"), false, false, "", $js);
20
21 if (isset($_GET['stock_id']))
22 {
23         $_POST['stock_id'] = $_GET['stock_id'];
24 }
25
26 start_form(false, true);
27
28 if (!isset($_POST['stock_id']))
29         $_POST['stock_id'] = get_global_stock_item();
30
31 start_table("class='tablestyle_noborder'");
32
33 stock_items_list_cells(_("Item:"), 'stock_id', $_POST['stock_id']);
34
35 locations_list_cells(_("From Location:"), 'StockLocation', null);
36
37 date_cells(_("From:"), 'AfterDate', '', null, -30);
38 date_cells(_("To:"), 'BeforeDate');
39
40 submit_cells('ShowMoves',_("Show Movements"));
41 end_table();
42 end_form();
43
44 set_global_stock_item($_POST['stock_id']);
45
46 $before_date = date2sql($_POST['BeforeDate']);
47 $after_date = date2sql($_POST['AfterDate']);
48
49 $sql = "SELECT type, trans_no, tran_date, person_id, qty, reference
50         FROM ".TB_PREF."stock_moves
51         WHERE loc_code='" . $_POST['StockLocation'] . "'
52         AND tran_date >= '". $after_date . "'
53         AND tran_date <= '" . $before_date . "'
54         AND stock_id = '" . $_POST['stock_id'] . "' ORDER BY tran_date,trans_id";
55 $result = db_query($sql, "could not query stock moves");
56
57 check_db_error("The stock movements for the selected criteria could not be retrieved",$sql);
58
59 start_table("$table_style width=70%");
60 $th = array(_("Type"), _("#"), _("Reference"), _("Date"), _("Detail"),
61         _("Quantity In"), _("Quantity Out"), _("Quantity On Hand"));
62
63 table_header($th);
64
65 $sql = "SELECT SUM(qty) FROM ".TB_PREF."stock_moves WHERE stock_id='" . $_POST['stock_id'] . "'
66         AND loc_code='" . $_POST['StockLocation'] . "'
67         AND tran_date < '" . $after_date . "'";
68 $before_qty = db_query($sql, "The starting quantity on hand could not be calculated");
69
70 $before_qty_row = db_fetch_row($before_qty);
71 $after_qty = $before_qty = $before_qty_row[0];
72
73 if (!isset($before_qty_row[0]))
74 {
75         $after_qty = $before_qty = 0;
76 }
77
78 start_row("class='inquirybg'");
79 label_cell("<b>"._("Quantity on hand before") . " " . $_POST['AfterDate']."</b>", "align=center colspan=7");
80 qty_cell($before_qty);
81 end_row();
82
83 $j = 1;
84 $k = 0; //row colour counter
85
86 $total_in = 0;
87 $total_out = 0;
88
89 while ($myrow = db_fetch($result))
90 {
91
92         alt_table_row_color($k);
93
94         $trandate = sql2date($myrow["tran_date"]);
95
96         $type_name = systypes::name($myrow["type"]);
97
98         if ($myrow["qty"] > 0)
99         {
100                 $quantity_formatted = number_format2($myrow["qty"],user_qty_dec());
101                 $total_in += $myrow["qty"];
102         }
103         else
104         {
105                 $quantity_formatted = number_format2(-$myrow["qty"],user_qty_dec());
106                 $total_out += -$myrow["qty"];
107         }
108         $after_qty += $myrow["qty"];
109
110         label_cell($type_name);
111
112         label_cell(get_trans_view_str($myrow["type"], $myrow["trans_no"]));
113
114         label_cell(get_trans_view_str($myrow["type"], $myrow["trans_no"], $myrow["reference"]));
115
116         label_cell($trandate);
117
118         $person = $myrow["person_id"];
119         $gl_posting = "";
120
121         if (($myrow["type"] == 13) || ($myrow["type"] == 11))
122         {
123                 $cust_row = get_customer_details_from_trans($myrow["type"], $myrow["trans_no"]);
124
125                 if (strlen($cust_row['name']) > 0)
126                         $person = $cust_row['name'] . " (" . $cust_row['br_name'] . ")";
127
128         }
129         elseif ($myrow["type"] == 25)
130         {
131                 // get the supplier name
132                 $sql = "SELECT supp_name FROM ".TB_PREF."suppliers WHERE supplier_id = '" . $myrow["person_id"] . "'";
133                 $supp_result = db_query($sql,"check failed");
134
135                 $supp_row = db_fetch($supp_result);
136
137                 if (strlen($supp_row['supp_name']) > 0)
138                         $person = $supp_row['supp_name'];
139         }
140         elseif ($myrow["type"] == systypes::location_transfer() || $myrow["type"] == systypes::inventory_adjustment())
141         {
142                 // get the adjustment type
143                 $movement_type = get_movement_type($myrow["person_id"]);
144                 $person = $movement_type["name"];
145         }
146         elseif ($myrow["type"]==systypes::work_order() || $myrow["type"] == 28  ||
147                 $myrow["type"] == 29)
148         {
149                 $person = "";
150         }
151
152         label_cell($person);
153
154         label_cell((($myrow["qty"] >= 0) ? $quantity_formatted : ""), "nowrap align=right");
155         label_cell((($myrow["qty"] < 0) ? $quantity_formatted : ""), "nowrap align=right");
156         label_cell(number_format2($after_qty,user_qty_dec()), "nowrap align=right");
157         end_row();
158         $j++;
159         If ($j == 12)
160         {
161                 $j = 1;
162                 table_header($th);
163         }
164 //end of page full new headings if
165 }
166 //end of while loop
167
168 if ($total_in != 0 || $total_out != 0)
169 {
170         start_row("class='inquirybg'");
171     label_cell("<b>"._("Quantity on hand after") . " " . $_POST['BeforeDate']."</b>", "align=center colspan=7");
172     qty_cell($after_qty);
173     end_row();
174 }
175
176 end_table(1);
177
178 end_page();
179
180 ?>