698eb37fe802d291e9e4fc67525f35cae515a932
[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=5");
80 label_cell("&nbsp;", "colspan=2");
81 qty_cell($before_qty);
82 end_row();
83
84 $j = 1;
85 $k = 0; //row colour counter
86
87 $total_in = 0;
88 $total_out = 0;
89
90 while ($myrow = db_fetch($result))
91 {
92
93         alt_table_row_color($k);
94
95         $trandate = sql2date($myrow["tran_date"]);
96
97         $type_name = systypes::name($myrow["type"]);
98
99         if ($myrow["qty"] > 0)
100         {
101                 $quantity_formatted = number_format2($myrow["qty"],user_qty_dec());
102                 $total_in += $myrow["qty"];
103         }
104         else
105         {
106                 $quantity_formatted = number_format2(-$myrow["qty"],user_qty_dec());
107                 $total_out += -$myrow["qty"];
108         }
109         $after_qty += $myrow["qty"];
110
111         label_cell($type_name);
112
113         label_cell(get_trans_view_str($myrow["type"], $myrow["trans_no"]));
114
115         label_cell(get_trans_view_str($myrow["type"], $myrow["trans_no"], $myrow["reference"]));
116
117         label_cell($trandate);
118
119         $person = $myrow["person_id"];
120         $gl_posting = "";
121
122         if (($myrow["type"] == 13) || ($myrow["type"] == 11))
123         {
124                 $cust_row = get_customer_details_from_trans($myrow["type"], $myrow["trans_no"]);
125
126                 if (strlen($cust_row['name']) > 0)
127                         $person = $cust_row['name'] . " (" . $cust_row['br_name'] . ")";
128
129         }
130         elseif ($myrow["type"] == 25)
131         {
132                 // get the supplier name
133                 $sql = "SELECT supp_name FROM ".TB_PREF."suppliers WHERE supplier_id = '" . $myrow["person_id"] . "'";
134                 $supp_result = db_query($sql,"check failed");
135
136                 $supp_row = db_fetch($supp_result);
137
138                 if (strlen($supp_row['supp_name']) > 0)
139                         $person = $supp_row['supp_name'];
140         }
141         elseif ($myrow["type"] == systypes::location_transfer() || $myrow["type"] == systypes::inventory_adjustment())
142         {
143                 // get the adjustment type
144                 $movement_type = get_movement_type($myrow["person_id"]);
145                 $person = $movement_type["name"];
146         }
147         elseif ($myrow["type"]==systypes::work_order() || $myrow["type"] == 28  ||
148                 $myrow["type"] == 29)
149         {
150                 $person = "";
151         }
152
153         label_cell($person);
154
155         label_cell((($myrow["qty"] >= 0) ? $quantity_formatted : ""), "nowrap align=right");
156         label_cell((($myrow["qty"] < 0) ? $quantity_formatted : ""), "nowrap align=right");
157         label_cell(number_format2($after_qty,user_qty_dec()), "nowrap align=right");
158         end_row();
159         $j++;
160         If ($j == 12)
161         {
162                 $j = 1;
163                 table_header($th);
164         }
165 //end of page full new headings if
166 }
167 //end of while loop
168
169 // 2008-06-14. Always write this.
170 //if ($total_in != 0 || $total_out != 0)
171 //{
172         start_row("class='inquirybg'");
173     label_cell("<b>"._("Quantity on hand after") . " " . $_POST['BeforeDate']."</b>", "align=center colspan=5");
174     qty_cell($total_in);
175     qty_cell($total_out);
176     qty_cell($after_qty);
177     end_row();
178 //}
179
180 end_table(1);
181
182 end_page();
183
184 ?>