| Line 238... |
Line 238... |
| 238 |
#else
|
238 |
#else
|
| 239 |
<input placeholder="Line2" id="retailerAddressLine2" name="retailerAddressLine2" type="text" value="" class="form-control input-sm">
|
239 |
<input placeholder="Line2" id="retailerAddressLine2" name="retailerAddressLine2" type="text" value="" class="form-control input-sm">
|
| 240 |
#end
|
240 |
#end
|
| 241 |
</div>
|
241 |
</div>
|
| 242 |
</div>
|
242 |
</div>
|
| 243 |
|
- |
|
| 244 |
|
243 |
|
| 245 |
<div class="row">
|
244 |
<div class="row">
|
| 246 |
<div class="col-lg-4 form-group">
|
245 |
<div class="col-lg-4 form-group">
|
| 247 |
<p class="bold-details">CITY</p>
|
246 |
<p class="bold-details">PIN CODE</p>
|
| 248 |
</div>
|
247 |
</div>
|
| 249 |
<div class="col-lg-6 form-group">
|
248 |
<div class="col-lg-6 form-group">
|
| 250 |
#if($retailerAddress && $retailerAddress.getCity())
|
249 |
#if($retailerAddress && $retailerAddress.getPinCode())
|
| 251 |
<input placeholder="City" id="retailerAddressCity" name="retailerAddressCity" type="text" value="$retailerAddress.getCity()" class="form-control input-sm">
|
250 |
<input placeholder="Pin Code" id="retailerAddressPinCode" name="retailerAddressPinCode" type="text" value="$retailerAddress.getPinCode()" class="form-control input-sm">
|
| 252 |
#else
|
251 |
#else
|
| 253 |
<input placeholder="City" id="retailerAddressCity" name="retailerAddressCity" type="text" value="" class="form-control input-sm">
|
252 |
<input placeholder="Pin Code" id="retailerAddressPinCode" name="retailerAddressPinCode" type="text" value="" class="form-control input-sm">
|
| 254 |
#end
|
253 |
#end
|
| 255 |
</div>
|
254 |
</div>
|
| 256 |
</div>
|
255 |
</div>
|
| 257 |
|
256 |
|
| 258 |
<div class="row">
|
257 |
<div class="row">
|
| 259 |
<div class="col-lg-4 form-group">
|
258 |
<div class="col-lg-4 form-group">
|
| 260 |
<p class="bold-details">PIN CODE</p>
|
259 |
<p class="bold-details">STATE</p>
|
| 261 |
</div>
|
260 |
</div>
|
| 262 |
<div class="col-lg-6 form-group">
|
261 |
<div class="col-lg-6 form-group">
|
| 263 |
#if($retailerAddress && $retailerAddress.getPinCode())
|
262 |
#if($fofoStore)
|
| 264 |
<input placeholder="Pin Code" id="retailerAddressPinCode" name="retailerAddressPinCode" type="text" value="$retailerAddress.getPinCode()" class="form-control input-sm">
|
263 |
<input placeholder="retailerAddressState" id="retailerAddressState" name="retailerAddressState" type="text" value="$retailerAddress.getState()" class="form-control input-sm" style="font-weight:bold;" disabled>
|
| 265 |
#else
|
264 |
#else
|
| 266 |
<input placeholder="Pin Code" id="retailerAddressPinCode" name="retailerAddressPinCode" type="text" value="" class="form-control input-sm">
|
265 |
<input placeholder="retailerAddressState" id="retailerAddressState" name="retailerAddressState" type="text" value="" class="form-control input-sm" disabled>
|
| 267 |
#end
|
266 |
#end
|
| 268 |
</div>
|
267 |
</div>
|
| 269 |
</div>
|
268 |
</div>
|
| 270 |
|
269 |
|
| 271 |
<div class="row">
|
270 |
<div class="row">
|
| 272 |
<div class="col-lg-4 form-group">
|
271 |
<div class="col-lg-4 form-group">
|
| 273 |
<p class="bold-details">STATE</p>
|
272 |
<p class="bold-details">CITY</p>
|
| 274 |
</div>
|
273 |
</div>
|
| 275 |
<div class="col-lg-6 form-group">
|
274 |
<div class="col-lg-6 form-group">
|
| 276 |
#if($fofoStore)
|
- |
|
| 277 |
<select class="form-control input-sm" id = "retailerAddressState" name = "retailerAddressState" placeholder="State" disabled>
|
275 |
<select class="form-control input-sm" id="retailerAddressCity" name="retailerAddressCity" placeholder="City">
|
| 278 |
#foreach($stateName in $stateNames)
|
276 |
<option value="" disabled selected>City</option>
|
| 279 |
#if($retailerAddress.getState() == $stateName)
|
277 |
#if($retailerAddress.getCity())
|
| 280 |
<option value="$stateName" selected >$stateName</option>
|
278 |
<option value="$retailerAddress.getCity()" selected>$retailerAddress.getCity()</option>
|
| 281 |
#end
|
279 |
#end
|
| 282 |
#end
|
280 |
|
| 283 |
</select>
|
281 |
</select>
|
| 284 |
#else
|
- |
|
| 285 |
<select class="form-control input-sm" id = "retailerAddressState" name = "retailerAddressState" placeholder="State">
|
- |
|
| 286 |
<option value="" disabled selected>State</option>
|
- |
|
| 287 |
#foreach($stateName in $stateNames)
|
- |
|
| 288 |
<option value="$stateName">$stateName</option>
|
- |
|
| 289 |
#end
|
- |
|
| 290 |
</select>
|
- |
|
| 291 |
#end
|
- |
|
| 292 |
</div>
|
282 |
</div>
|
| 293 |
</div>
|
283 |
</div>
|
| 294 |
<div class="row">
|
284 |
<div class="row">
|
| 295 |
<div class="col-lg-4 form-group">
|
285 |
<div class="col-lg-4 form-group">
|
| 296 |
<p class="bold-details">FOFO STORE CODE</p>
|
286 |
<p class="bold-details">FOFO STORE CODE</p>
|