-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmm_po_display.php
432 lines (364 loc) · 16.1 KB
/
mm_po_display.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
424
425
426
427
428
429
430
431
432
<?php
require_once("functions/function.php");
include("includes/connection.php");
get_header();
get_sidebar();
get_bread_five();
//require_once("Script/sd.php");
if(!empty($_POST))
{
$_SESSION["rfq_number"] = $_POST['rfq_number'];
$_SESSION['vendor_id']=$_POST['vendor_id'];
}
$rfq_number=$_SESSION["rfq_number"];
$vendor_id=$_SESSION['vendor_id'];
$po_number="PO$rfq_number";
?>
<script language="javascript">
function fncSubmit(strPage)
{
if(strPage == "page1")
{
document.form1.action="CUD/create_rfq_doc.php";
}
if(strPage == "page2")
{
document.form1.action="CUD/input_qtychange_mm.php";
}
if(strPage == "page3")
{
document.form1.action="CUD/sd_inquery.php";
}
document.form1.submit();
}
</script>
<form action="" method="post" name="form1" id="form1">
<div class="row-fluid sortable">
<div class="container">
<!-- <button type="button" class="btn btn-primary" id="Display" value="2">Create</button> -->
<a href="mm_before_po.php?id=<?= $vendor_id ?>" class="btn btn-danger" role="button">Back</a>
<button type="button" class="btn btn-primary" id="Change" value="1">Change</button>
<button type="button" class="btn btn-primary" id="Display" value="3">Display</button>
</div>
<p></p>
<p></p>
<div class="box-content" id="content2" style="margin-left: 0px;" >
<div class="box span12">
<div class="box-header" data-original-title;>
<h2><i class="icon-file white user"></i><span class="break"></span>Display Purchase order</h2>
</div>
<div class="box-content" >
<div class="form-group">
<h2>Header
<b>Document date : <?= date('d/m/Y') ?> </b></h2>
<br/>
<label for="usr">PO number : <input type="text" class="form-control" value="<?= $po_number ?>" disabled >
<input type="hidden" name="po_number" value="<?= $po_number ?>" >
<label for="usr">Vendor id : <input type="text" class="form-control" value="<?= $vendor_id ?>" name="vendor_id" id="cusnum" disabled>
<?php
include("includes/connection.php");
$sql4 = "SELECT * FROM vendor WHERE vendor_id = '$vendor_id'";
$result4=mysqli_query($connect,$sql4);
$row4=mysqli_fetch_array($result4);
?>
<?= $row4['company_name'] ?>
<!-- <input type="hidden" name="customer_id" value="66556"> -->
</label>
<label for="usr">Ref. QT number : <input type="text" class="form-control" value="<?= $_SESSION["rfq_number"] ?>" disabled >
<input type="hidden" name="rfq_number" value="<?= $_SESSION["rfq_number"] ?>" >
</label>
</div>
<br/>
<p></p>
<p></p>
<!-- <form action="CUD/create_inquiry_doc.php" method="get"> -->
<!-- <form action="" method="post" name="form1"> -->
<?php
$sql4 = "SELECT * FROM document_mm WHERE doc_mm_id = '$rfq_number'";
$result4=mysqli_query($connect,$sql4); //rs.open sql,con
$row4=mysqli_fetch_array($result4);
?>
<div class="form-group">
<h2>Item Overview</h2>
<label for="usr">
Deliv. Date : <input type="date" class="form-control" value="<?= $row4['delivery_date'] ?>" name="request" id="re-date" disabled>
</label>
<label for="usr">
<table class="table table-striped table-bordered bootstrap-datatable datatable">
<thead>
<tr>
<th></th>
<th>Material number</th>
<th>Description</th>
<th>PO Quantity</th>
<th>Price</th>
<th>Unit</th>
</tr>
</thead>
<tbody>
<?php
$sql2 = "SELECT * FROM doc_mm_has_material INNER JOIN material USING(material_number) WHERE doc_mm_id = '$rfq_number'";
$result3=mysqli_query($connect,$sql2); //rs.open sql,con
while ($row2=mysqli_fetch_array($result3))
{ ?>
<!--open of while -->
<tr>
<td></td>
<td><?= $row2['material_number'] ?></td>
<td><?= $row2['description'] ?></td>
<td><?= $row2['quantity'] ?></td>
<td><?= number_format($row2['cost_price'],2) ?></td>
<td><?= $row2['unit_type'] ?></td>
</tr>
<?php
} //close of while
?>
</tbody>
</table>
</label>
<!-- <a name="btnButton1" onClick="JavaScript:fncSubmit('page1')" type="button" class="btn btn-primary" >Submit</a> -->
</div>
<!-- </form> -->
</div>
</div>
</div>
<!-- Change -->
<div class="box-content" id="content4" >
<div class="box span12">
<div class="box-header" data-original-title;>
<h2><i class="icon-file white user"></i><span class="break"></span>Change Purchase order</h2>
</div>
<div class="box-content" >
<div class="form-group">
<h2>Header
<b>Document date : <?= date('d/m/Y') ?> </b></h2>
<br/>
<label for="usr">PO number : <input type="text" class="form-control" value="<?= $po_number ?>" disabled >
<input type="hidden" name="po_number" value="<?= $po_number ?>" >
<label for="usr">Vendor id : <input type="text" class="form-control" value="<?= $vendor_id ?>" name="vendor_id" id="cusnum" disabled>
<?php
include("includes/connection.php");
$sql4 = "SELECT * FROM vendor WHERE vendor_id = '$vendor_id'";
$result4=mysqli_query($connect,$sql4);
$row4=mysqli_fetch_array($result4);
?>
<?= $row4['company_name'] ?>
<!-- <input type="hidden" name="customer_id" value="66556"> -->
</label>
<label for="usr">Ref. QT number : <input type="text" class="form-control" value="<?= $_SESSION["rfq_number"] ?>" disabled >
<input type="hidden" name="rfq_number" value="<?= $_SESSION["rfq_number"] ?>" >
</label>
</div>
<br/>
<p></p>
<p></p>
<!-- <form action="CUD/create_inquiry_doc.php" method="get"> -->
<!-- <form action="" method="post" name="form1"> -->
<?php
$sql4 = "SELECT * FROM document_mm WHERE doc_mm_id = '$rfq_number'";
$result4=mysqli_query($connect,$sql4); //rs.open sql,con
$row4=mysqli_fetch_array($result4);
?>
<div class="form-group">
<h2>Item Overview</h2>
<label for="usr">
Deliv. Date : <input type="date" class="form-control" value="<?= $row4['delivery_date'] ?>" name="request" id="re-date">
<button type="button" class="btn btn-primary btn-lg" data-toggle="modal" data-target="#myModal">Add Material</button>
</label>
<label for="usr">
<table class="table table-striped table-bordered bootstrap-datatable datatable">
<thead>
<tr>
<th></th>
<th>Material number</th>
<th>Description</th>
<th>PO Quantity</th>
<th>Price</th>
<th>Unit</th>
</tr>
</thead>
<tbody>
<?php
$sql2 = "SELECT * FROM doc_mm_has_material INNER JOIN material USING(material_number) WHERE doc_mm_id = '$rfq_number'";
$result3=mysqli_query($connect,$sql2); //rs.open sql,con
while ($row2=mysqli_fetch_array($result3))
{ ?>
<!--open of while -->
<tr>
<td></td>
<td><?= $row2['material_number'] ?></td>
<td><?= $row2['description'] ?></td>
<td>
<form action="CUD/input_qtychange_mmpo.php" method="post">
<input type="number" name="qty" value="<?= $row2['quantity'] ?>" />
<input type="hidden" name="line_id" value="<?php echo $row2['line_item_mm_id']; ?>" />
<button type="submit" class="btn btn-sm btn-success" onClick="JavaScript:fncSubmit('page2')">Update</button>
<!-- <input name="btnButton1" type="submit" class="btn btn-success" value="Update"> -->
</form>
</td>
<td><?= number_format($row2['cost_price'],2) ?></td>
<td>EA</td>
<td><a class="btn btn-danger" onclick="return confirmDel()" href="CUD/delete_item_pochange.php?delID=<?php echo $row2['line_item_mm_id'];?>">
<i class="halflings-icon white trash"></i>
</a>
</td>
</tr>
<?php
} //close of while
?>
</tbody>
</table>
</label>
<input type="hidden" name="doc_id" value="<?= $rfq_number ?>">
<button type="submit" class="btn btn-primary btn-lg" onClick="JavaScript:fncSubmit('page1')">Submit</button>
<!-- <a name="btnButton1" onClick="JavaScript:fncSubmit('page1')" type="button" class="btn btn-primary" >Submit</a> -->
</div>
<!-- </form> -->
</div>
</div>
</div>
</div><!--/row-->
<!-- Modal 1-->
<div class="modal fade bs-example-modal-lg" id="myModal" >
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">Add Material</h4>
</div>
<div class="modal-body">
<label for="usr">
<table class="table table-striped table-bordered bootstrap-datatable datatable">
<thead>
<tr>
<th>Material number</th>
<th>Description</th>
<th>Actions</th>
</tr>
</thead>
<tbody>
<?php
include("includes/connection.php");
$sql = "SELECT * FROM material WHERE vendor_id = '$vendor_id'";
$result2=mysqli_query($connect,$sql); //rs.open sql,con
while ($row=mysqli_fetch_array($result2))
{ ?><!--open of while -->
<tr>
<td><?php echo $row['material_number']; ?></td>
<td><?php echo $row['description']; ?></td>
<td class="center">
<!-- <input type="hidden" name="mat_id" value="<?= $row['material_number'] ?>"> -->
<!-- <input type="submit" name="insert" id="insert" value="Insert" class="btn btn-success" />-->
<a href="CUD/item_po_change.php?id=<?= $row['material_number'] ?>&rfq_number=<?= $rfq_number ?>" class="btn btn-info" id="insert_mat" type="button">Insert</a>
<!-- <button type="submit" class="btn btn-info">Insert</button> -->
</td>
</tr>
<?php
} //close of while
?>
</tbody>
</table>
</label>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<!-- <button type="button" class="btn btn-primary">Add Material</button>-->
</div>
</div>
</div>
</div>
<!-- Modal 2-->
<div class="modal fade bs-example-modal-lg" id="myModal2" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">Change Material</h4>
</div>
<div class="modal-body">
<label for="usr">
<table class="table table-striped table-bordered ">
<thead>
<tr>
<th></th>
<th>Material number</th>
<th>Description</th>
<th>Quantity</th>
</tr>
</thead>
<tbody>
<?php
include("includes/connection.php");
$sql = "SELECT * FROM tblusers ORDER BY Firstname";
$result=mysqli_query($connect,$sql);//rs.open sql,con
while ($row=mysqli_fetch_array($result))
{ ?><!--open of while -->
<tr>
<td></td>
<td></td>
<td></td>
<td></td>
</tr>
<?php
} //close of while
?>
</tbody>
</table>
</label>
<div class="form-group">
<label for="usr">Enter Material Number </label>
<input type="text" class="form-control" id="number_material">
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Change</button>
</div>
</div>
</div>
</div>
<!-- Modal 3-->
<div class="modal fade bs-example-modal-lg" id="myModal3" tabindex="-1" role="dialog" aria-labelledby="myModalLabel">
<div class="modal-dialog modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">×</span></button>
<h4 class="modal-title" id="myModalLabel">Find Customer</h4>
</div>
<div class="modal-body">
<div class="form-group">
<label for="usr">Customer Id:</label>
<input type="text" class="form-control" id="usr">
<button type="button" class="btn btn-primary">Enter</button>
</div>
<label for="usr">
<div class="form-group">
<label for="sel1">Select Inquery</label>
<select class="form-control" id="sel1">
<option>In586</option>
<option>In589</option>
<option>In587</option>
<option>In582</option>
</select>
</div>
</label>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
<button type="button" class="btn btn-primary">Select</button>
</div>
</div>
</div>
</div>
</form>
<?php
get_footer();
?>
<!-- <div class="common-modal modal fade" id="common-Modal1" tabindex="-1" role="dialog" aria-hidden="true">
<div class="modal-content">
<ul class="list-inline item-details">
<li><a href="http://themifycloud.com">Admin templates</a></li>
<li><a href="http://themescloud.org">Bootstrap themes</a></li>
</ul>
</div>
</div> -->