-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathECO.php
72 lines (63 loc) · 2.05 KB
/
ECO.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
<?php
require_once ("Includes/simplecms-config.php");
require_once ("Includes/connectDB.php");
include("Includes/header.php");
?>
<div id="main">
<p align="right">ECO Number: <input type="submit" value="<"><input type="text" name="" size ="5"><input type="submit" value=">"></p>
<h2>Engineering Change Order</h2>
<hr>
<table width="100%" >
<tr>
<td>Cancel Date: <input type="date" name=""></td>
<td>Issue Date: <input type="date" name=""></td>
<td>Close Date: <input type="date" name=""></td>
</tr>
</table>
<br>
<table width="100%">
<tr class="Cal">
<th width="40%">Department</th>
<th width="40%">E-Signature</th>
<th>Postpone Process</th>
</tr>
<tr class="alt">
<td>Originator</td>
<td><input type="text" name="" class="defaultTextBox"></td>
<td></td>
</tr>
<tr>
<td>Responsible Eng</td>
<td><input type="text" name="" class="defaultTextBox"></td>
<td></td>
</tr>
<tr class="alt">
<td>Engineering Mgr</td>
<td><input type="text" name="" class="defaultTextBox"></td>
<td></td>
</tr>
<tr>
<td>Manufacturing</td>
<td><input type="text" name="" class="defaultTextBox"></td>
<td></td>
</tr>
<tr class="alt">
<td>Sales</td>
<td><input type="text" name="" class="defaultTextBox"></td>
<td></td>
</table>
<br>
Reason for ECO:<br>
<textarea cols="40" rows="7" style="width:575px; height:30px;" class=""></textarea><br>
ASSY/Products Affected:
<input type="text" name=""><br>
Problem/Improvement/Addendum(Be Specific):<br>
<textarea cols="40" rows="7" style="width:575px; height:50px;" class=""></textarea><br>
<br>
Specific Description of Change/Addendum:<br>
<textarea cols="40" rows="7" style="width:575px; height:50px;" class=""></textarea><br>
<br>
</div>
<?php
include ("Includes/footer.php");
?>