Subversion Repositories SmartDukaan

Rev

Rev 18150 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1961 ankur.sing 1
<!DOCTYPE ui:UiBinder SYSTEM "http://dl.google.com/gwt/DTD/xhtml.ent">
2
<ui:UiBinder xmlns:ui="urn:ui:com.google.gwt.uibinder"
10484 vikram.rag 3
	xmlns:g="urn:import:com.google.gwt.user.client.ui" xmlns:dp="urn:import:com.google.gwt.user.datepicker.client">
4
 
5
	<ui:image field='gradient' src='gradient_bg_dark.png'
6
		repeatStyle='Horizontal' />
7
 
8
	<ui:style
9
		type='in.shop2020.catalog.dashboard.client.ItemDetails.ItemDetailStyle'>
1961 ankur.sing 10
		.outer {
10484 vikram.rag 11
		border-left: 1px solid #999;
11671 vikram.rag 12
		border-bottom: 1px solid
13
		#999;
10484 vikram.rag 14
		cursor: pointer;
15
		cursor: hand;
1961 ankur.sing 16
		}
10484 vikram.rag 17
 
1961 ankur.sing 18
		.blueLabel {
10484 vikram.rag 19
		color: white;
11671 vikram.rag 20
		font: bold
21
		12px tahoma, arial, helvetica, sans-serif;
10484 vikram.rag 22
		border: 1px solid #99bbe8;
23
		padding: 5px;
24
		background-color: blue
1961 ankur.sing 25
		}
10484 vikram.rag 26
 
1961 ankur.sing 27
		.greenLabel {
10484 vikram.rag 28
		width: 100px;
11671 vikram.rag 29
		color:
30
		black;
10484 vikram.rag 31
		font: bold 12px tahoma, arial, helvetica, sans-serif;
11671 vikram.rag 32
		border: 1px
33
		solid #99bbe8;
10484 vikram.rag 34
		padding: 5px;
35
		background-color: #66ff99;
1961 ankur.sing 36
		}
10484 vikram.rag 37
 
1992 ankur.sing 38
		.fieldChanged {
10484 vikram.rag 39
		color: white;
40
		font: bold 12px tahoma, arial, helvetica, sans-serif;
41
		border: 1px solid #99bbe8;
42
		padding: 5px;
43
		background-color: red;
1992 ankur.sing 44
		}
10484 vikram.rag 45
 
2027 ankur.sing 46
		.outer {
10484 vikram.rag 47
		border-left: 1px solid #999;
48
		border-bottom: 1px solid #999;
11671 vikram.rag 49
		cursor:
50
		pointer;
10484 vikram.rag 51
		cursor: hand;
52
		}
53
 
54
		@sprite .header {
55
		gwt-image: 'gradient';
56
		background-color: #d3d6dd;
57
		table-layout: fixed;
58
		width: 100%;
11671 vikram.rag 59
		height:
60
		100%;
10484 vikram.rag 61
		}
62
 
63
		.header td {
64
		font-weight: bold;
65
		text-shadow: #fff 0 2px 2px;
66
		padding: 2px 0 1px 10px;
67
		border-top: 1px solid #999;
11671 vikram.rag 68
		border-bottom: 1px
69
		solid #999;
10484 vikram.rag 70
		}
71
 
72
		.table {
73
		table-layout: fixed;
74
		width: 100%;
75
		}
76
 
77
		.table td {
78
		border-top: 1px solid #fff;
79
		border-bottom: 1px solid #fff;
11671 vikram.rag 80
		padding: 2px
81
 
10484 vikram.rag 82
		}
83
		.numeric-box{
84
		width: 80px;
85
		text-align: right;
86
		color: black;
87
		font: bold 12px tahoma, arial, helvetica, sans-serif;
11671 vikram.rag 88
		border: 1px solid
89
		#99bbe8;
10484 vikram.rag 90
		padding: 5px;
91
		background-color: #66ff99;
92
		}
93
 
94
		.vendorTable {
11671 vikram.rag 95
		float:
96
		right;
10484 vikram.rag 97
		border: 1px solid #99bbe8;
98
		padding-top:10px
99
		}
100
 
2066 ankur.sing 101
		.inventoryTable {
10484 vikram.rag 102
		float: left;
103
		border: 1px solid #99bbe8;
104
		padding-bottom:10px
2027 ankur.sing 105
		}
10484 vikram.rag 106
 
107
		.buttonContainer {
108
		width: 100%;
109
		padding-top: 40px;
110
		padding-left: 370px;
2027 ankur.sing 111
		}
10484 vikram.rag 112
 
4423 phani.kuma 113
		.textlabel {
10484 vikram.rag 114
		border-top: 2px solid #99bbe8;
115
		text-align: center;
18150 kshitij.so 116
		}
117
 
118
		.bulkPricingTable {
119
		float: left;
120
		border: 1px solid #99bbe8;
121
		padding-bottom:10px
10484 vikram.rag 122
		}		
1961 ankur.sing 123
	</ui:style>
124
 
125
	<g:DockLayoutPanel styleName='{style.outer}' unit='EM'>
126
		<g:center>
10484 vikram.rag 127
			<g:ScrollPanel>
128
				<g:VerticalPanel>
129
					<g:HorizontalPanel>
130
						<g:cell>
131
							<g:Grid>
132
								<g:row>
133
									<g:customCell>
134
										<g:Label styleName='{style.blueLabel}'>Item id:</g:Label>
135
									</g:customCell>
136
									<g:customCell>
137
										<g:Label styleName='{style.greenLabel}' ui:field="itemId"></g:Label>
138
									</g:customCell>
139
								</g:row>
140
								<g:row>
141
									<g:customCell>
142
										<g:Label styleName='{style.blueLabel}'>Item Status:</g:Label>
143
									</g:customCell>
144
									<g:customCell>
145
										<g:Label styleName='{style.greenLabel}' ui:field="itemStatus"></g:Label>
146
									</g:customCell>
147
								</g:row>
148
								<g:row>
149
									<g:customCell>
150
										<g:Label styleName='{style.blueLabel}'>Product Group:</g:Label>
151
									</g:customCell>
152
									<g:customCell>
153
										<g:Label styleName='{style.greenLabel}' ui:field="productGroup"></g:Label>
154
									</g:customCell>
155
								</g:row>
156
								<g:row>
157
									<g:customCell>
158
										<g:Label styleName='{style.blueLabel}'>Brand:</g:Label>
159
									</g:customCell>
160
									<g:customCell>
161
										<g:TextBox styleName="{style.greenLabel}" ui:field="brand"></g:TextBox>
162
									</g:customCell>
163
								</g:row>
164
								<g:row>
165
									<g:customCell>
166
										<g:Label styleName='{style.blueLabel}'>Model Number:</g:Label>
167
									</g:customCell>
168
									<g:customCell>
169
										<g:TextBox styleName="{style.greenLabel}" ui:field="modelNumber"></g:TextBox>
170
									</g:customCell>
171
								</g:row>
172
								<g:row>
173
									<g:customCell>
174
										<g:Label styleName='{style.blueLabel}'>Model Name:</g:Label>
175
									</g:customCell>
176
									<g:customCell>
177
										<g:TextBox styleName="{style.greenLabel}" ui:field="modelName"></g:TextBox>
178
									</g:customCell>
179
								</g:row>
180
								<g:row>
181
									<g:customCell>
182
										<g:Label styleName='{style.blueLabel}'>Colour:</g:Label>
183
									</g:customCell>
184
									<g:customCell>
185
										<g:TextBox styleName="{style.greenLabel}" ui:field="color"></g:TextBox>
186
									</g:customCell>
187
								</g:row>
188
								<g:row>
189
									<g:customCell>
190
										<g:Label styleName='{style.blueLabel}'>Preferred Insurer:</g:Label>
191
									</g:customCell>
192
									<g:customCell>
193
										<g:ListBox ui:field="preferredInsurer"></g:ListBox>
194
									</g:customCell>
195
								</g:row>
196
								<g:row>
197
									<g:customCell>
198
										<g:Label styleName='{style.blueLabel}'>ASIN:</g:Label>
199
									</g:customCell>
200
									<g:customCell>
11671 vikram.rag 201
										<g:TextBox styleName='{style.greenLabel}' ui:field="asin"></g:TextBox>
10484 vikram.rag 202
									</g:customCell>
203
								</g:row>
204
								<g:row>
205
									<g:customCell>
206
										<g:Label styleName='{style.blueLabel}'>Website N-Day Sale:</g:Label>
207
									</g:customCell>
208
									<g:customCell>
209
										<g:TextBox styleName='{style.greenLabel}' ui:field="websiteLastNdaySale"></g:TextBox>
210
									</g:customCell>
211
								</g:row>
11671 vikram.rag 212
								<g:row>
213
									<g:customCell>
214
										<g:Label styleName='{style.blueLabel}'>Deal Price:</g:Label>
215
									</g:customCell>
216
									<g:customCell>
217
										<g:TextBox styleName='{style.greenLabel}' ui:field="dealPrice"></g:TextBox>
218
									</g:customCell>
219
								</g:row>
220
								<g:row>
221
									<g:customCell>
222
										<g:Label styleName='{style.blueLabel}'>Deal Start Date</g:Label>
223
									</g:customCell>
224
									<g:customCell>
225
										<dp:DateBox styleName='{style.greenLabel}'
226
											ui:field="dealStartDate" enabled="true"></dp:DateBox>
227
									</g:customCell>
228
								</g:row>
229
								<g:row>
230
									<g:customCell>
231
										<g:Label styleName='{style.blueLabel}'>Deal Freebie Option</g:Label>
232
									</g:customCell>
233
									<g:customCell>
234
										<g:ListBox ui:field="dealFreebieOption"></g:ListBox>
235
									</g:customCell>
236
								</g:row>
10484 vikram.rag 237
							</g:Grid>
238
						</g:cell>
239
						<g:cell>
240
							<g:Grid>
241
								<g:row>
242
									<g:customCell>
243
										<g:Label styleName='{style.blueLabel}'>Status Description</g:Label>
244
									</g:customCell>
245
									<g:customCell>
246
										<g:TextBox styleName='{style.greenLabel}' ui:field="statusDesc"></g:TextBox>
247
									</g:customCell>
248
								</g:row>
249
								<g:row>
250
									<g:customCell>
251
										<g:Label styleName='{style.blueLabel}'>Category:</g:Label>
252
									</g:customCell>
253
									<g:customCell>
254
										<g:Label styleName='{style.greenLabel}' ui:field="contentCategory"></g:Label>
255
									</g:customCell>
256
								</g:row>
257
								<g:row>
258
									<g:customCell>
259
										<g:Label styleName='{style.blueLabel}'>Comments:</g:Label>
260
									</g:customCell>
261
									<g:customCell>
262
										<g:TextBox styleName='{style.greenLabel}' ui:field="comments"></g:TextBox>
263
									</g:customCell>
264
								</g:row>
265
								<g:row>
266
									<g:customCell>
267
										<g:Label styleName='{style.blueLabel}'>Catalog Item ID:</g:Label>
268
									</g:customCell>
269
									<g:customCell>
270
										<g:Label styleName='{style.greenLabel}' ui:field="catalogItemId"></g:Label>
271
									</g:customCell>
272
								</g:row>
273
								<g:row>
274
									<g:customCell>
275
										<g:Label styleName='{style.blueLabel}'>Preferred Vendor:</g:Label>
276
									</g:customCell>
277
									<g:customCell>
278
										<g:ListBox ui:field="preferredVendor"></g:ListBox>
279
									</g:customCell>
280
								</g:row>
281
								<g:row>
282
									<g:customCell>
283
										<g:Button ui:field="comingSoonButton" text="Coming Soon"></g:Button>
284
									</g:customCell>
285
								</g:row>
286
								<g:row>
287
									<g:customCell>
288
										<g:Label styleName='{style.blueLabel}'>Coming Soon Start Date</g:Label>
289
									</g:customCell>
290
									<g:customCell>
291
										<dp:DateBox styleName='{style.greenLabel}'
292
											ui:field="comingSoonStartDate" enabled="false"></dp:DateBox>
293
									</g:customCell>
294
								</g:row>
295
								<g:row>
296
									<g:customCell>
297
										<g:Label styleName='{style.blueLabel}'>Expected Arrival Date</g:Label>
298
									</g:customCell>
299
									<g:customCell>
300
										<dp:DateBox styleName='{style.greenLabel}'
301
											ui:field="expectedArrivalDate" enabled="false"></dp:DateBox>
302
									</g:customCell>
303
								</g:row>
304
								<g:row>
305
									<g:customCell>
306
										<g:Label styleName='{style.blueLabel}'>Amazon N-Day Sale:</g:Label>
307
									</g:customCell>
308
									<g:customCell>
309
										<g:TextBox styleName='{style.greenLabel}' ui:field="amazonLastNdaySale"></g:TextBox>
310
									</g:customCell>
311
								</g:row>
11671 vikram.rag 312
								<g:row>
313
									<g:customCell>
314
										<g:Label styleName='{style.blueLabel}'>Deal Freebie Item ID:</g:Label>
315
									</g:customCell>
316
									<g:customCell>
317
										<g:TextBox styleName='{style.greenLabel}' ui:field="dealFreebieItemId"></g:TextBox>
318
									</g:customCell>
319
								</g:row>
320
								<g:row>
321
									<g:customCell>
322
										<g:Label styleName='{style.blueLabel}'>Deal End Date</g:Label>
323
									</g:customCell>
324
									<g:customCell>
325
										<dp:DateBox styleName='{style.greenLabel}'
326
											ui:field="dealEndDate" enabled="true"></dp:DateBox>
327
									</g:customCell>
328
								</g:row>
18048 kshitij.so 329
								<g:row>
330
									<g:customCell>
331
										<g:Label styleName='{style.blueLabel}'>Pack Quantity:</g:Label>
332
									</g:customCell>
333
									<g:customCell width='6'>
334
										<g:TextBox styleName='{style.numeric-box}' ui:field="packQuantity"></g:TextBox>
335
									</g:customCell>
336
								</g:row>
10484 vikram.rag 337
							</g:Grid>
338
						</g:cell>
339
						<g:cell>
340
							<g:Grid>
341
								<g:row>
342
									<g:customCell>
343
										<g:Label styleName='{style.blueLabel}'>MRP:</g:Label>
344
									</g:customCell>
345
									<g:customCell width='6'>
346
										<g:TextBox styleName='{style.numeric-box}' ui:field="mrp"></g:TextBox>
347
									</g:customCell>
348
								</g:row>
349
								<g:row>
350
									<g:customCell>
351
										<g:Label styleName='{style.blueLabel}'>Selling Price:</g:Label>
352
									</g:customCell>
353
									<g:customCell size='6'>
354
										<g:TextBox styleName='{style.numeric-box}' ui:field="sellingPrice"></g:TextBox>
355
									</g:customCell>
356
								</g:row>
357
								<g:row>
358
									<g:customCell>
359
										<g:Label styleName='{style.blueLabel}'>Weight(in kg):</g:Label>
360
									</g:customCell>
361
									<g:customCell>
362
										<g:TextBox styleName='{style.numeric-box}' ui:field="weight"></g:TextBox>
363
									</g:customCell>
364
								</g:row>
365
								<g:row>
366
									<g:customCell>
367
										<g:Label styleName='{style.blueLabel}'>Expected Delay(Days):</g:Label>
368
									</g:customCell>
369
									<g:customCell>
370
										<g:TextBox styleName='{style.numeric-box}' ui:field="expectedDelay"></g:TextBox>
371
									</g:customCell>
372
								</g:row>
373
								<g:row>
374
									<g:customCell>
375
										<g:Label styleName='{style.blueLabel}'>Is Warehouse Preference Sticky:</g:Label>
376
									</g:customCell>
377
									<g:customCell>
378
										<g:CheckBox ui:field="warehouseStickiness"></g:CheckBox>
379
									</g:customCell>
380
								</g:row>
381
								<g:row>
382
									<g:customCell>
383
										<g:Label styleName='{style.blueLabel}'>Has Serial Number:</g:Label>
384
									</g:customCell>
385
									<g:customCell>
386
										<g:CheckBox ui:field="itemType"></g:CheckBox>
387
									</g:customCell>
388
								</g:row>
389
								<g:row>
390
									<g:customCell>
391
										<g:Label styleName='{style.blueLabel}'>Show Selling Price</g:Label>
392
									</g:customCell>
393
									<g:customCell>
394
										<g:CheckBox ui:field="showSellingPrice" enabled="false"></g:CheckBox>
395
									</g:customCell>
396
								</g:row>
397
								<g:row>
398
									<g:customCell>
399
										<g:Label styleName='{style.blueLabel}'>Hold Override</g:Label>
400
									</g:customCell>
401
									<g:customCell>
402
										<g:CheckBox ui:field="holdOverride"></g:CheckBox>
403
									</g:customCell>
404
								</g:row>
405
								<g:row>
406
									<g:customCell>
407
										<g:Label styleName='{style.blueLabel}'>Best Deals Details Text:</g:Label>
408
									</g:customCell>
409
									<g:customCell>
410
										<g:TextBox styleName='{style.greenLabel}' ui:field="bestDealsDetailsText"></g:TextBox>
411
									</g:customCell>
412
								</g:row>
413
								<g:row>
414
									<g:customCell>
415
										<g:Label styleName='{style.blueLabel}'>Ebay N-Day Sale:</g:Label>
416
									</g:customCell>
417
									<g:customCell>
418
										<g:TextBox styleName='{style.greenLabel}' ui:field="ebayLastNdaySale"></g:TextBox>
419
									</g:customCell>
420
								</g:row>
11671 vikram.rag 421
								<g:row>
422
									<g:customCell>
423
										<g:Label styleName='{style.blueLabel}'>Deal Text</g:Label>
424
									</g:customCell>
425
									<g:customCell>
426
										<g:TextBox styleName='{style.greenLabel}' ui:field="dealText"></g:TextBox>
427
									</g:customCell>
428
								</g:row>
429
								<g:row>
430
									<g:customCell>
431
										<g:Label styleName='{style.blueLabel}'>Is Deal available on COD</g:Label>
432
									</g:customCell>
433
									<g:customCell>
434
										<g:CheckBox ui:field="isCodOnDeal"></g:CheckBox>
435
									</g:customCell>
436
								</g:row>
18150 kshitij.so 437
								<g:row>
438
									<g:customCell>
439
										<g:Label styleName='{style.blueLabel}'>Quantity Step:</g:Label>
440
									</g:customCell>
441
									<g:customCell width='6'>
442
										<g:TextBox styleName='{style.numeric-box}' ui:field="quantityStep"></g:TextBox>
443
									</g:customCell>
444
								</g:row>
10484 vikram.rag 445
							</g:Grid>
446
						</g:cell>
447
						<g:cell>
448
							<g:Grid>
449
								<g:row>
450
									<g:customCell>
451
										<g:Label styleName='{style.blueLabel}'>Added On:</g:Label>
452
									</g:customCell>
453
									<g:customCell>
454
										<g:Label styleName='{style.greenLabel}' ui:field="addedOn"></g:Label>
455
									</g:customCell>
456
								</g:row>
457
								<g:row>
458
									<g:customCell>
459
										<g:Label styleName='{style.blueLabel}'>Start Date:</g:Label>
460
									</g:customCell>
461
									<g:customCell>
462
										<dp:DateBox styleName='{style.greenLabel}'
463
											ui:field="startDate"></dp:DateBox>
464
									</g:customCell>
465
								</g:row>
466
								<g:row>
467
									<g:customCell>
468
										<g:Label styleName='{style.blueLabel}'>Retiring Date:</g:Label>
469
									</g:customCell>
470
									<g:customCell>
471
										<g:Label styleName='{style.greenLabel}' ui:field="retireDate"></g:Label>
472
									</g:customCell>
473
								</g:row>
474
								<g:row>
475
									<g:customCell>
476
										<g:Label styleName='{style.blueLabel}'>Updated On:</g:Label>
477
									</g:customCell>
478
									<g:customCell>
479
										<g:Label styleName='{style.greenLabel}' ui:field="updatedOn"></g:Label>
480
									</g:customCell>
481
								</g:row>
482
								<g:row>
483
									<g:customCell>
484
										<g:Label styleName='{style.blueLabel}'>Has Item Number:</g:Label>
485
									</g:customCell>
486
									<g:customCell>
487
										<g:CheckBox ui:field="hasItemNo"></g:CheckBox>
488
									</g:customCell>
489
								</g:row>
490
								<g:row>
491
									<g:customCell>
492
										<g:Label styleName='{style.blueLabel}'>Best Deals Details Link:</g:Label>
493
									</g:customCell>
494
									<g:customCell>
495
										<g:TextBox styleName='{style.greenLabel}' ui:field="bestDealsDetailsLink"></g:TextBox>
496
									</g:customCell>
497
								</g:row>
498
								<g:row>
499
									<g:customCell>
500
										<g:Label styleName='{style.blueLabel}'>Freebie ItemId:</g:Label>
501
									</g:customCell>
502
									<g:customCell>
503
										<g:TextBox styleName='{style.greenLabel}' ui:field="freebieItemId"></g:TextBox>
504
									</g:customCell>
505
								</g:row>
506
								<g:row>
507
									<g:customCell>
508
										<g:Label styleName='{style.blueLabel}'>Last N Day Sale:</g:Label>
509
									</g:customCell>
510
									<g:customCell>
511
										<g:TextBox styleName='{style.greenLabel}' ui:field="lastNdaySale"></g:TextBox>
512
									</g:customCell>
513
								</g:row>
514
								<g:row>
515
									<g:customCell>
516
										<g:Label styleName='{style.blueLabel}'>Snapdeal N-Day Sale:</g:Label>
517
									</g:customCell>
518
									<g:customCell>
519
										<g:TextBox styleName='{style.greenLabel}' ui:field="snapdealLastNdaySale"></g:TextBox>
520
									</g:customCell>
521
								</g:row>
11671 vikram.rag 522
								<g:row>
523
									<g:customCell>
524
										<g:Label styleName='{style.blueLabel}'>Deal Rank</g:Label>
525
									</g:customCell>
526
									<g:customCell>
527
										<g:TextBox styleName='{style.greenLabel}' ui:field="dealRank"></g:TextBox>
528
									</g:customCell>
529
								</g:row>
18150 kshitij.so 530
								<g:row>
11671 vikram.rag 531
									<g:customCell>
532
										<g:Label styleName='{style.blueLabel}'>Is Deal Active</g:Label>
533
									</g:customCell>
534
									<g:customCell>
535
										<g:CheckBox ui:field="isDealActive"></g:CheckBox>
536
									</g:customCell>
537
								</g:row>
18150 kshitij.so 538
								<g:row>
539
									<g:customCell>
540
										<g:Label styleName='{style.blueLabel}'>Minimum Buy Qty:</g:Label>
541
									</g:customCell>
542
									<g:customCell width='6'>
543
										<g:TextBox styleName='{style.numeric-box}' ui:field="minimumBuyQuantity"></g:TextBox>
544
									</g:customCell>
545
								</g:row>
10484 vikram.rag 546
							</g:Grid>
547
						</g:cell>
548
						<g:cell>
549
							<g:Grid>
550
								<g:row>
551
									<g:customCell>
552
										<g:Label styleName='{style.blueLabel}'>Best Deals Text:</g:Label>
553
									</g:customCell>
554
									<g:customCell>
555
										<g:TextBox styleName='{style.greenLabel}' ui:field="bestDealsText"></g:TextBox>
556
									</g:customCell>
557
								</g:row>
558
								<g:row>
559
									<g:customCell>
560
										<g:Label styleName='{style.blueLabel}'>Best Deals Value:</g:Label>
561
									</g:customCell>
562
									<g:customCell>
563
										<g:TextBox styleName='{style.numeric-box}' ui:field="bestDealsValue"></g:TextBox>
564
									</g:customCell>
565
								</g:row>
566
								<g:row>
567
									<g:customCell>
568
										<g:Label styleName='{style.blueLabel}'>Best Selling Rank:</g:Label>
569
									</g:customCell>
570
									<g:customCell>
571
										<g:TextBox styleName='{style.numeric-box}' ui:field="bestSellingRank"></g:TextBox>
572
									</g:customCell>
573
								</g:row>
574
								<g:row>
575
									<g:customCell>
576
										<g:Label styleName='{style.blueLabel}'>Default for Entity:</g:Label>
577
									</g:customCell>
578
									<g:customCell>
579
										<g:CheckBox ui:field="defaultForEntity"></g:CheckBox>
580
									</g:customCell>
581
								</g:row>
582
								<g:row>
583
									<g:customCell>
584
										<g:Label styleName='{style.blueLabel}'>Is Risky:</g:Label>
585
									</g:customCell>
586
									<g:customCell>
587
										<g:CheckBox ui:field="risky" enabled='false'></g:CheckBox>
588
									</g:customCell>
589
								</g:row>
590
								<g:row>
591
									<g:customCell>
592
										<g:Label styleName='{style.blueLabel}'>Min StockLevel:</g:Label>
593
									</g:customCell>
594
									<g:customCell>
595
										<g:TextBox styleName='{style.numeric-box}' ui:field="minStockLevel"></g:TextBox>
596
									</g:customCell>
597
								</g:row>
598
								<g:row>
599
									<g:customCell>
600
										<g:Label styleName='{style.blueLabel}'>min Days Of Stock:</g:Label>
601
									</g:customCell>
602
									<g:customCell>
603
										<g:TextBox styleName='{style.numeric-box}' ui:field="numOfDaysStock"></g:TextBox>
604
									</g:customCell>
605
								</g:row>
606
								<g:row>
607
									<g:customCell>
608
										<g:Label styleName='{style.blueLabel}'>Hold Inventory:</g:Label>
609
									</g:customCell>
610
									<g:customCell>
611
										<g:TextBox styleName='{style.numeric-box}' ui:field="holdInventory"></g:TextBox>
612
									</g:customCell>
613
								</g:row>
614
								<g:row>
615
									<g:customCell>
616
										<g:Label styleName='{style.blueLabel}'>Default Inventory:</g:Label>
617
									</g:customCell>
618
									<g:customCell>
619
										<g:TextBox styleName='{style.numeric-box}' ui:field="defaultInventory"></g:TextBox>
620
									</g:customCell>
621
								</g:row>
622
								<g:row>
623
									<g:customCell>
624
										<g:Label styleName='{style.blueLabel}'>Flipkart N-Day Sale:</g:Label>
625
									</g:customCell>
626
									<g:customCell>
627
										<g:TextBox styleName='{style.greenLabel}' ui:field="flipkartLastNdaySale"></g:TextBox>
628
									</g:customCell>
629
								</g:row>
11671 vikram.rag 630
								<g:row>
631
									<g:customCell>
13727 manish.sha 632
										<g:Label styleName='{style.blueLabel}'>HomeShop18 N-Day Sale:</g:Label>
633
									</g:customCell>
634
									<g:customCell>
635
										<g:TextBox styleName='{style.greenLabel}' ui:field="homeshop18LastNdaySale"></g:TextBox>
636
									</g:customCell>
637
								</g:row>
638
								<g:row>
639
									<g:customCell>
11671 vikram.rag 640
										<g:Label styleName='{style.blueLabel}'>Deal Text Option</g:Label>
641
									</g:customCell>
642
									<g:customCell>
643
										<g:ListBox ui:field="dealTextOption"></g:ListBox>
644
									</g:customCell>
645
								</g:row>
18415 kshitij.so 646
								<g:row>
647
									<g:customCell>
648
										<g:Label styleName='{style.blueLabel}'>Maximum Buy Qty:</g:Label>
649
									</g:customCell>
650
									<g:customCell width='6'>
651
										<g:TextBox styleName='{style.numeric-box}' ui:field="maximumBuyQuantity"></g:TextBox>
652
									</g:customCell>
653
								</g:row>
10484 vikram.rag 654
							</g:Grid>
655
						</g:cell>
656
					</g:HorizontalPanel>
657
 
658
					<g:VerticalPanel>
659
						<g:VerticalPanel styleName='{style.inventoryTable}'>
660
							<g:FlexTable ui:field='headerAvailability' styleName='{style.header}'
661
								cellSpacing='0' cellPadding='0' />
662
							<g:FlexTable ui:field='availabilityTable' styleName='{style.table}'
663
								cellSpacing='0' cellPadding='0' />
664
						</g:VerticalPanel>
18150 kshitij.so 665
						<g:VerticalPanel styleName='{style.bulkPricingTable}'>
666
							<g:Label styleName='{style.textlabel}'>Bulk Pricing</g:Label>
667
							<g:FlexTable ui:field='headerBulkPricing' styleName='{style.header}'
668
								cellSpacing='0' cellPadding='0' />
669
							<g:FlexTable ui:field='tableBulkPricing' styleName='{style.table}'
670
								cellSpacing='0' cellPadding='0' />
671
						</g:VerticalPanel>
10484 vikram.rag 672
						<g:VerticalPanel>
673
							<g:Label styleName='{style.textlabel}'>Vendor Keys</g:Label>
674
							<g:FlexTable ui:field='headerVendorItemKey'
675
								styleName='{style.header}' cellSpacing='0' cellPadding='0' />
676
							<g:FlexTable ui:field='tableVendorItemKey' styleName='{style.table}'
677
								cellSpacing='0' cellPadding='0' />
678
							<g:Label></g:Label>
679
						</g:VerticalPanel>
680
						<g:VerticalPanel>
681
							<g:Label styleName='{style.textlabel}'>Vendor Prices</g:Label>
682
							<g:FlexTable ui:field='headerVendorPrices' styleName='{style.header}'
683
								cellSpacing='0' cellPadding='0' />
684
							<g:FlexTable ui:field='tableVendorPrices' styleName='{style.table}'
685
								cellSpacing='0' cellPadding='0' />
686
						</g:VerticalPanel>
687
						<g:VerticalPanel>
688
							<g:Label styleName='{style.textlabel}'>Vouchers</g:Label>
689
							<g:FlexTable ui:field='headerVouchers' styleName='{style.header}'
690
								cellSpacing='0' cellPadding='0' />
691
							<g:FlexTable ui:field='tableVouchers' styleName='{style.table}'
692
								cellSpacing='0' cellPadding='0' />
693
						</g:VerticalPanel>
694
						<g:VerticalPanel>
695
							<g:Label styleName='{style.textlabel}'>Source Prices</g:Label>
696
							<g:FlexTable ui:field='headerSourcePrices' styleName='{style.header}'
697
								cellSpacing='0' cellPadding='0' />
698
							<g:FlexTable ui:field='tableSourcePrices' styleName='{style.table}'
699
								cellSpacing='0' cellPadding='0' />
700
						</g:VerticalPanel>
701
						<g:VerticalPanel>
702
							<g:Label styleName='{style.textlabel}'>VAT Details</g:Label>
703
							<g:FlexTable ui:field='headerVatDetails' styleName='{style.header}'
704
								cellSpacing='0' cellPadding='0' />
705
							<g:FlexTable ui:field='tableVatDetails' styleName='{style.table}'
706
								cellSpacing='0' cellPadding='0' />
707
						</g:VerticalPanel>
708
						<g:VerticalPanel>
709
							<g:Label styleName='{style.textlabel}'>Similar Items</g:Label>
710
							<g:FlexTable ui:field='headerSimilarItems' styleName='{style.header}'
711
								cellSpacing='0' cellPadding='0' />
712
							<g:FlexTable ui:field='tableSimilarItems' styleName='{style.table}'
713
								cellSpacing='0' cellPadding='0' />
714
						</g:VerticalPanel>
715
					</g:VerticalPanel>
716
					<g:VerticalPanel>
717
						<g:Label styleName='{style.textlabel}'>Inactive Inventory Sync Warehouses</g:Label>
718
						<g:FlexTable ui:field='headerIgnoredWarehouse'
719
							styleName='{style.header}' cellSpacing='0' cellPadding='0' />
720
						<g:FlexTable ui:field='tableIgnoredWarehouse'
721
							styleName='{style.table}' cellSpacing='0' cellPadding='0' />
722
					</g:VerticalPanel>
723
 
724
					<!-- <g:VerticalPanel styleName='{style.buttonContainer}'> <g:Button 
725
						ui:field="submit">Update Item</g:Button> </g:VerticalPanel> -->
726
				</g:VerticalPanel>
727
			</g:ScrollPanel>
1961 ankur.sing 728
		</g:center>
729
	</g:DockLayoutPanel>
5118 mandeep.dh 730
</ui:UiBinder>