-
Notifications
You must be signed in to change notification settings - Fork 0
/
total_raw_wood_added_edit.php
355 lines (304 loc) · 21.7 KB
/
total_raw_wood_added_edit.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
<?php
session_start();
if(empty($_SESSION['loggedin_id']))
{
header("Location: index.php");
} else {
include("db_connection.php");
$sql = "SELECT trw.*,twt.id wood_id, twt.wood_type as twt_wood_type FROM ta_raw_wood trw join ta_wood_type twt on (trw.wood_type = twt.id) where trw.rw_id = ".$_GET['id'];
// echo "<pre>";print_r($sql);die;
$result = $conn->query($sql);
$editrow = $result->fetch_assoc();
?>
<!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">
<style type="text/css">
.nav-tabs li a {
height: 54px;
}
.nav-tabs li {
margin: 0 1px;
width: 25%;
padding: 0px !important;
}
</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-4 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 Search -->
<!-- <form class="d-none d-sm-inline-block form-inline mr-auto ml-md-3 my-2 my-md-0 mw-100 navbar-search">
<div class="input-group">
<input type="text" class="form-control bg-light border-0 small" placeholder="Search for..." aria-label="Search" aria-describedby="basic-addon2">
<div class="input-group-append">
<button class="btn btn-primary" type="button">
<i class="fas fa-search fa-sm"></i>
</button>
</div>
</div>
</form> -->
<!-- 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">
<!-- <a class="dropdown-item" href="#">
<i class="fas fa-user fa-sm fa-fw mr-2 text-gray-400"></i>
Profile
</a>
<a class="dropdown-item" href="#">
<i class="fas fa-cogs fa-sm fa-fw mr-2 text-gray-400"></i>
Settings
</a>
<a class="dropdown-item" href="#">
<i class="fas fa-list fa-sm fa-fw mr-2 text-gray-400"></i>
Activity Log
</a> -->
<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="container-fluid">
<!-- 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%;">Edit Raw Wood Material</h2>
</div>
<div class="container">
<div class="tab-content">
<div id="home" class="tab-pane fade show in active">
<!--h3 class="text-center">Add Raw Wood Stock</h3-->
<form class="user" method="post" action="sav_files/sav_edit_raw_wood_stock.php" style="clear: both;">
<input type="hidden" name="rw_id" value="<?php echo $editrow['rw_id']; ?>">
<div class="col-lg-12">
<div class="">
<div class="form-group row">
<div class="col-sm-3 mb-3 mb-sm-0">
<input type="date" class="form-control form-control-user" name="recieved_date" placeholder="Date" value="<?php echo $editrow['recieved_date'];?>">
</div>
<div class="col-sm-3">
<input type="text" class="form-control form-control-user" name="name" placeholder="Name" value="<?php echo $editrow['vehicle_number'];?>">
</div>
<div class="col-sm-3 mb-3 mb-sm-0">
<input type="text" class="form-control form-control-user" name="vehicle_number" placeholder="Vehicle Number" value="<?php echo $editrow['recieved_date'];?>">
</div>
<div class="col-sm-3">
<input type="text" class="form-control form-control-user" name="reference" placeholder="Reference" value="<?php echo $editrow['reference'];?>">
</div>
</div>
<hr>
<div class="form-group row">
<h3 class="text-center col-lg-12">Material Details</h3>
<div class="col-sm-4 mb-3 mb-sm-0">
<select type="text" class="form-control" name="wood_type">
<option value="default" selected="selected">Wood type</option>
<?php
$sql = "SELECT * FROM ta_wood_type where status = 1";
$result = $conn->query($sql);
while($row = $result->fetch_assoc()) {
// echo "<pre>";print_r($editrow);die;
?>
<option value="<?php echo $row['id'];?>" <?php if($row['id'] == $editrow['wood_id']) { echo "selected"; }?> ><?php echo $row['wood_type'];?></option>
<?php } ?>
<!-- <option value="rose">Rose</option>
<option value="beech">Beech</option> -->
</select>
</div>
<div class="col-sm-4">
<input type="text" class="form-control form-control-user" id="length" name="length" placeholder="Length in Ft" value="<?php echo $editrow['length'];?>">
</div>
<div class="col-sm-4 mb-3 mb-sm-0">
<input type="text" class="form-control form-control-user" id="width" name="width" placeholder="Width in Inches" value="<?php echo $editrow['width'];?>">
</div>
</div>
<div class="form-group row">
<div class="col-sm-4">
<input type="text" class="form-control form-control-user" id="thickness" name="thickness" placeholder="Thickness in Inches" value="<?php echo $editrow['thickness'];?>">
</div>
<div class="col-sm-4 mb-3 mb-sm-0">
<input type="text" class="form-control form-control-user" id="pieces" name="pieces" placeholder="Pieces" value="<?php echo $editrow['pieces'];?>">
</div>
<div class="col-sm-4 mb-3 mb-sm-0">
<input type="text" class="form-control form-control-user" id="weight" name="weight" placeholder="Weight in Kgs" value="<?php echo $editrow['weight'];?>">
</div>
</div>
</div>
<div class="form-group row">
<div class="col-sm-4">
<input type="text" class="form-control form-control-user" id="cbm" name="cbm" placeholder="CBM" onkeyup="addMaterialcft_calc()" value="<?php echo $editrow['cbm'];?>">
</div>
<div class="col-sm-4">
<input type="text" class="form-control form-control-user" id="cft" name="cft" placeholder="CFT" value="<?php echo $editrow['cft'];?>" onkeyup="addMaterialcbm_calc()">
</div>
<div class="col-sm-4">
<input type="text" class="form-control form-control-user" name="price" id="material_price" placeholder="Price" onkeyup="addMaterialcft_calc()" value="<?php echo $editrow['price'];?>">
</div>
</div>
<div class="form-group row">
<div class="col-sm-6">
<input type="text" class="form-control form-control-user" name="value" id="material_value" placeholder="Value" value="<?php echo $editrow['value'];?>">
</div>
<div class="col-sm-6 mb-3 mb-sm-0">
<input type="text" class="form-control form-control-user" name="gst" placeholder="GST 18%" value="<?php echo $editrow['gst'];?>">
</div>
</div>
<div class="form-group row">
<div class="col-sm-4 mb-3 mb-sm-0">
<input type="text" class="form-control form-control-user" name="transport_charges" placeholder="Transport Charges" value="<?php echo $editrow['transport_charges'];?>">
</div>
<div class="col-sm-4">
<input type="text" class="form-control form-control-user" name="other_charges" placeholder="Other Charges" value="<?php echo $editrow['other_charges'];?>">
</div>
</div>
</div>
<div class="form-group row col-sm-12">
<div class="col-sm-4" style="float:right">
<input type="submit" class="btn btn-primary btn-user btn-block" name="add_rws" value="Add Raw Wood Stock">
</div>
</div>
</form>
</div>
</div>
</div>
</div>
</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="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.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="vendor/datatables/dataTables.bootstrap4.min.js"></script>
<!-- Page level custom scripts -->
<script src="js/demo/datatables-demo.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$(".addCF").click(function(){
$("#customFields1").append('<tr valign="top" style="padding: 5px;"><td><input type="text" class="form-control form-control-user" name="roles[]" placeholder="Roles"></td><td><input type="text" class="form-control form-control-user" name="quantity[]" placeholder="Quantity"></td><td><input type="text" class="form-control form-control-user" name="uom[]" placeholder="UOM (in kgs)"></td><td> <a href="javascript:void(0);" class="remCF btn btn-primary btn-sm">Remove</a></td></tr>');
});
$("#customFields1").on('click','.remCF',function(){
$(this).parent().parent().remove();
});
});
function cft_weight_calc() {
var weight = document.getElementById('weight').value;
var cft = document.getElementById('cft').value;
var result = parseFloat(weight) / parseFloat(cft);
// var seasonout_total_cft1 = parseFloat(season_total_weight1) / parseFloat(result);
if (!isNaN(result)) {
document.getElementById('cft').value = result.toFixed(6);
// document.getElementById('seasonout_total_cft1').value = seasonout_total_cft1.toFixed(6);
}
}
function addMaterialcft_calc() {
var cbm = document.getElementById('cbm').value;
var price = document.getElementById('material_price').value;
var cft_auto = 35.315;
var result = (parseFloat(cbm)) / parseFloat(cft_auto);
var value_auto_result = parseFloat(document.getElementById('cft').value) * parseFloat(price);
if (!isNaN(result)) {
document.getElementById('cft').value = result.toFixed(3);
}
if (!isNaN(value_auto_result)) {
document.getElementById('material_value').value = value_auto_result.toFixed(3);
}
}
function addMaterialcbm_calc() {
var cft = document.getElementById('cft').value;
var price = document.getElementById('material_price').value;
var cbm_auto = 35.315;
var result = (parseFloat(cft)) / parseFloat(cbm_auto);
var value_auto_result = parseFloat(document.getElementById('cft').value) * parseFloat(price);
if (!isNaN(result)) {
document.getElementById('cbm').value = result.toFixed(3);
}
if (!isNaN(value_auto_result)) {
document.getElementById('material_value').value = value_auto_result.toFixed(3);
}
}
</script>
<script type="text/javascript">
$(function() {
$('#Add').click(function() {
var newDiv = $('<div class="col-sm-4"><input type="text" class="form-control form-control-user" name="roles[]" placeholder="Roles"></div><div class="col-sm-4"><input type="text" class="form-control form-control-user" name="quantity[]" placeholder="Quantity"></div> <div class="col-sm-4 mb-3 mb-sm-0"><input type="text" class="form-control form-control-user" name="uom[]" placeholder="UOM (in kgs)"></div></br>');
//newDiv.style.background = "#000";
$('#textboxDiv').append(newDiv);
});
});
</script>
</body>
</html>
<?php } ?>