Subversion Repositories SmartDukaan

Rev

Rev 3558 | Rev 4423 | Go to most recent revision | 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"
2068 ankur.sing 3
	xmlns:g="urn:import:com.google.gwt.user.client.ui"
4
    xmlns:dp="urn:import:com.google.gwt.user.datepicker.client">
1992 ankur.sing 5
 
6
    <ui:image field='gradient' src='gradient_bg_dark.png' repeatStyle='Horizontal'/>
2359 ankur.sing 7
 
1992 ankur.sing 8
	<ui:style type='in.shop2020.catalog.dashboard.client.ItemDetails.ItemDetailStyle'>
1961 ankur.sing 9
		.outer {
10
			border-left: 1px solid #999;
11
			border-bottom: 1px solid #999;
12
			cursor: pointer;
13
			cursor: hand;
14
		}
15
 
16
		.blueLabel {
17
			color: white;
18
			font: bold 12px tahoma, arial, helvetica, sans-serif;
19
			border: 1px solid #99bbe8;
20
			padding: 5px;
21
			background-color: blue
22
		}
23
 
24
		.greenLabel {
2068 ankur.sing 25
			width: 100px;
1961 ankur.sing 26
			color: black;
27
			font: bold 12px tahoma, arial, helvetica, sans-serif;
28
			border: 1px solid #99bbe8;
29
			padding: 5px;
30
			background-color: #66ff99;
31
		}
1992 ankur.sing 32
 
33
		.fieldChanged {
34
			color: white;
35
			font: bold 12px tahoma, arial, helvetica, sans-serif;
36
			border: 1px solid #99bbe8;
37
			padding: 5px;
38
			background-color: red;
39
		}
40
 
2027 ankur.sing 41
		.outer {
1992 ankur.sing 42
            border-left: 1px solid #999;
43
            border-bottom: 1px solid #999;
44
            cursor: pointer;
45
            cursor: hand;
46
        }
47
 
48
        @sprite .header {
49
            gwt-image: 'gradient';
50
            background-color: #d3d6dd;
51
            table-layout: fixed;
52
            width: 100%;
53
            height: 100%;
54
        }
55
 
56
        .header td {
57
            font-weight: bold;
58
            text-shadow: #fff 0 2px 2px;
59
            padding: 2px 0 1px 10px;
60
            border-top: 1px solid #999;
61
            border-bottom: 1px solid #999;
62
        }
63
 
64
        .table {
65
            table-layout: fixed;
66
            width: 100%;
67
        }
68
 
69
        .table td {
70
            border-top: 1px solid #fff;
71
            border-bottom: 1px solid #fff;
72
            padding: 2px 0 2px 10px;
73
        }
2066 ankur.sing 74
        .numeric-box{
2068 ankur.sing 75
        	width: 80px;
2066 ankur.sing 76
        	text-align: right;
77
        	color: black;
78
			font: bold 12px tahoma, arial, helvetica, sans-serif;
79
			border: 1px solid #99bbe8;
80
			padding: 5px;
81
			background-color: #66ff99;
82
        }
2027 ankur.sing 83
 
2066 ankur.sing 84
        .vendorTable {
2027 ankur.sing 85
        	float: right;
86
			border: 1px solid #99bbe8;
2066 ankur.sing 87
			padding-top:10px
2027 ankur.sing 88
       	}
1992 ankur.sing 89
 
2066 ankur.sing 90
		.inventoryTable {
2027 ankur.sing 91
			float: left;
92
			border: 1px solid #99bbe8;
2066 ankur.sing 93
			padding-bottom:10px
2027 ankur.sing 94
		}
1992 ankur.sing 95
 
2027 ankur.sing 96
		.buttonContainer	{
97
			width: 100%;
98
			padding-top: 40px;
99
			padding-left: 370px;
100
		}
1992 ankur.sing 101
 
1961 ankur.sing 102
	</ui:style>
103
 
104
	<g:DockLayoutPanel styleName='{style.outer}' unit='EM'>
105
		<g:center>
2027 ankur.sing 106
        <g:ScrollPanel>
1992 ankur.sing 107
            <g:VerticalPanel>
108
    			<g:HorizontalPanel>
109
    				<g:cell>
110
    					<g:Grid>
111
    						<g:row>
112
    							<g:customCell>
113
    								<g:Label styleName='{style.blueLabel}'>Item id:</g:Label>
114
    							</g:customCell>
115
    							<g:customCell>
116
    								<g:Label styleName='{style.greenLabel}' ui:field="itemId"></g:Label>
117
    							</g:customCell>
118
    						</g:row>
119
                            <g:row>
120
                                <g:customCell>
121
                                    <g:Label styleName='{style.blueLabel}'>Item Status:</g:Label>
122
                                </g:customCell>
123
                                <g:customCell>
124
                                    <g:Label styleName='{style.greenLabel}' ui:field="itemStatus"></g:Label>
125
                                </g:customCell>
126
                            </g:row>
127
    						<g:row>
128
    							<g:customCell>
129
    								<g:Label styleName='{style.blueLabel}'>Product Group:</g:Label>
130
    							</g:customCell>
131
    							<g:customCell>
2027 ankur.sing 132
    								<g:TextBox styleName='{style.greenLabel}' ui:field="productGroup"></g:TextBox>
1992 ankur.sing 133
    							</g:customCell>
134
    						</g:row>
135
    						<g:row>
136
    							<g:customCell>
137
    								<g:Label styleName='{style.blueLabel}'>Brand:</g:Label>
138
    							</g:customCell>
139
    							<g:customCell>
2027 ankur.sing 140
    								<g:TextBox styleName="{style.greenLabel}" ui:field="brand"></g:TextBox>
1992 ankur.sing 141
    							</g:customCell>
142
    						</g:row>
143
    						<g:row>
144
    							<g:customCell>
145
    								<g:Label styleName='{style.blueLabel}'>Model Number:</g:Label>
146
    							</g:customCell>
147
    							<g:customCell>
2027 ankur.sing 148
    								<g:TextBox styleName="{style.greenLabel}" ui:field="modelNumber"></g:TextBox>
1992 ankur.sing 149
    							</g:customCell>
150
    						</g:row>
151
    						<g:row>
152
    							<g:customCell>
153
    								<g:Label styleName='{style.blueLabel}'>Model Name:</g:Label>
154
    							</g:customCell>
155
    							<g:customCell>
2027 ankur.sing 156
    								<g:TextBox styleName="{style.greenLabel}" ui:field="modelName"></g:TextBox>
1992 ankur.sing 157
    							</g:customCell>
158
    						</g:row>
159
    						<g:row>
160
    							<g:customCell>
161
    								<g:Label styleName='{style.blueLabel}'>Colour:</g:Label>
162
    							</g:customCell>
163
    							<g:customCell>
2027 ankur.sing 164
    								<g:TextBox styleName="{style.greenLabel}" ui:field="color"></g:TextBox>
1992 ankur.sing 165
    							</g:customCell>
166
    						</g:row>
167
    					</g:Grid>
168
    				</g:cell>
169
    				<g:cell>
170
    					<g:Grid>
2359 ankur.sing 171
                            <g:row>
172
                                <g:customCell>
173
                                    <g:Label styleName='{style.blueLabel}'>Status Description</g:Label>
174
                                </g:customCell>
175
                                <g:customCell>
176
                                    <g:TextBox styleName='{style.greenLabel}' ui:field="statusDesc"></g:TextBox>
177
                                </g:customCell>
178
                            </g:row>
1992 ankur.sing 179
    						<g:row>
180
    							<g:customCell>
181
    								<g:Label styleName='{style.blueLabel}'>Category:</g:Label>
182
    							</g:customCell>
183
    							<g:customCell>
2105 ankur.sing 184
    								<g:Label styleName='{style.greenLabel}' ui:field="contentCategory"></g:Label>
1992 ankur.sing 185
    							</g:customCell>
186
    						</g:row>
187
    						<g:row>
188
    							<g:customCell>
189
    								<g:Label styleName='{style.blueLabel}'>Comments:</g:Label>
190
    							</g:customCell>
191
    							<g:customCell>
2027 ankur.sing 192
    								<g:TextBox styleName='{style.greenLabel}' ui:field="comments"></g:TextBox>
1992 ankur.sing 193
    							</g:customCell>
194
    						</g:row>
195
    						<g:row>
196
    							<g:customCell>
197
    								<g:Label styleName='{style.blueLabel}'>Catalog Item ID:</g:Label>
198
    							</g:customCell>
199
    							<g:customCell>
200
    								<g:Label styleName='{style.greenLabel}' ui:field="catalogItemId"></g:Label>
201
    							</g:customCell>
202
    						</g:row>
203
    					</g:Grid>
204
    				</g:cell>
205
    				<g:cell>
206
    					<g:Grid>
207
    						<g:row>
208
    							<g:customCell>
209
    								<g:Label styleName='{style.blueLabel}'>MRP:</g:Label>
210
    							</g:customCell>
2066 ankur.sing 211
    							<g:customCell width='6'>
212
    								<g:TextBox styleName='{style.numeric-box}' ui:field="mrp"></g:TextBox>
1992 ankur.sing 213
    							</g:customCell>
214
    						</g:row>
3359 chandransh 215
    						<g:row>
1992 ankur.sing 216
    							<g:customCell>
3359 chandransh 217
    								<g:Label styleName='{style.blueLabel}'>Selling Price:</g:Label>
1992 ankur.sing 218
    							</g:customCell>
3359 chandransh 219
    							<g:customCell size='6'>
220
    								<g:TextBox styleName='{style.numeric-box}' ui:field="sellingPrice"></g:TextBox>
1992 ankur.sing 221
    							</g:customCell>
3359 chandransh 222
    						</g:row>
223
    						<g:row>
1992 ankur.sing 224
    							<g:customCell>
3359 chandransh 225
    								<g:Label styleName='{style.blueLabel}'>Weight(in kg):</g:Label>
1992 ankur.sing 226
    							</g:customCell>
227
    							<g:customCell>
3359 chandransh 228
    								<g:TextBox styleName='{style.numeric-box}' ui:field="weight"></g:TextBox>
1992 ankur.sing 229
    							</g:customCell>
3359 chandransh 230
    						</g:row>
1992 ankur.sing 231
    						<g:row>
232
    							<g:customCell>
3359 chandransh 233
    								<g:Label styleName='{style.blueLabel}'>Expected Delay(Days):</g:Label>
1992 ankur.sing 234
    							</g:customCell>
3359 chandransh 235
    							<g:customCell>
236
    								<g:TextBox styleName='{style.numeric-box}' ui:field="expectedDelay"></g:TextBox>
1992 ankur.sing 237
    							</g:customCell>
238
    						</g:row>
239
    						<g:row>
240
    							<g:customCell>
3359 chandransh 241
    								<g:Label styleName='{style.blueLabel}'>Preferred Warehouse:</g:Label>
1992 ankur.sing 242
    							</g:customCell>
243
    							<g:customCell>
3359 chandransh 244
    								<g:TextBox styleName='{style.numeric-box}' ui:field="preferredWarehouse"></g:TextBox>
1992 ankur.sing 245
    							</g:customCell>
246
    						</g:row>
4413 anupam.sin 247
    						<g:row>
248
    							<g:customCell>
249
    								<g:Label styleName='{style.blueLabel}'>Default Warehouse:</g:Label>
250
    							</g:customCell>
251
    							<g:customCell>
252
    								<g:TextBox styleName='{style.numeric-box}' ui:field="defaultWarehouse"></g:TextBox>
253
    							</g:customCell>
254
    						</g:row>
255
    						<g:row>
256
                                <g:customCell>
257
                                    <g:Label styleName='{style.blueLabel}'>Is Warehouse Preference Sticky:</g:Label>
258
                                </g:customCell>
259
                                <g:customCell>
260
                                    <g:CheckBox ui:field="warehouseStickiness"></g:CheckBox>
261
                                </g:customCell>
262
                            </g:row>
1992 ankur.sing 263
    					</g:Grid>
264
    				</g:cell>
265
    				<g:cell>
266
    					<g:Grid>
267
    						<g:row>
268
    							<g:customCell>
269
    								<g:Label styleName='{style.blueLabel}'>Added On:</g:Label>
270
    							</g:customCell>
271
    							<g:customCell>
272
    								<g:Label styleName='{style.greenLabel}' ui:field="addedOn"></g:Label>
273
    							</g:customCell>
274
    						</g:row>
275
    						<g:row>
276
    							<g:customCell>
277
    								<g:Label styleName='{style.blueLabel}'>Start Date:</g:Label>
278
    							</g:customCell>
279
    							<g:customCell>
2068 ankur.sing 280
    								<dp:DateBox styleName='{style.greenLabel}' ui:field="startDate"></dp:DateBox>
1992 ankur.sing 281
    							</g:customCell>
282
    						</g:row>
283
    						<g:row>
284
    							<g:customCell>
285
    								<g:Label styleName='{style.blueLabel}'>Retiring Date:</g:Label>
286
    							</g:customCell>
287
    							<g:customCell>
288
    								<g:Label styleName='{style.greenLabel}' ui:field="retireDate"></g:Label>
289
    							</g:customCell>
290
    						</g:row>
291
    						<g:row>
292
    							<g:customCell>
293
    								<g:Label styleName='{style.blueLabel}'>Updated On:</g:Label>
294
    							</g:customCell>
295
    							<g:customCell>
296
    								<g:Label styleName='{style.greenLabel}' ui:field="updatedOn"></g:Label>
297
    							</g:customCell>
298
    						</g:row>
299
    					</g:Grid>
300
    				</g:cell>
301
    				<g:cell>
302
    					<g:Grid>
303
    						<g:row>
304
    							<g:customCell>
305
    								<g:Label styleName='{style.blueLabel}'>Best Deals Text:</g:Label>
306
    							</g:customCell>
307
    							<g:customCell>
2027 ankur.sing 308
    								<g:TextBox styleName='{style.greenLabel}' ui:field="bestDealsText"></g:TextBox>
1992 ankur.sing 309
    							</g:customCell>
310
    						</g:row>
311
    						<g:row>
312
    							<g:customCell>
313
    								<g:Label styleName='{style.blueLabel}'>Best Deals Value:</g:Label>
314
    							</g:customCell>
315
    							<g:customCell>
2066 ankur.sing 316
    								<g:TextBox styleName='{style.numeric-box}' ui:field="bestDealsValue"></g:TextBox>
1992 ankur.sing 317
    							</g:customCell>
318
    						</g:row>
2066 ankur.sing 319
                            <g:row>
320
                                <g:customCell>
321
                                    <g:Label styleName='{style.blueLabel}'>Best Selling Rank:</g:Label>
322
                                </g:customCell>
323
                                <g:customCell>
324
                                    <g:TextBox styleName='{style.numeric-box}' ui:field="bestSellingRank"></g:TextBox>
325
                                </g:customCell>
326
                            </g:row>
327
                            <g:row>
328
                                <g:customCell>
329
                                    <g:Label styleName='{style.blueLabel}'>Default for Entity:</g:Label>
330
                                </g:customCell>
331
                                <g:customCell>
332
                                    <g:CheckBox ui:field="defaultForEntity"></g:CheckBox>
333
                                </g:customCell>
334
                            </g:row>
2252 ankur.sing 335
                            <g:row>
336
                                <g:customCell>
337
                                    <g:Label styleName='{style.blueLabel}'>Is Risky:</g:Label>
338
                                </g:customCell>
339
                                <g:customCell>
2359 ankur.sing 340
                                    <g:CheckBox ui:field="risky" enabled='false'></g:CheckBox>
2252 ankur.sing 341
                                </g:customCell>
342
                            </g:row>
1992 ankur.sing 343
    					</g:Grid>
344
    				</g:cell>
345
    			</g:HorizontalPanel>
346
 
2066 ankur.sing 347
                <g:VerticalPanel>
348
                    <g:VerticalPanel styleName='{style.inventoryTable}'>
2105 ankur.sing 349
                        <g:FlexTable ui:field='headerAvailability' styleName='{style.header}' cellSpacing='0' cellPadding='0'/>
2359 ankur.sing 350
                        <g:FlexTable ui:field='availabilityTable' styleName='{style.table}' cellSpacing='0' cellPadding='0' />
1992 ankur.sing 351
                    </g:VerticalPanel>
2119 ankur.sing 352
                    <g:VerticalPanel>
2359 ankur.sing 353
                        <g:Label>Vendor Keys</g:Label>
2427 ankur.sing 354
                        <g:FlexTable ui:field='headerVendorItemKey' styleName='{style.header}' cellSpacing='0' cellPadding='0'/>
355
                        <g:FlexTable ui:field='tableVendorItemKey' styleName='{style.table}' cellSpacing='0' cellPadding='0' />
2359 ankur.sing 356
                        <g:Label></g:Label>
1992 ankur.sing 357
                    </g:VerticalPanel>
2359 ankur.sing 358
                    <g:VerticalPanel>
359
                        <g:Label>Vendor Prices</g:Label>
2427 ankur.sing 360
                        <g:FlexTable ui:field='headerVendorPrices' styleName='{style.header}' cellSpacing='0' cellPadding='0'/>
361
                        <g:FlexTable ui:field='tableVendorPrices' styleName='{style.table}' cellSpacing='0' cellPadding='0' />
2105 ankur.sing 362
                    </g:VerticalPanel>
3558 rajveer 363
                    <g:VerticalPanel>
364
                        <g:Label>Source Prices</g:Label>
365
                        <g:FlexTable ui:field='headerSourcePrices' styleName='{style.header}' cellSpacing='0' cellPadding='0'/>
366
                        <g:FlexTable ui:field='tableSourcePrices' styleName='{style.table}' cellSpacing='0' cellPadding='0' />
367
                    </g:VerticalPanel>
2066 ankur.sing 368
                </g:VerticalPanel>
2126 ankur.sing 369
                <!-- <g:VerticalPanel styleName='{style.buttonContainer}'>
2066 ankur.sing 370
                    <g:Button ui:field="submit">Update Item</g:Button>
2126 ankur.sing 371
                </g:VerticalPanel> -->
1992 ankur.sing 372
            </g:VerticalPanel>
2027 ankur.sing 373
            </g:ScrollPanel>
1961 ankur.sing 374
		</g:center>
375
	</g:DockLayoutPanel>
376
</ui:UiBinder>