Fixed tabbed dialogs. Removed redundant 'popup' variables.
[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 ($SysPrefs->use_popup_windows)
23         $js .= get_js_open_window(800, 500);
24 if (user_use_date_picker())
25         $js .= get_js_date_picker();
26 page(_($help_context = "Inventory Item Movement"), isset($_GET['stock_id']), false, "", $js);
27 //------------------------------------------------------------------------------------------------
28
29 check_db_has_stock_items(_("There are no items defined in the system."));
30
31 if(get_post('ShowMoves'))
32 {
33         $Ajax->activate('doc_tbl');
34 }
35
36 if (isset($_GET['stock_id']))
37 {
38         $_POST['stock_id'] = $_GET['stock_id'];
39 }
40
41 start_form();
42
43 if (!isset($_POST['stock_id']))
44         $_POST['stock_id'] = get_global_stock_item();
45
46 start_table(TABLESTYLE_NOBORDER);
47 start_row();
48 if (!$page_nested)
49         stock_costable_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, true);
57
58 date_cells(_("From:"), 'AfterDate', '', null, -user_transaction_days());
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 $display_location = !$_POST['StockLocation'];
71
72 $result = get_stock_movements($_POST['stock_id'], $_POST['StockLocation'],
73         $_POST['BeforeDate'], $_POST['AfterDate']);
74
75 div_start('doc_tbl');
76 start_table(TABLESTYLE);
77 $th = array(_("Type"), _("#"), _("Reference"));
78
79 if ($display_location)
80         array_push($th, _("Location"));
81
82 array_push($th, _("Date"), _("Detail"), _("Quantity In"), _("Quantity Out"), _("Quantity On Hand"));
83
84 table_header($th);
85
86 $before_qty = get_qoh_on_date($_POST['stock_id'], $_POST['StockLocation'], add_days($_POST['AfterDate'], -1));
87
88 $after_qty = $before_qty;
89
90 start_row("class='inquirybg'");
91 $header_span = $display_location ? 6 : 5;
92 label_cell("<b>"._("Quantity on hand before") . " " . $_POST['AfterDate']."</b>", "align=center colspan=$header_span");
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
131         if($display_location) {
132                 label_cell($myrow['loc_code']);
133         }
134         label_cell($trandate);
135
136         $gl_posting = "";
137
138         label_cell($myrow['name']);
139
140         label_cell((($myrow["qty"] >= 0) ? $quantity_formatted : ""), "nowrap align=right");
141         label_cell((($myrow["qty"] < 0) ? $quantity_formatted : ""), "nowrap align=right");
142         qty_cell($after_qty, false, $dec);
143         end_row();
144
145         $j++;
146         if ($j == 12)
147         {
148                 $j = 1;
149                 table_header($th);
150         }
151 }
152
153 start_row("class='inquirybg'");
154 label_cell("<b>"._("Quantity on hand after") . " " . $_POST['BeforeDate']."</b>", "align=center colspan=$header_span");
155 qty_cell($total_in, false, $dec);
156 qty_cell($total_out, false, $dec);
157 qty_cell($after_qty, false, $dec);
158 end_row();
159
160 end_table(1);
161 div_end();
162 end_page();
163