1dd1382733810d280c45e26ea2db506279e8ff2d
[fa-stable.git] / inventory / inquiry / stock_movements.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 include_once($path_to_root . "/includes/session.inc");
15
16 include_once($path_to_root . "/includes/date_functions.inc");
17 include_once($path_to_root . "/includes/banking.inc");
18 include_once($path_to_root . "/sales/includes/sales_db.inc");
19
20 include_once($path_to_root . "/includes/ui.inc");
21 $js = "";
22 if ($use_popup_windows)
23         $js .= get_js_open_window(800, 500);
24 if ($use_date_picker)
25         $js .= get_js_date_picker();
26
27 page(_($help_context = "Inventory Item Movement"), false, false, "", $js);
28 //------------------------------------------------------------------------------------------------
29
30 check_db_has_stock_items(_("There are no items defined in the system."));
31
32 if(get_post('ShowMoves'))
33 {
34         $Ajax->activate('doc_tbl');
35 }
36
37 if (isset($_GET['stock_id']))
38 {
39         $_POST['stock_id'] = $_GET['stock_id'];
40 }
41
42 start_form();
43
44 if (!isset($_POST['stock_id']))
45         $_POST['stock_id'] = get_global_stock_item();
46
47 start_table(TABLESTYLE_NOBORDER);
48 start_row();
49 stock_items_list_cells(_("Item:"), 'stock_id', $_POST['stock_id']);
50 end_row();
51 end_table();
52
53 start_table(TABLESTYLE_NOBORDER);
54 start_row();
55
56 locations_list_cells(_("From Location:"), 'StockLocation', null);
57
58 date_cells(_("From:"), 'AfterDate', '', null, -30);
59 date_cells(_("To:"), 'BeforeDate');
60
61 submit_cells('ShowMoves',_("Show Movements"),'',_('Refresh Inquiry'), 'default');
62 end_row();
63 end_table();
64 end_form();
65
66 set_global_stock_item($_POST['stock_id']);
67
68 $before_date = date2sql($_POST['BeforeDate']);
69 $after_date = date2sql($_POST['AfterDate']);
70
71 $result = get_stock_movements($_POST['stock_id'], $_POST['StockLocation'],
72         $_POST['BeforeDate'], $_POST['AfterDate']);
73
74 div_start('doc_tbl');
75 start_table(TABLESTYLE);
76 $th = array(_("Type"), _("#"), _("Reference"), _("Date"), _("Detail"),
77         _("Quantity In"), _("Quantity Out"), _("Quantity On Hand"));
78
79 table_header($th);
80
81 $before_qty = get_stock_movements_before($_POST['stock_id'], $_POST['StockLocation'], $_POST['AfterDate']);
82         
83 $after_qty = $before_qty;
84
85 /*
86 if (!isset($before_qty_row[0]))
87 {
88         $after_qty = $before_qty = 0;
89 }
90 */
91 start_row("class='inquirybg'");
92 label_cell("<b>"._("Quantity on hand before") . " " . $_POST['AfterDate']."</b>", "align=center colspan=5");
93 label_cell("&nbsp;", "colspan=2");
94 $dec = get_qty_dec($_POST['stock_id']);
95 qty_cell($before_qty, false, $dec);
96 end_row();
97
98 $j = 1;
99 $k = 0; //row colour counter
100
101 $total_in = 0;
102 $total_out = 0;
103
104 while ($myrow = db_fetch($result))
105 {
106
107         alt_table_row_color($k);
108
109         $trandate = sql2date($myrow["tran_date"]);
110
111         $type_name = $systypes_array[$myrow["type"]];
112
113         if ($myrow["qty"] > 0)
114         {
115                 $quantity_formatted = number_format2($myrow["qty"], $dec);
116                 $total_in += $myrow["qty"];
117         }
118         else
119         {
120                 $quantity_formatted = number_format2(-$myrow["qty"], $dec);
121                 $total_out += -$myrow["qty"];
122         }
123         $after_qty += $myrow["qty"];
124
125         label_cell($type_name);
126
127         label_cell(get_trans_view_str($myrow["type"], $myrow["trans_no"]));
128
129         label_cell(get_trans_view_str($myrow["type"], $myrow["trans_no"], $myrow["reference"]));
130         label_cell($trandate);
131
132         $person = $myrow["person_id"];
133         $gl_posting = "";
134
135         if (($myrow["type"] == ST_CUSTDELIVERY) || ($myrow["type"] == ST_CUSTCREDIT))
136         {
137                 $cust_row = get_customer_details_from_trans($myrow["type"], $myrow["trans_no"]);
138
139                 if (strlen($cust_row['name']) > 0)
140                         $person = $cust_row['name'] . " (" . $cust_row['br_name'] . ")";
141
142         }
143         elseif ($myrow["type"] == ST_SUPPRECEIVE || $myrow['type'] == ST_SUPPCREDIT)
144         {
145                 // get the supplier name
146                 $supp_name = get_supplier_name($myrow["person_id"]);
147
148                 if (strlen($supp_name) > 0)
149                         $person = $supp_name;
150         }
151         elseif ($myrow["type"] == ST_LOCTRANSFER || $myrow["type"] == ST_INVADJUST)
152         {
153                 // get the adjustment type
154                 $movement_type = get_movement_type($myrow["person_id"]);
155                 $person = $movement_type["name"];
156         }
157         elseif ($myrow["type"]==ST_WORKORDER || $myrow["type"] == ST_MANUISSUE  ||
158                 $myrow["type"] == ST_MANURECEIVE)
159         {
160                 $person = "";
161         }
162
163         label_cell($person);
164
165         label_cell((($myrow["qty"] >= 0) ? $quantity_formatted : ""), "nowrap align=right");
166         label_cell((($myrow["qty"] < 0) ? $quantity_formatted : ""), "nowrap align=right");
167         qty_cell($after_qty, false, $dec);
168         end_row();
169         $j++;
170         If ($j == 12)
171         {
172                 $j = 1;
173                 table_header($th);
174         }
175 //end of page full new headings if
176 }
177 //end of while loop
178
179 start_row("class='inquirybg'");
180 label_cell("<b>"._("Quantity on hand after") . " " . $_POST['BeforeDate']."</b>", "align=center colspan=5");
181 qty_cell($total_in, false, $dec);
182 qty_cell($total_out, false, $dec);
183 qty_cell($after_qty, false, $dec);
184 end_row();
185
186 end_table(1);
187 div_end();
188 end_page();
189
190 ?>