| 32316 |
amit.gupta |
1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
|
2 |
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
| 5591 |
mandeep.dh |
3 |
<html xmlns="http://www.w3.org/1999/xhtml">
|
| 32316 |
amit.gupta |
4 |
<head>
|
|
|
5 |
<script type="text/javascript" src="/inventory/js/jquery-1.4.2.js"></script>
|
|
|
6 |
<script type="text/javascript" src="/inventory/js/jquery.validate.js"></script>
|
|
|
7 |
<title>
|
|
|
8 |
#set($supplier = $action.getSupplier())
|
|
|
9 |
Edit $supplier.getName()
|
|
|
10 |
</title>
|
|
|
11 |
</head>
|
|
|
12 |
<body>
|
|
|
13 |
<script>
|
|
|
14 |
$(document).ready(function () {
|
|
|
15 |
$("form#editSupplier").validate();
|
|
|
16 |
});
|
|
|
17 |
</script>
|
|
|
18 |
<a href="/inventory">Go to Home page</a>
|
|
|
19 |
<br/>
|
|
|
20 |
<h2>Edit Supplier $supplier.getName()</h2>
|
|
|
21 |
<form id="editSupplier" action="/inventory/supplier!update" method="post">
|
|
|
22 |
<table>
|
|
|
23 |
<tr>
|
|
|
24 |
<td>Name</td>
|
|
|
25 |
<td><input name="name" type="text" class="required" value="$supplier.getName()" size="30"/></td>
|
|
|
26 |
</tr>
|
|
|
27 |
<tr>
|
|
|
28 |
<td>GSTIN (Max. 15 digits)</td>
|
|
|
29 |
<td><input name="gstin" type="text" class="required" value="$supplier.getGstin()"/></td>
|
|
|
30 |
</tr>
|
|
|
31 |
<tr>
|
|
|
32 |
<td>PAN</td>
|
|
|
33 |
<td><input name="pan" type="text" class="required" value="$supplier.getPan()"/></td>
|
|
|
34 |
</tr>
|
|
|
35 |
<tr>
|
|
|
36 |
<td>Fax</td>
|
|
|
37 |
<td><input name="fax" type="text" class="required" value="$supplier.getFax()"/></td>
|
|
|
38 |
</tr>
|
|
|
39 |
<tr>
|
|
|
40 |
<td>Head Name</td>
|
|
|
41 |
<td><input name="headName" type="text" class="required" value="$supplier.getHeadName()" size="30"/></td>
|
|
|
42 |
</tr>
|
|
|
43 |
<tr>
|
|
|
44 |
<td>Head Designation</td>
|
|
|
45 |
<td><input name="headDesignation" type="text" value="$supplier.getHeadDesignation()"/></td>
|
|
|
46 |
</tr>
|
|
|
47 |
<tr>
|
|
|
48 |
<td>Head Email</td>
|
|
|
49 |
<td><input name="headEmail" type="text" class="email required" value="$supplier.getHeadEmail()" size="30"/>
|
|
|
50 |
</td>
|
|
|
51 |
</tr>
|
|
|
52 |
<tr>
|
|
|
53 |
<td>Contact Person</td>
|
|
|
54 |
<td><input name="contactName" type="text" class="required" value="$supplier.getContactName()" size="30"/>
|
|
|
55 |
</td>
|
|
|
56 |
</tr>
|
|
|
57 |
<tr>
|
|
|
58 |
<td>Contact Email(; separated email ids)</td>
|
|
|
59 |
<td><input name="contactEmail" type="text" class="required" value="$supplier.getContactEmail()" size="70"/>
|
|
|
60 |
</td>
|
|
|
61 |
</tr>
|
|
|
62 |
<tr>
|
|
|
63 |
<td>Contact Phone (Max. 12 digits)</td>
|
|
|
64 |
<td><input name="contactPhone" type="text" class="required digits" value="$supplier.getContactPhone()"/>
|
|
|
65 |
</td>
|
|
|
66 |
</tr>
|
|
|
67 |
<tr>
|
|
|
68 |
<td>Contact Fax (Max. 12 digits)</td>
|
|
|
69 |
<td><input name="contactFax" type="text" class="required digits" value="$supplier.getContactFax()"/></td>
|
|
|
70 |
</tr>
|
|
|
71 |
<tr>
|
|
|
72 |
<td>Registered Address</td>
|
|
|
73 |
<td><input name="registeredAddress" type="text" class="required" value="$supplier.getRegisteredAddress()"
|
|
|
74 |
size="70"/></td>
|
|
|
75 |
</tr>
|
|
|
76 |
<tr>
|
|
|
77 |
<td>Communication Address</td>
|
|
|
78 |
<td><input name="communicationAddress" type="text" class="required"
|
|
|
79 |
value="$supplier.getCommunicationAddress()" size="70"/></td>
|
|
|
80 |
</tr>
|
|
|
81 |
<tr>
|
|
|
82 |
<td>State</td>
|
|
|
83 |
<td><input name="stateIdVal" type="text" class="required"
|
|
|
84 |
value="$action.getStateName($supplier.getStateId())" size="70" readonly/></td>
|
|
|
85 |
</tr>
|
|
|
86 |
<tr>
|
|
|
87 |
<td>Physical(Billing) Warehouse Location</td>
|
|
|
88 |
<td>
|
|
|
89 |
<select name="billingWarehouseIds" multiple="multiple"
|
|
|
90 |
style="min-height:200px;width:250px;max-height:400px" class="required">
|
|
|
91 |
<option value="7573" $action.getDisabled(7573)>DL-NSSPL/Delhi</option>
|
| 33389 |
amit.gupta |
92 |
<option value="9514" $action.getDisabled(9514)>DL-NSSPL/Delhi-Noida</option>
|
|
|
93 |
<option value="9213" $action.getDisabled(9213)>DL-NSSPL/Delhi-UK</option>
|
|
|
94 |
<option value="10010" $action.getDisabled(10010)>DL-NSSPL/Delhi-PB</option>
|
| 32316 |
amit.gupta |
95 |
<option value="7678" $action.getDisabled(7678)>UP-NSSPL/Noida</option>
|
|
|
96 |
<option value="9349" $action.getDisabled(9349)>UP-NSSPL/Saharanpur</option>
|
|
|
97 |
<option value="9513" $action.getDisabled(9513)>UP-NSSPL/Bareilly</option>
|
|
|
98 |
<option value="7681" $action.getDisabled(7681)>HR-NSSPL/Gurgaon</option>
|
|
|
99 |
<option value="8468" $action.getDisabled(8468)>UP-NSSPL/LCK</option>
|
|
|
100 |
<option value="7720" $action.getDisabled(7720)>DL-NSSPL/Delhi-HR</option>
|
|
|
101 |
<option value="8889" $action.getDisabled(8889)>PB-NSSPL/Ludhiana</option>
|
|
|
102 |
<option value="8947" $action.getDisabled(8947)>RJ-NSSPL/Jaipur</option>
|
|
|
103 |
<option value="9203" $action.getDisabled(9203)>UK-NSSPL/Dehradun</option>
|
|
|
104 |
<option value="9470" $action.getDisabled(9470)>UK-NSSPL/Rudrapur</option>
|
|
|
105 |
</select>
|
|
|
106 |
</td>
|
|
|
107 |
</tr>
|
|
|
108 |
<tr>
|
|
|
109 |
<td>PO Validity Days Limit</td>
|
|
|
110 |
<td><input name="poValidityLimit" type="text" class="required digits"
|
|
|
111 |
value="$supplier.getPoValidityLimit()"/></td>
|
|
|
112 |
</tr>
|
|
|
113 |
<tr>
|
|
|
114 |
<td>Terms & Conditions</td>
|
|
|
115 |
<td><input name="tnc" type="textarea" value="$supplier.getTnc()"/></td>
|
|
|
116 |
</tr>
|
|
|
117 |
<tr>
|
|
|
118 |
<td colspan="2"><input type="submit" value="Update"/>
|
|
|
119 |
<input type="hidden" name="id" value="$supplier.getId()"/>
|
|
|
120 |
</td>
|
|
|
121 |
</tr>
|
|
|
122 |
</table>
|
|
|
123 |
</form>
|
|
|
124 |
</body>
|
| 5591 |
mandeep.dh |
125 |
</html>
|