-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathraw_closing_stock.php
423 lines (374 loc) · 20.5 KB
/
raw_closing_stock.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
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
<?php
session_start();
if(empty($_SESSION['loggedin_id']))
{
header("Location: index.php");
} else {
include("db_connection.php");
// $sql = "SELECT trw.*,wt.id wood_id, wt.wood_type FROM ta_raw_wood trw join ta_wood_type wt on (wt.id = trw.wood_type) ";
$sql = "SELECT COUNT(trw.wood_type) woodcount,SUM(trw.thickness) as thickness, SUM(trw.cft) as cft, SUM(trw.cbm) as cbm, SUM(trw.price) as price, (SUM(trw.cft) * sum(trw.price)) as pricevalue, ((SUM(trw.cft) * sum(trw.price)) * 18)/100 as gst ,wt.id wood_id, wt.wood_type,SUM(trw.other_charges) as other_charges,SUM(trw.transport_charges) as transport_charges FROM ta_raw_wood trw join ta_wood_type wt on (wt.id = trw.wood_type) GROUP BY trw.wood_type";
$resp = $conn->query($sql);
// $gluesql = "SELECT trg.*,tg.glue_type glue_type_name FROM ta_raw_glue trg join ta_glue tg on (tg.id = trg.glue_type)";
$gluesql = "SELECT COUNT(trg.glue_type) as gluecount, SUM(trg.quantity) as quantity,sum(trg.uom) as uom, sum(trg.price) as price, (sum(trg.price) * sum(trg.quantity)) as pricevalue, (((sum(trg.price) * sum(trg.quantity)) * 18)) / 100 as gst,tg.glue_type glue_type_name,SUM(trg.other_charges) as other_charges,SUM(trg.transport_charges) as transport_charges FROM ta_raw_glue trg join ta_glue tg on (tg.id = trg.glue_type) GROUP BY tg.glue_type";
$respglue = $conn->query($gluesql);
// $sandsql = "SELECT tsp.*,tsgt.paper_grid FROM ta_sand_paper tsp join ta_sanding_grid_types tsgt on(tsgt.id = tsp.sand_paper_type)";
$sandsql = "SELECT count(tsp.sand_paper_type) as sandcount, tsp.brand, SUM(tsp.quantity) as quantity, SUM(tsp.uom) as uom, sum(tsp.price) price, (SUM(tsp.price) * SUM(tsp.quantity)) as pricevalue, ((SUM(tsp.price) * SUM(tsp.quantity)) * 18) /100 as gst,tsgt.paper_grid, SUM(tsp.other_charges) as other_charges,SUM(tsp.transport_charges) as transport_charges FROM ta_sand_paper tsp join ta_sanding_grid_types tsgt on(tsgt.id = tsp.sand_paper_type) GROUP BY tsp.sand_paper_type";
$sandresp = $conn->query($sandsql);
// $packsql = "SELECT tpm.*,tr.role_id,tr.material_type_id,tr.roles no_roels,tr.quantity no_qty, tr.uom no_uom,tpt.packing_type FROM ta_packing_material tpm join ta_roles tr on (tr.material_type_id = tpm.pm_id) left join ta_packing_type tpt on (tpt.id = tpm.packing_material_type)";
$packsql = "SELECT count(tpm.packing_material_type) packingcount,tpm.brand,SUM(tpm.price) price, (sum(tpm.price) * SUM(tr.quantity)) pricevalue, (((sum(tpm.price) * SUM(tr.quantity)) * 18 ) /100 ) as gst,tr.role_id,tr.material_type_id,tr.roles no_roels,SUM(tr.quantity) no_qty, SUM(tr.uom) no_uom,tpt.packing_type, SUM(tpm.other_charges) as other_charges,SUM(tpm.transport_charges) as transport_charges FROM ta_packing_material tpm join ta_roles tr on (tr.material_type_id = tpm.pm_id) left join ta_packing_type tpt on (tpt.id = tpm.packing_material_type) GROUP BY tpm.packing_material_type";
$packresp = $conn->query($packsql);
$woodtypesql = "SELECT * from ta_wood_type";
$woodTyperesp = $conn->query($woodtypesql);
while ($woodTyperesprows = $woodTyperesp->fetch_array()) {
$woodtypedata[] = $woodTyperesprows;
}
// print_r($woodtypedata);die;
?>
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Timber ERP system</title>
<!-- Custom fonts for this template-->
<link href="vendor/fontawesome-free/css/all.min.css" rel="stylesheet" type="text/css">
<link href="https://fonts.googleapis.com/css?family=Nunito:200,200i,300,300i,400,400i,600,600i,700,700i,800,800i,900,900i" rel="stylesheet">
<!-- Custom styles for this template-->
<link href="css/sb-admin-2.min.css" rel="stylesheet">
<link href="vendor/datatables/dataTables.bootstrap4.min.css" rel="stylesheet">
<style>
[contenteditable="true"]
{
border-style: solid;
border-width: 2px;
background-color: #fff;
}
</style>
</head>
<body id="page-top">
<!-- Page Wrapper -->
<div id="wrapper">
<!-- Sidebar -->
<?php include "sidebar.php"; ?>
<!-- End of Sidebar -->
<!-- Content Wrapper -->
<div id="content-wrapper" class="d-flex flex-column">
<!-- Main Content -->
<div id="content">
<!-- Topbar -->
<nav class="navbar navbar-expand navbar-light bg-white topbar mb-0 static-top shadow">
<!-- Sidebar Toggle (Topbar) -->
<button id="sidebarToggleTop" class="btn btn-link d-md-none rounded-circle mr-3">
<i class="fa fa-bars"></i>
</button>
<!-- Topbar Navbar -->
<ul class="navbar-nav ml-auto">
<!-- Nav Item - Search Dropdown (Visible Only XS) -->
<!-- Nav Item - Alerts -->
<!-- Nav Item - Messages -->
<div class="topbar-divider d-none d-sm-block"></div>
<!-- Nav Item - User Information -->
<li class="nav-item dropdown no-arrow">
<a class="nav-link dropdown-toggle" href="#" id="userDropdown" role="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false">
<span class="mr-2 d-none d-lg-inline text-gray-600 small">Welcome Admin</span>
<img class="img-profile rounded-circle" src="https://source.unsplash.com/QAB-WJcbgJk/60x60">
</a>
<!-- Dropdown - User Information -->
<div class="dropdown-menu dropdown-menu-right shadow animated--grow-in" aria-labelledby="userDropdown">
<div class="dropdown-divider"></div>
<a class="dropdown-item" href="#" data-toggle="modal" data-target="#logoutModal">
<i class="fas fa-sign-out-alt fa-sm fa-fw mr-2 text-gray-400"></i>
Logout
</a>
</div>
</li>
</ul>
</nav>
<!-- End of Topbar -->
<!-- Begin Page Content -->
<div class="">
<!-- Page Heading -->
<div class="d-sm-flex align-items-center justify-content-between mb-4">
<!--h2 class="h5 mb-0 text-gray-800 text-center" style="width: 100%;">Add Raw Material</h2-->
</div>
<div class="">
<div class="card shadow mb-4">
<div class="card-header py-3">
<h6 class="m-0 font-weight-bold text-primary" style="text-transform: capitalize;">Raw Wood Closing Stock</h6>
<!-- <div class="small-box bg-green" style="float: right;">
<a href="excel/raw_wood_typeexcel.php" class="small-box-footer btn btn-primary">Wood Type Excel <i class="fa fa-download"></i></a>
</div> -->
</div>
<div class="col-sm-3 mb-3 mb-sm-0">
<!-- <input type="date" class="form-control form-control-user text-center" name="board_date"> -->
</div>
<div class="card-body">
<div class="table-responsive">
<!-- Board Manufacturing Table starts -->
<div class="table-responsive">
<table class="table table-bordered requestTable" id="rawWoodClosingTable" width="100%" cellspacing="0">
<thead>
<tr>
<th>S.No</th>
<th>Wood</th>
<th>Thickness</th>
<th>CFT</th>
<th>CBM</th>
<th>Avg. Price</th>
<th>Value</th>
<th>GST 18%</th>
<th>Other Charges</th>
<th>Transport Charges</th>
</tr>
</thead>
<tbody>
<?php
$sno = 1;
$counter = $thickness = 0;
$data = array();
while ($rows = $resp->fetch_array()) {
?>
<tr>
<th><?php echo $sno++;?></th>
<th><?php echo $rows['wood_type']; ?></th>
<th><?php $thick = $rows['thickness'] / $rows['woodcount']; echo number_format($thick, 2, '.', '');?></th>
<th><?php $cft = $rows['cft'] / $rows['woodcount']; echo number_format($cft, 2, '.', '');?></th>
<th><?php $cbm = $rows['cbm'] / $rows['woodcount']; echo number_format($cbm, 2, '.', '');?></th>
<th><?php $price = $rows['price'] / $rows['woodcount']; echo number_format($price, 2, '.', '');?></th>
<th><?php $pricevalue = $rows['pricevalue'] / $rows['woodcount']; echo number_format($pricevalue, 2, '.', '');?></th>
<th><?php $gst = $rows['gst']/ $rows['woodcount']; echo number_format($gst, 2, '.', '');?></th>
<th><?php echo $rows['other_charges'];?></th>
<th><?php echo $rows['transport_charges']; ?></th>
</tr>
<?php } ?>
</tbody>
</table>
</div>
<!-- Board Manufacturing Table ends -->
<hr>
</div>
</div>
</div>
</div>
<div class="">
<div class="card shadow mb-4">
<div class="card-header py-3">
<h6 class="m-0 font-weight-bold text-primary" style="text-transform: capitalize;">Raw Glue Closing Stock</h6>
</div>
<div class="col-sm-3 mb-3 mb-sm-0">
<!-- <input type="date" class="form-control form-control-user text-center" name="board_date"> -->
</div>
<div class="card-body">
<div class="table-responsive">
<!-- Board Manufacturing Table starts -->
<div class="table-responsive">
<table class="table table-bordered requestTable" id="rawGlueClosingTable" width="100%" cellspacing="0">
<thead>
<tr>
<th>S.No</th>
<th>Type</th>
<th>Quantity</th>
<th>UOM</th>
<th>Price</th>
<th>Value</th>
<th>GST 18%</th>
<th>Other Charges</th>
<th>Transport Charges</th>
</tr>
</thead>
<tbody>
<?php
$sno = 1;
while ($gluerows = $respglue->fetch_array()) {
?>
<tr>
<th><?php echo $sno++;?></th>
<th><?php echo $gluerows['glue_type_name']; ?></th>
<th><?php echo $gluerows['quantity'] / $gluerows['gluecount']; ?></th>
<th><?php $var = $gluerows['uom'] / $gluerows['gluecount']; echo number_format($var, 2, '.', '');?></th>
<th><?php $price = $gluerows['price'] / $gluerows['gluecount']; echo number_format($price, 2, '.', '');?></th>
<th><?php echo $gluerows['pricevalue'] / $gluerows['gluecount'];?></th>
<th><?php echo $gluerows['gst'] / $gluerows['gluecount'];?></th>
<th><?php echo $gluerows['other_charges']; ?></th>
<th><?php echo $gluerows['transport_charges']; ?></th>
</tr>
<?php } ?>
</tbody>
</table>
</div>
<!-- Board Manufacturing Table ends -->
<hr>
</div>
</div>
</div>
</div>
<div class="">
<div class="card shadow mb-4">
<div class="card-header py-3">
<h6 class="m-0 font-weight-bold text-primary" style="text-transform: capitalize;">Sand Paper Closing Stock</h6>
</div>
<div class="col-sm-3 mb-3 mb-sm-0">
<!-- <input type="date" class="form-control form-control-user text-center" name="board_date"> -->
</div>
<div class="card-body">
<div class="table-responsive">
<div class="table-responsive">
<table class="table table-bordered requestTable" id="sandPaperClosingTable" width="100%" cellspacing="0">
<thead>
<tr>
<th>S.No</th>
<th>Type</th>
<th>Brand</th>
<th>Quantity</th>
<th>UOM</th>
<th>Price</th>
<th>Value</th>
<th>GST 18%</th>
<th>Other Charges</th>
<th>Transport Charges</th>
</tr>
</thead>
<tbody>
<?php
$sno = 1;
while ($sandrows = $sandresp->fetch_array()) {
?>
<tr>
<th><?php echo $sno++;?></th>
<th><?php echo $sandrows['paper_grid']; ?></th>
<th><?php echo $sandrows['brand']; ?></th>
<th><?php $qty = $sandrows['quantity'] / $sandrows['sandcount']; echo number_format($qty, 2, '.', ''); ?></th>
<th><?php $uom = $sandrows['uom'] / $sandrows['sandcount']; echo number_format($uom, 2, '.', '');?></th>
<th><?php $price = $sandrows['price'] / $sandrows['sandcount']; number_format($price, 2, '.', '');?></th>
<th><?php $pricevalue = $sandrows['pricevalue'] / $sandrows['sandcount']; echo number_format($pricevalue, 2, '.', '');?></th>
<th><?php $gst = $sandrows['gst'] / $sandrows['sandcount']; echo number_format($gst, 2, '.', '');?></th>
<th><?php echo $sandrows['other_charges']; ?></th>
<th><?php echo $sandrows['transport_charges']; ?></th>
</tr>
<?php } ?>
</tbody>
</table>
</div>
<hr>
</div>
</div>
</div>
</div>
<div class="">
<div class="card shadow mb-4">
<div class="card-header py-3">
<h6 class="m-0 font-weight-bold text-primary" style="text-transform: capitalize;">Packing Material</h6>
</div>
<div class="col-sm-3 mb-3 mb-sm-0">
<!-- <input type="date" class="form-control form-control-user text-center" name="board_date"> -->
</div>
<div class="card-body">
<div class="table-responsive">
<!-- Board Manufacturing Table starts -->
<div class="table-responsive">
<table class="table table-bordered requestTable" id="packingMaterialTable" width="100%" cellspacing="0">
<thead>
<tr>
<th>S.No</th>
<th>Type</th>
<th>Brand</th>
<th>Roles</th>
<th>Quantity</th>
<th>UOM</th>
<th>Price</th>
<th>Value</th>
<th>GST 18%</th>
<th>Other Charges</th>
<th>Transport Charges</th>
</tr>
</thead>
<tbody>
<?php
$sno = 1;
while ($packingrows = $packresp->fetch_array()) {
// echo "<pre>";print_r($packingrows);die;
?>
<tr>
<th><?php echo $sno++;?></th>
<th><?php echo $packingrows['packing_type']; ?></th>
<th><?php echo $packingrows['brand']; ?></th>
<th><?php $roles = $packingrows['no_roels'] / $packingrows['packingcount']; echo number_format($roles, 2, '.', '');?></th>
<th><?php $qty = $packingrows['no_qty'] / $packingrows['packingcount']; echo number_format($qty, 2, '.', '');?></th>
<th><?php $uom = $packingrows['no_uom'] / $packingrows['packingcount']; echo number_format($uom, 2, '.', '');?></th>
<th><?php $price = $packingrows['price'] / $packingrows['packingcount']; echo number_format($price, 2, '.', '');?></th>
<th><?php $pricevalue = $packingrows['pricevalue'] / $packingrows['packingcount']; echo number_format($pricevalue, 2, '.', '');?></th>
<th><?php $gst = $packingrows['gst'] / $packingrows['packingcount']; echo number_format($gst, 2, '.', '');?></th>
<th><?php echo $packingrows['other_charges']; ?></th>
<th><?php echo $packingrows['transport_charges']; ?></th>
</tr>
<?php } ?>
</tbody>
</table>
</div>
<!-- Board Manufacturing Table ends -->
<hr>
</div>
</div>
</div>
</div>
<!-- Content Row -->
<!-- Content Row -->
<!-- Content Row -->
</div>
<!-- /.container-fluid -->
</div>
<!-- End of Main Content -->
<!-- Footer -->
<?php include "footer.php"; ?>
<!-- End of Footer -->
</div>
<!-- End of Content Wrapper -->
</div>
<!-- End of Page Wrapper -->
<!-- Scroll to Top Button-->
<a class="scroll-to-top rounded" href="#page-top">
<i class="fas fa-angle-up"></i>
</a>
<!-- Logout Modal-->
<div class="modal fade" id="logoutModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
<div class="modal-dialog" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="exampleModalLabel">Ready to Leave?</h5>
<button class="close" type="button" data-dismiss="modal" aria-label="Close">
<span aria-hidden="true">×</span>
</button>
</div>
<div class="modal-body">Select "Logout" below if you are ready to end your current session.</div>
<div class="modal-footer">
<button class="btn btn-secondary" type="button" data-dismiss="modal">Cancel</button>
<a class="btn btn-primary" href="sav_files/logout.php">Logout</a>
</div>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript-->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
<!-- Core plugin JavaScript-->
<script src="vendor/jquery-easing/jquery.easing.min.js"></script>
<!-- Custom scripts for all pages-->
<script src="js/sb-admin-2.min.js"></script>
<!-- Page level plugins -->
<script src="vendor/datatables/jquery.dataTables.min.js"></script>
<script src="https://cdn.datatables.net/buttons/1.6.1/js/dataTables.buttons.min.js"></script>
<script src="https://cdn.datatables.net/buttons/1.6.1/js/buttons.flash.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jszip/3.1.3/jszip.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.53/pdfmake.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/pdfmake/0.1.53/vfs_fonts.js"></script>
<script src="https://cdn.datatables.net/buttons/1.6.1/js/buttons.html5.min.js"></script>
<script src="https://cdn.datatables.net/buttons/1.6.1/js/buttons.print.min.js"></script>
<script src="vendor/datatables/dataTables.bootstrap4.min.js"></script>
<!-- Page level custom scripts -->
<script src="js/demo/datatables-demo.js"></script>
</body>
</html>
<?php } ?>