| 9242 |
kshitij.so |
1 |
<style>
|
|
|
2 |
* { font-family: Verdana; font-size: 96%; }
|
|
|
3 |
label {
|
|
|
4 |
float: left;
|
|
|
5 |
}
|
|
|
6 |
|
|
|
7 |
#upload > table {
|
|
|
8 |
color: #747474;
|
|
|
9 |
width: 100%;
|
|
|
10 |
}
|
|
|
11 |
|
|
|
12 |
|
|
|
13 |
#upload tbody {
|
|
|
14 |
background: url("/Support/images/center-bcg.png") repeat-y scroll right top #F6F6F6;
|
|
|
15 |
font-weight: bold;
|
|
|
16 |
}
|
|
|
17 |
|
|
|
18 |
.detail {
|
|
|
19 |
background: url("/Support/images/center-blue.png") repeat-y scroll left top #E4EBF8;
|
|
|
20 |
border-bottom: 1px solid #B3C1DB;
|
|
|
21 |
border-right: 1px solid #CED9EC;
|
|
|
22 |
color: #1F3D71;
|
|
|
23 |
height: 25px;
|
|
|
24 |
padding: 10px 0 0 24px;
|
|
|
25 |
}
|
|
|
26 |
|
|
|
27 |
.value {
|
|
|
28 |
border-bottom: 1px solid #B3C1DB;
|
|
|
29 |
border-right: 1px solid #CED9EC;
|
|
|
30 |
height: 24px;
|
|
|
31 |
text-align: center;
|
|
|
32 |
color: #747474;
|
|
|
33 |
}
|
|
|
34 |
|
|
|
35 |
select {
|
|
|
36 |
padding-top: 2px;
|
|
|
37 |
vertical-align: middle;
|
|
|
38 |
direction: ltr;
|
|
|
39 |
font-weight: bold;
|
|
|
40 |
width: 50%;
|
|
|
41 |
height: 22px;
|
|
|
42 |
}
|
|
|
43 |
|
|
|
44 |
input {
|
|
|
45 |
font-size: 12px;
|
|
|
46 |
text-align: center;
|
|
|
47 |
width: 50%;
|
|
|
48 |
font-weight: bold;
|
|
|
49 |
}
|
| 9725 |
kshitij.so |
50 |
.top-header {
|
|
|
51 |
background-color: #2789C1;
|
|
|
52 |
display: block;
|
|
|
53 |
height: 20px;
|
|
|
54 |
width: 100%;
|
|
|
55 |
}
|
|
|
56 |
|
|
|
57 |
input[type="text"][readonly] {
|
|
|
58 |
background-color: #D1D1D1;
|
|
|
59 |
}
|
|
|
60 |
|
|
|
61 |
input[type="text"][disabled] {
|
|
|
62 |
background-color: #D1D1D1;
|
|
|
63 |
}
|
| 9734 |
kshitij.so |
64 |
.border-highlight{
|
|
|
65 |
border : 3px solid #00BFFF;
|
|
|
66 |
}
|
| 9242 |
kshitij.so |
67 |
</style>
|
|
|
68 |
<link href="/Support/css/jquery.alerts.css" type="text/css" rel="stylesheet">
|
|
|
69 |
<script type="text/javascript" src="/Support/js/jquery-1.4.2.js"></script>
|
|
|
70 |
<script type="text/javascript" src="/Support/js/jquery.alerts.js"></script>
|
|
|
71 |
<script type="text/javascript">
|
|
|
72 |
$(document).ready(function() {
|
|
|
73 |
$('#cancelbutton').click(function(e) {
|
|
|
74 |
window.location.href = '/Support/snapdeal-list';
|
|
|
75 |
});
|
|
|
76 |
});
|
|
|
77 |
</script>
|
|
|
78 |
<script type="text/javascript">
|
|
|
79 |
function calculateStuff()
|
|
|
80 |
{
|
| 9734 |
kshitij.so |
81 |
$('input#minPosTp').removeClass("border-highlight");
|
|
|
82 |
$('input#minPosSp').removeClass("border-highlight");
|
|
|
83 |
$('input#transferPrice').removeClass("border-highlight");
|
|
|
84 |
$('input#serviceTax').removeClass("border-highlight");
|
|
|
85 |
$('input#commission').removeClass("border-highlight");
|
|
|
86 |
$('input#margin').removeClass("border-highlight");
|
|
|
87 |
$('input#marginPer').removeClass("border-highlight");
|
| 9725 |
kshitij.so |
88 |
var itemWeight=$('#itemWeight').val();
|
| 9734 |
kshitij.so |
89 |
itemWeight = +itemWeight+.05;
|
|
|
90 |
console.log(itemWeight);
|
| 9242 |
kshitij.so |
91 |
if (itemWeight==0){
|
|
|
92 |
var courierCost =45;
|
|
|
93 |
}
|
|
|
94 |
else{
|
|
|
95 |
var slabs = parseInt((parseFloat(itemWeight)-.001)/.5)
|
|
|
96 |
var courierCost = 45;
|
|
|
97 |
for (var i=0;i<slabs;i++)
|
|
|
98 |
{
|
|
|
99 |
courierCost = courierCost + 35;
|
|
|
100 |
}
|
|
|
101 |
}
|
| 9734 |
kshitij.so |
102 |
console.log(courierCost);
|
| 9725 |
kshitij.so |
103 |
//courierCost = ((courierCost+0)*1.1236).toFixed(2);
|
|
|
104 |
var sellingPrice=$('#sellingPrice').val();
|
|
|
105 |
var nlc=$('#maxNlc').val();
|
|
|
106 |
var otherCost=$('#otherCost').val();
|
|
|
107 |
var othCost=parseFloat(otherCost);
|
|
|
108 |
if ( sellingPrice==null || sellingPrice=="" || isNaN(sellingPrice) || nlc==null || nlc=="" || isNaN(nlc)){
|
| 9242 |
kshitij.so |
109 |
$('input#courierCost').val('0.00');
|
|
|
110 |
$('input#commission').val('0.00');
|
|
|
111 |
$('input#serviceTax').val('0.00');
|
| 9725 |
kshitij.so |
112 |
$('input#').val('0.00');
|
|
|
113 |
}
|
|
|
114 |
else{
|
| 9780 |
kshitij.so |
115 |
var com=$('#commissionRate').val();
|
|
|
116 |
var comRate=com/100;
|
|
|
117 |
var serviceTaxRate=$('#serviceTaxRate').val();
|
|
|
118 |
console.log(serviceTaxRate)
|
|
|
119 |
var stRate = serviceTaxRate/100;
|
|
|
120 |
var emiFeeRate=$('#emiFee').val();
|
|
|
121 |
console.log(emiFeeRate);
|
|
|
122 |
var emiFee=emiFeeRate/100;
|
|
|
123 |
var closingFee=parseFloat($('#closingFee').val());
|
|
|
124 |
var returnProvision=parseFloat($('#returnProvision').val());
|
|
|
125 |
console.log(returnProvision);
|
|
|
126 |
console.log(closingFee);
|
| 9725 |
kshitij.so |
127 |
var margin=$('#margin').val();
|
|
|
128 |
var vatRate=$('#vat').val();
|
|
|
129 |
if ( vatRate==null || vatRate=="" || isNaN(vatRate)){
|
|
|
130 |
jAlert('Please enter VAT Rate for item','ERROR');
|
| 9780 |
kshitij.so |
131 |
$('input#sellingPrice').val('0.00');
|
| 9242 |
kshitij.so |
132 |
return false;
|
|
|
133 |
}
|
| 9725 |
kshitij.so |
134 |
var vat=vatRate/100;
|
| 9780 |
kshitij.so |
135 |
var commisionPrice=((comRate)*sellingPrice).toFixed(2);
|
|
|
136 |
var ourTp=(parseFloat(sellingPrice)-parseFloat(sellingPrice)*(1+stRate)*((comRate)+emiFee)-((courierCost+closingFee)*(1+stRate)));
|
| 9725 |
kshitij.so |
137 |
var vatValue=(((sellingPrice/(1+vat))-(nlc/(1+vat)))*vat).toFixed(2);
|
| 9780 |
kshitij.so |
138 |
var inHouseCost=(+vatValue+15+((returnProvision/100)*sellingPrice)+othCost);
|
| 9725 |
kshitij.so |
139 |
var lowestTp=(+nlc+inHouseCost).toFixed(2);
|
| 9780 |
kshitij.so |
140 |
var lowestSp=(+nlc+(courierCost+closingFee)*(1+stRate)*(1+vat)+(15+othCost)*(1+vat))/(1-(comRate+emiFee)*(1+stRate)*(1+vat)-(returnProvision/100)*(1+vat));
|
| 9725 |
kshitij.so |
141 |
ourTp = (parseFloat(ourTp)).toFixed(2);
|
|
|
142 |
$('input#minPosTp').val(lowestTp);
|
| 9734 |
kshitij.so |
143 |
$('input#minPosSp').val(parseFloat(lowestSp).toFixed(2));
|
| 9725 |
kshitij.so |
144 |
$('input#transferPrice').val(ourTp);
|
| 9780 |
kshitij.so |
145 |
var serviceTax=(stRate*(+commisionPrice+courierCost)).toFixed(2);
|
| 9725 |
kshitij.so |
146 |
lowest_possible_tp=parseFloat(lowestTp);
|
|
|
147 |
newMargin=(ourTp-lowest_possible_tp).toFixed(2);
|
|
|
148 |
marginPercentage=(((ourTp-lowest_possible_tp)/sellingPrice)*100).toFixed(2);
|
|
|
149 |
$('input#marginPer').val(marginPercentage);
|
|
|
150 |
$('input#margin').val(newMargin);
|
| 9242 |
kshitij.so |
151 |
$('input#sellingPrice').val(sellingPrice);
|
|
|
152 |
$('input#courierCost').val(courierCost);
|
|
|
153 |
$('input#commission').val(commisionPrice);
|
|
|
154 |
$('input#serviceTax').val(serviceTax);
|
| 9734 |
kshitij.so |
155 |
$('input#minPosTp').addClass("border-highlight");
|
|
|
156 |
$('input#minPosSp').addClass("border-highlight");
|
|
|
157 |
$('input#transferPrice').addClass("border-highlight");
|
|
|
158 |
$('input#serviceTax').addClass("border-highlight");
|
|
|
159 |
$('input#commission').addClass("border-highlight");
|
|
|
160 |
$('input#margin').addClass("border-highlight");
|
|
|
161 |
$('input#marginPer').addClass("border-highlight");
|
| 9242 |
kshitij.so |
162 |
}
|
| 9725 |
kshitij.so |
163 |
}
|
| 9242 |
kshitij.so |
164 |
</script>
|
|
|
165 |
<script type="text/javascript">
|
|
|
166 |
$('#populateStuff').live('click', function(){
|
| 9725 |
kshitij.so |
167 |
var itemId=$('#itemId').val();
|
|
|
168 |
var whId=$('#warehouseId').val();
|
| 9825 |
kshitij.so |
169 |
var sellingPrice=$('#sellingPrice').val();
|
| 9725 |
kshitij.so |
170 |
if ( whId==null || whId=="" || isNaN(whId)){
|
| 9478 |
kshitij.so |
171 |
jAlert('Please enter valid warehouse id', 'ERROR');
|
|
|
172 |
return false;
|
|
|
173 |
}
|
| 9825 |
kshitij.so |
174 |
if (sellingPrice==0 || sellingPrice=="" || isNaN(sellingPrice)){
|
|
|
175 |
jAlert('Illegal Entry In Selling Price', 'ERROR');
|
|
|
176 |
return false;
|
|
|
177 |
}
|
| 9242 |
kshitij.so |
178 |
jQuery.ajax({
|
|
|
179 |
type : "GET",
|
| 9825 |
kshitij.so |
180 |
url : "/Support/snapdeal-list!getItemDetailsInJson?itemId="+itemId+"&warehouseId="+whId+"&sellingPrice="+sellingPrice,
|
| 9242 |
kshitij.so |
181 |
beforeSend: function(){
|
|
|
182 |
$('#ajax-spinner').show();
|
|
|
183 |
$('#add-new-item')[0].reset();
|
|
|
184 |
},
|
|
|
185 |
complete: function(){
|
|
|
186 |
$('#ajax-spinner').hide();
|
|
|
187 |
},
|
|
|
188 |
success : function(json){
|
|
|
189 |
var parsedData = JSON.parse(json);
|
|
|
190 |
$('input#itemId').val(parsedData.ItemId);
|
|
|
191 |
$('input#brand').val(parsedData.Brand);
|
|
|
192 |
$('input#modelNumber').val(parsedData.ModelNumber);
|
|
|
193 |
$('input#modelName').val(parsedData.ModelName);
|
|
|
194 |
$('input#color').val(parsedData.Color);
|
|
|
195 |
$('input#itemWeight').val(parsedData.Weight);
|
|
|
196 |
$('input#risky').val(parsedData.Risky);
|
|
|
197 |
$('input#status').val(parsedData.Status);
|
|
|
198 |
$('input#webisteMrp').val(parsedData.MRP);
|
|
|
199 |
$('input#webisteSellingPrice').val(parsedData.SellingPrice);
|
| 9780 |
kshitij.so |
200 |
$('input#commissionRate').val(parsedData.CommissionRate);
|
|
|
201 |
$('input#returnProvision').val(parsedData.ReturnProvision);
|
|
|
202 |
$('input#emiFee').val(parsedData.EmiFee);
|
|
|
203 |
$('input#closingFee').val(parsedData.ClosingFee);
|
|
|
204 |
$('input#serviceTaxRate').val(parsedData.ServiceTaxRate);
|
| 9825 |
kshitij.so |
205 |
$('input#sellingPrice').val(sellingPrice);
|
| 9242 |
kshitij.so |
206 |
$('input#transferPrice').val('0.0');
|
|
|
207 |
$('input#exceptionPrice').val('0.0');
|
|
|
208 |
$('input#commission').val('0.0');
|
|
|
209 |
$('input#serviceTax').val('0.0');
|
|
|
210 |
$('input#courierCost').val('0.0');
|
| 9478 |
kshitij.so |
211 |
$('input#maxNlc').val(parsedData.MaxNlc);
|
| 9725 |
kshitij.so |
212 |
$('input#warehouseId').val(whId);
|
| 9825 |
kshitij.so |
213 |
$('input#vat').val(parsedData.VatRate);
|
|
|
214 |
calculateStuff();
|
| 9242 |
kshitij.so |
215 |
},
|
|
|
216 |
error : function() {
|
| 9478 |
kshitij.so |
217 |
alert("Either item id is already present in snapdeal item or not a valid item Id");
|
| 9242 |
kshitij.so |
218 |
},
|
|
|
219 |
});
|
|
|
220 |
return false;
|
|
|
221 |
});
|
|
|
222 |
</script>
|
| 9725 |
kshitij.so |
223 |
<div class="top-header">
|
|
|
224 |
<span style="float: left; padding-left: 10px; padding-top: 2px; font-size: 14px; font-weight: bolder; color: white;">
|
|
|
225 |
ADD NEW PRODUCT
|
|
|
226 |
</span>
|
|
|
227 |
</div>
|
| 9242 |
kshitij.so |
228 |
<form id="add-new-item" action="/Support/snapdeal-list!addNewItem" enctype="multipart/form-data" method="post">
|
|
|
229 |
<div class="left" style="float: left; width: 48%;">
|
|
|
230 |
<table id="upload" style="text-align: center;width: 100%;height:200px;">
|
|
|
231 |
<thead>
|
|
|
232 |
</thead>
|
|
|
233 |
<tbody>
|
|
|
234 |
<tr>
|
|
|
235 |
<td class="detail">Item Id</td>
|
|
|
236 |
<td class="value">
|
|
|
237 |
<input id="itemId" name="itemId" value=''type="text" style="width:25%;">
|
|
|
238 |
<input type="button" id="populateStuff" value="Populate" style="width:25%;">
|
|
|
239 |
</td>
|
|
|
240 |
</tr>
|
|
|
241 |
<tr>
|
|
|
242 |
<td class="detail">Brand</td>
|
|
|
243 |
<td class="value"><input id="brand" name="brand" value='' type="text" readonly/></td>
|
|
|
244 |
</tr>
|
|
|
245 |
<tr>
|
|
|
246 |
<td class="detail">Model Number</td>
|
| 9725 |
kshitij.so |
247 |
<td class="value"><input id="modelNumber" name="modelNumber" value='' type="text" disabled/></td>
|
| 9242 |
kshitij.so |
248 |
</tr>
|
|
|
249 |
<tr>
|
|
|
250 |
<td class="detail">Model Name</td>
|
| 9725 |
kshitij.so |
251 |
<td class="value"><input id="modelName" name="modelName" value='' type="text" disabled/></td>
|
| 9242 |
kshitij.so |
252 |
</tr>
|
|
|
253 |
<tr>
|
|
|
254 |
<td class="detail">Color</td>
|
| 9725 |
kshitij.so |
255 |
<td class="value"><input id="color" name="color" value='' type="text" disabled/></td>
|
| 9242 |
kshitij.so |
256 |
</tr>
|
| 9568 |
kshitij.so |
257 |
<tr class="detail"></td>
|
|
|
258 |
<td class="detail">Weight</td>
|
| 9725 |
kshitij.so |
259 |
<td class="value"><input id="itemWeight" name="itemWeight" value='0' type="text" disabled/></td>
|
| 9568 |
kshitij.so |
260 |
</tr>
|
| 9242 |
kshitij.so |
261 |
<tr>
|
|
|
262 |
<td class="detail">Risky</td>
|
|
|
263 |
<td class="value">
|
| 9725 |
kshitij.so |
264 |
<input id="risky" name="risky" value='' type="text" disabled style="text-transform: uppercase;"/></td>
|
| 9242 |
kshitij.so |
265 |
</td>
|
|
|
266 |
</tr>
|
|
|
267 |
<tr>
|
|
|
268 |
<td class="detail">Status</td>
|
| 9725 |
kshitij.so |
269 |
<td class="value"><input id="status" name="status" value='' type="text" disabled/></td>
|
| 9242 |
kshitij.so |
270 |
</tr>
|
|
|
271 |
<tr>
|
|
|
272 |
<td class="detail">Warehouse Id</td>
|
|
|
273 |
<td class="value">
|
|
|
274 |
<input id="warehouseId" name="warehouseId" value='' type="text"/></td>
|
|
|
275 |
</tr>
|
|
|
276 |
<tr>
|
| 9780 |
kshitij.so |
277 |
<td class="detail">Max NLC</td>
|
|
|
278 |
<td class="value"><input id="maxNlc" name="maxNlc" value=''type="text" readonly/></td>
|
|
|
279 |
</tr>
|
|
|
280 |
<tr>
|
| 9242 |
kshitij.so |
281 |
<td class="detail">Snapdeal Selling Price</td>
|
|
|
282 |
<td class="value">
|
| 9725 |
kshitij.so |
283 |
<input id="sellingPrice" name="sellingPrice" value='' type="text" onkeyup="calculateStuff()"></td>
|
| 9242 |
kshitij.so |
284 |
</tr>
|
|
|
285 |
<tr>
|
| 9725 |
kshitij.so |
286 |
<td class="detail">Transfer Price</td>
|
|
|
287 |
<td class="value"><input id="transferPrice" name="transferPrice" value='' type="text" readonly/></td>
|
|
|
288 |
</tr>
|
|
|
289 |
<tr>
|
|
|
290 |
<td class="detail">Other Cost</td>
|
|
|
291 |
<td class="value"><input id="otherCost" name="otherCost" value='0.0' type="text" onkeyup="calculateStuff()"</td>
|
|
|
292 |
</tr>
|
|
|
293 |
<tr>
|
|
|
294 |
<td class="detail">Minimum Possible SP (Calculated)</td>
|
| 9780 |
kshitij.so |
295 |
<td class="value"><input id="minPosSp" name="minPosSp" value='' type="text" readonly/></td><!--Inventory details end-->
|
| 9725 |
kshitij.so |
296 |
</tr>
|
|
|
297 |
<tr>
|
|
|
298 |
<td class="detail">Minimum Possible TP (Calculated)</td>
|
| 9242 |
kshitij.so |
299 |
<td class="value">
|
| 9725 |
kshitij.so |
300 |
<input id="minPosTp" name="minPosTp" value='' type="text" readonly/>
|
| 9242 |
kshitij.so |
301 |
</td>
|
|
|
302 |
</tr>
|
| 9478 |
kshitij.so |
303 |
<tr>
|
| 9725 |
kshitij.so |
304 |
<td class="detail">Website MRP</td>
|
|
|
305 |
<td class="value"><input id="webisteMrp" name="webisteMrp" value='' type="text" disabled/></td>
|
|
|
306 |
</tr>
|
|
|
307 |
<tr>
|
|
|
308 |
<td class="detail">Website Selling Price</td>
|
|
|
309 |
<td class="value"><input id="webisteSellingPrice" name="webisteSellingPrice" value='' type="text" disabled/></td>
|
|
|
310 |
</tr>
|
| 9242 |
kshitij.so |
311 |
</tbody>
|
|
|
312 |
</table>
|
|
|
313 |
</div>
|
|
|
314 |
<div class="left" style="float: right; width: 48%;">
|
|
|
315 |
<table id="upload" style="text-align: center;width: 100%;height:200px;">
|
|
|
316 |
<thead>
|
|
|
317 |
</thead>
|
|
|
318 |
<tbody>
|
|
|
319 |
<tr>
|
| 9725 |
kshitij.so |
320 |
<td class="detail">Margin</td>
|
|
|
321 |
<td class="value"><input id="margin" name="margin" value=''type="text" disabled/></td>
|
|
|
322 |
</tr>
|
|
|
323 |
<tr>
|
|
|
324 |
<td class="detail">Margin %</td>
|
|
|
325 |
<td class="value"><input id="marginPer" name="marginPer" value='' type="text" disabled/></td>
|
|
|
326 |
</tr>
|
|
|
327 |
<tr>
|
| 9242 |
kshitij.so |
328 |
<td class="detail">Suppress Inventory Feed</td>
|
|
|
329 |
<td class="value">
|
| 9725 |
kshitij.so |
330 |
<select name="isSuppressInventoryFeed"><option value="True">Active</option><option selected="selected" value="False">InActive</option></select>
|
| 9242 |
kshitij.so |
331 |
</td>
|
|
|
332 |
</tr>
|
|
|
333 |
<tr>
|
| 9725 |
kshitij.so |
334 |
<td class="detail">Suppress Price Feed</td>
|
|
|
335 |
<td class="value">
|
|
|
336 |
<select name="isSuppressPriceFeed"><option selected="selected" value="True">Active</option><option selected="selected" value="False">InActive</option></select>
|
|
|
337 |
</td>
|
| 9242 |
kshitij.so |
338 |
</tr>
|
|
|
339 |
<tr>
|
| 9725 |
kshitij.so |
340 |
<td class="detail">Snapdeal Listed</td>
|
|
|
341 |
<td class="value">
|
|
|
342 |
<select name="isListedOnSnapdeal"><option selected="selected" value="True">Active</option><option value="False">InActive</option></select>
|
|
|
343 |
</td>
|
| 9242 |
kshitij.so |
344 |
</tr>
|
|
|
345 |
<tr>
|
| 9725 |
kshitij.so |
346 |
<td class="detail">Manual Favourite</td>
|
|
|
347 |
<td class="value">
|
|
|
348 |
<select name="isManualFavourite"><option value="True">Active</option><option selected="selected" value="False">InActive</option></select>
|
|
|
349 |
</td>
|
| 9242 |
kshitij.so |
350 |
</tr>
|
|
|
351 |
<tr>
|
| 9725 |
kshitij.so |
352 |
<td class="detail">Auto Increment</td>
|
| 9242 |
kshitij.so |
353 |
<td class="value">
|
| 9725 |
kshitij.so |
354 |
<select name="isAutoIncrement"><option value="True">Active</option><option selected="selected" value="False">InActive</option></select>
|
| 9242 |
kshitij.so |
355 |
</td>
|
|
|
356 |
</tr>
|
|
|
357 |
<tr>
|
| 9725 |
kshitij.so |
358 |
<td class="detail">Auto Decrement</td>
|
|
|
359 |
<td class="value">
|
|
|
360 |
<select name="isAutoDecrement"><option value="True">Active</option><option selected="selected" value="False">InActive</option></select>
|
|
|
361 |
</td>
|
|
|
362 |
</tr>
|
|
|
363 |
<tr>
|
| 9242 |
kshitij.so |
364 |
<td class="detail">Exception Price</td>
|
|
|
365 |
<td class="value"><input id="exceptionPrice" name="exceptionPrice" value='' type="text"/></td>
|
|
|
366 |
</tr>
|
|
|
367 |
<tr>
|
| 9725 |
kshitij.so |
368 |
<td class="detail">Commission %</td>
|
| 9780 |
kshitij.so |
369 |
<td class="value"><input id="commissionRate" name="commissionRate" value=''type="text" disabled/></td>
|
| 9725 |
kshitij.so |
370 |
</tr>
|
|
|
371 |
<tr>
|
| 9242 |
kshitij.so |
372 |
<td class="detail">Commission</td>
|
|
|
373 |
<td class="value"><input id="commission" name="commission" value='' type="text" readonly/></td>
|
|
|
374 |
</tr>
|
|
|
375 |
<tr>
|
| 9725 |
kshitij.so |
376 |
<td class="detail">VAT %</td>
|
| 9780 |
kshitij.so |
377 |
<td class="value"><input id="vat" name="vat" value='' type="text" onkeyup="calculateStuff()"></td>
|
| 9725 |
kshitij.so |
378 |
</tr>
|
|
|
379 |
<tr>
|
| 9242 |
kshitij.so |
380 |
<td class="detail">Service Tax</td>
|
|
|
381 |
<td class="value"><input id="serviceTax" name="serviceTax" value='' type="text" readonly/></td>
|
|
|
382 |
</tr>
|
|
|
383 |
<tr>
|
|
|
384 |
<td class="detail">Courier Cost</td>
|
|
|
385 |
<td class="value"><input id="courierCost" name="courierCost" value='' type="text" readonly/></td>
|
|
|
386 |
</tr>
|
|
|
387 |
<tr>
|
| 9478 |
kshitij.so |
388 |
<td class="detail">Item Id @ Snapdeal</td>
|
|
|
389 |
<td class="value"><input id="sdItemCode" name="sdItemCode" value='' type="text"></td>
|
|
|
390 |
</tr>
|
|
|
391 |
<tr>
|
| 9568 |
kshitij.so |
392 |
<td class="detail">SUPC Code</td>
|
|
|
393 |
<td class="value"><input id="supc" name="supc" value='' type="text"></td>
|
|
|
394 |
</tr>
|
|
|
395 |
<tr>
|
| 9242 |
kshitij.so |
396 |
<td class="detail">Action</td>
|
|
|
397 |
<td class="value"><input type="submit" value="Update" name="upload" style="width: 25%;">
|
|
|
398 |
<input type="button" style="padding-left: 5px; margin-left: 10px;width: 25%;" id="cancelbutton" name="cancel" value="Cancel">
|
|
|
399 |
</td>
|
|
|
400 |
</tr>
|
| 9780 |
kshitij.so |
401 |
<tr class="detail" style="display:none;"></td>
|
|
|
402 |
<td>
|
|
|
403 |
<input id="returnProvision" name="returnProvision" value='' type="text" disabled/>
|
|
|
404 |
</td>
|
|
|
405 |
</tr>
|
|
|
406 |
<tr class="detail" style="display:none;"></td>
|
|
|
407 |
<td>
|
|
|
408 |
<input id="emiFee" name="emiFee" value='' type="text" disabled/>
|
|
|
409 |
</td>
|
|
|
410 |
</tr>
|
|
|
411 |
<tr class="detail" style="display:none;"></td>
|
|
|
412 |
<td>
|
|
|
413 |
<input id="closingFee" name="closingFee" value='' type="text" disabled/>
|
|
|
414 |
</td>
|
|
|
415 |
</tr>
|
|
|
416 |
<tr class="detail" style="display:none;"></td>
|
|
|
417 |
<td>
|
|
|
418 |
<input id="serviceTaxRate" name="serviceTaxRate" value='' type="text" disabled/>
|
|
|
419 |
</td>
|
|
|
420 |
</tr>
|
| 9242 |
kshitij.so |
421 |
</tbody>
|
|
|
422 |
</table>
|
|
|
423 |
</div>
|
|
|
424 |
</form>
|