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