forked from sahujaunpuri/smart_retail
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinventory_movement.php
executable file
·313 lines (263 loc) · 9.99 KB
/
inventory_movement.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
<?php
require_once './includes/class.dbc.php';
require_once './includes/functions.php';
require_once './includes/movement_functions.php';
$db = new dbc();
$dbc = $db->connect();
//do page transactions here
//query initialisation
if(isset($_POST['filter']))
{
//grab the product code and the year.
// the display the table.
$year = filter($_POST['year']);
$product = filter($_POST['product']);
if(empty($product) || $product == '--')
{
//show anm error message
$error = "Sorry. You must select a product";
}
if(empty($year) || $year == '--')
{
$error = "Sorry You must select the year";
}
if(!isset($error))
{
//htne show the result.
$show_results = TRUE;
}
}
//now page content
require_once './includes/header.php';
require_once './includes/sidebar.php';
require_once './includes/heading.php';
?>
<br>
<div class="row">
<?php
require_once './includes/notifications.php';
?>
<?php
require_once './letter_head.php';
?>
<div class="row">
<!--search bar-->
<div class="col-md-12">
<div class="text-center">
<h2> <strong> INVENTORY MOVEMENT </strong> </h2>
From <strong>January <?php echo date("- Y"); ?> </strong>
To
<strong> December <?php echo date("- Y"); ?> </strong>
</div>
</div>
</div>
<?php
if(isset($_POST['filter']) && !isset($error))
{
?>
<br>
<div class="row text-center">
<div class="col-md-4">
Product Code: <strong> <?php echo $product; ?> </strong>
</div>
<div class="col-md-4">
Product name: <strong>
<?php
$query = "SELECT `product_name` FROM `products` WHERE `product_code` = '$product'";
$rs = mysqli_query($dbc, $query);
list($pname) = mysqli_fetch_array($rs);
echo $pname;
?>
</strong>
</div>
<div class="col-md-4">
Year: <strong> <?php echo $year; ?> </strong>
</div>
</div>
<br>
<?php
}
?>
<br>
<div class="row">
<!--search bar-->
<form action="inventory_movement.php" method="POST">
<div class="col-md-4">
<div class="text-center">
<select name="product" class="select2 " required="true" style="width: 100%;">
<option value="--">
-- SELECT PRODUCT --
</option>
<?php
$query = "SELECT * FROM `products`";
$result = mysqli_query($dbc, $query)
or die("Error. Could not get products");
while($row = mysqli_fetch_array($result))
{
//echo them out.
?>
<option value="<?php echo $row['product_code']; ?>">
<?php echo $row['product_name']; ?>
</option>
<?php
}
?>
</select>
</div>
</div>
<div class="col-md-3">
<select name="year" class="form-control" required="true" >
<option value="--">
-- SELECT YEAR --
</option>
<?php
$query = "SELECT * FROM `sales` GROUP BY `year`";
$result = mysqli_query($dbc, $query)
or die("Error. Could not get products");
while($row = mysqli_fetch_array($result))
{
//echo them out.
?>
<option value="<?php echo $row['year']; ?>">
<?php echo $row['year']; ?>
</option>
<?php
}
?>
</select>
</div>
<div class="col-md-3">
<input type="submit" class="btn btn-block btn-success" value="Filter" name="filter">
</div>
<div class="col-md-2">
</div>
</form>
</div>
<br>
<div class="row">
<div class="col-md-12">
<div class="table-responsive">
<div id="table_area">
<table class="table table-striped table-bordered text-center white-background">
<tr>
<th>
N<sup>o</sup>
</th>
<th>
Month
</th>
<th>
Opening Qty
</th>
<th>
Closing Qty
</th>
<th>
Action
</th>
</tr>
<?php
if(!isset($_POST['filter']))
{
?>
<tr>
<td colspan="7">
<strong class="text-primary">
Please select a product and a year
</strong>
</td>
</tr>
<?php
}
else
{
if(isset($show_results))
{
//then do your query here
for($i = 1; $i <= 12; $i++)
{
//append a zero at the front if the digit is one
if(strlen($i) == 1)
{
$num = '0' . $i;
}
else
{
$num = $i;
}
?>
<tr>
<td>
<?php echo $i; ?>
</td>
<td>
<?php echo get_month($i); ?>
</td>
<td>
<?php
//call the function that will return the starting quantity
echo get_start_qty($num, $year, $product);
?>
</td>
<td>
<?php
//call the function that will return the ending quantity
echo get_end_qty($num, $year, $product);
?>
</td>
<td>
<a href="movement.php?product=<?php echo $product; ?>&year=<?php
echo $year; ?>&month=<?php echo $i; ?>"
class="btn btn-success">
More Details
</a>
</td>
</tr>
<?php
}
}
}
?>
</table>
</div>
</div>
</div>
</div>
<br><br>
<div class="row">
<div class="col-md-12">
<div class="col-md-8">
</div>
<div class="col-md-4">
<?php
if(isset($show_search))
{
$url = "print_purchase_period.php?start_date=" . $s_date . "&end_date=" . $e_date;
?>
<a href="#" class="btn btn-success " onclick="window.open('<?php echo $url; ?>', '', 'width=800,height=400')">
<i class="fa fa-print"></i>
Print
</a>
<?php
}
else
{
?>
<a href="#" class="btn btn-success" id="all">
<i class="fa fa-print"></i>
Print
</a>
<?php
}
?>
<a href="#" class="btn btn-success">
<i class="fa fa-close"></i>
Close
</a>
</div>
</div>
</div>
</div>
<?php
require_once './includes/bottom.php';
?>