Subversion Repositories SmartDukaan

Rev

Rev 21818 | Rev 21824 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 21818 Rev 21823
Line 1... Line 1...
1
function associateValidator(){
1
function associateValidator(){
2
    $('#form').bootstrapValidator({
2
    $('#form').bootstrapValidator({
3
        fields: {
3
        fields: {
4
            RegisteredBusinessName: {
4
        	registeredBusinessName: {
5
                validators: {
5
                validators: {
6
                    
6
                    
7
                        notEmpty: {
7
                        notEmpty: {
8
                        message: 'Please fill the BusinessName'
8
                        message: 'Please fill the BusinessName'
9
                    }
9
                    }
10
                }
10
                }
11
            },
11
            },
12
 
12
 
13
    
13
    
14
         RegisteredAddress1: {
14
            registeredAddress1: {
15
                validators: {
15
                validators: {
16
                   
16
                   
17
                    notEmpty: {
17
                    notEmpty: {
18
                        message: 'Please fill the Address field.'
18
                        message: 'Please fill the Address field.'
19
                    }
19
                    }
Line 54... Line 54...
54
                    },
54
                    },
55
                   
55
                   
56
                    }
56
                    }
57
                },
57
                },
58
 
58
 
59
                Mobile: {
59
                mobile: {
60
                validators: {
60
                validators: {
61
                    stringLength: {
61
                    stringLength: {
62
                       max: 10,
62
                       max: 10,
63
                    },
63
                    },
64
                    notEmpty: {
64
                    notEmpty: {
65
                        message: 'Please fill your Mobile'
65
                        message: 'Please fill your Mobile'
66
                    },
66
                    },
67
             
67
             
68
                    }
68
                    }
69
                },
69
                },
70
               Email1: {
70
                registeredEmail1: {
71
                validators: {
71
                validators: {
72
                    notEmpty: {
72
                    notEmpty: {
73
                        message: 'Please fill your email address'
73
                        message: 'Please fill your email address'
74
                    },
74
                    },
75
                    emailAddress: {
75
                    emailAddress: {
76
                        message: 'Please fill a valid email address'
76
                        message: 'Please fill a valid email address'
77
                    }
77
                    }
78
                }
78
                }
79
            },
79
            },
80
 
80
 
81
            Email2:{
81
            registeredEmail2:{
82
               validators: {
82
               validators: {
83
                  
83
                  
84
                    emailAddress: {
84
                    emailAddress: {
85
                        message: 'Please fill valid email address'
85
                        message: 'Please fill valid email address'
86
                    }
86
                    }
87
                }
87
                }
88
            },
88
            },
89
 
89
 
90
            DINNumber:{
90
            dinNumber:{
91
              validators:{
91
              validators:{
92
                 notEmpty: {
92
                 notEmpty: {
93
                        message: 'Please fill the DINumber'
93
                        message: 'Please fill the DINumber'
94
                    }
94
                    }
95
                }
95
                }
96
            },
96
            },
-
 
97
          
97
 
98
 
98
            bEntitydoc:{
99
		            bEntitydoc:{
99
 
100
		
100
               validators: {
101
		               validators: {
101
                          file: {
102
		                          file: {
102
          //extension: 'pdf,zip,rtf,jpg,png',
103
		          //extension: 'pdf,zip,rtf,jpg,png',
103
         //type: 'application/pdf,application/zip,application/jpg,application.png'
104
		         //type: 'application/pdf,application/zip,application/jpg,application.png'
-
 
105
		             
-
 
106
		    },
-
 
107
		    notEmpty: {
-
 
108
		                    message: 'Document is required.'
-
 
109
		              }
-
 
110
		    }
-
 
111
		  },
-
 
112
		
-
 
113
		
-
 
114
		  angleDoc1:{
-
 
115
		
-
 
116
		               validators: {
-
 
117
		                          file: {
-
 
118
		         // extension: 'pdf,zip,rtf,jpg,png',
-
 
119
		         // type: 'application/pdf,application/zip,application/jpg,application.png'
104
             
120
		             
-
 
121
		    },
-
 
122
		    notEmpty: {
-
 
123
		                    message: 'Document is required.'
-
 
124
		              }
-
 
125
		    }
-
 
126
		  },
-
 
127
		
-
 
128
		  angleDoc2:{
-
 
129
		
-
 
130
		               validators: {
-
 
131
		                          file: {
-
 
132
		         // extension: 'pdf,zip,rtf,jpg,png',
-
 
133
		         // type: 'application/pdf,application/zip,application/jpg,application.png'
-
 
134
		       
105
    },
135
		    },
106
    notEmpty: {
136
		    notEmpty: {
-
 
137
		                    message: 'Document is required.'
-
 
138
		              }
-
 
139
		    }
-
 
140
		  },
-
 
141
			angleDoc3:{
-
 
142
			
-
 
143
			               validators: {
-
 
144
			                          file: {
-
 
145
			         // extension: 'pdf,zip,rtf,jpg,png',
-
 
146
			          //type: 'application/pdf,application/zip,application/jpg,application.png'
-
 
147
			             
-
 
148
			    },
-
 
149
			    notEmpty: {
107
                    message: 'Document is required.'
150
                    message: 'Document is required.'
108
              }
151
              }
109
    }
152
				    }
110
  },
-
 
111
 
-
 
112
 
-
 
113
    angledoc1:{
-
 
114
 
-
 
115
               validators: {
-
 
116
                          file: {
-
 
117
         // extension: 'pdf,zip,rtf,jpg,png',
-
 
118
         // type: 'application/pdf,application/zip,application/jpg,application.png'
-
 
119
             
-
 
120
    },
-
 
121
    notEmpty: {
-
 
122
                    message: 'Document is required.'
-
 
123
              }
-
 
124
    }
-
 
125
  },
-
 
126
 
-
 
127
  angledoc2:{
-
 
128
 
-
 
129
               validators: {
-
 
130
                          file: {
-
 
131
         // extension: 'pdf,zip,rtf,jpg,png',
-
 
132
         // type: 'application/pdf,application/zip,application/jpg,application.png'
-
 
133
       
-
 
134
    },
-
 
135
    notEmpty: {
-
 
136
                    message: 'Document is required.'
-
 
137
              }
-
 
138
    }
-
 
139
  },
-
 
140
angledoc3:{
-
 
141
 
-
 
142
               validators: {
-
 
143
                          file: {
-
 
144
         // extension: 'pdf,zip,rtf,jpg,png',
-
 
145
          //type: 'application/pdf,application/zip,application/jpg,application.png'
-
 
146
             
-
 
147
    },
153
				  },
148
    notEmpty: {
-
 
149
                    message: 'Document is required.'
-
 
150
              }
-
 
151
    }
-
 
152
  },
-
 
153
angledoc4:{
154
				angleDoc4:{
154
 
155
 
155
               validators: {
156
               validators: {
156
                          file: {
157
                          file: {
157
          //extension: 'pdf,zip,rtf,jpg,png',
158
          //extension: 'pdf,zip,rtf,jpg,png',
158
         // type: 'application/pdf,application/zip,application/jpg,application.png'
159
         // type: 'application/pdf,application/zip,application/jpg,application.png'
159
             
160
             
160
    },
161
			    },
161
    notEmpty: {
162
			    notEmpty: {
162
                    message: 'Document is required.'
163
			                    message: 'Document is required.'
163
              }
164
			              }
164
    }
165
			    }
165
  },
166
			  },
166
            
167
			            
167
angledoc5:{
168
			angleDoc5:{
168
  validators: {
169
			  validators: {
169
                          file: {
170
			                          file: {
170
          //extension: 'pdf,zip,rtf,jpg,png',
171
			          //extension: 'pdf,zip,rtf,jpg,png',
171
          //type: 'application/pdf,application/zip,application/jpg,application.png'
172
			          //type: 'application/pdf,application/zip,application/jpg,application.png'
172
             
173
			             
173
    },
174
			    },
174
    notEmpty: {
175
			                notEmpty: {
175
                    message: 'Document is required.'
176
                    message: 'Document is required.'
176
              }
177
              }
177
    }
178
               }
178
  },
179
              },
179
 
180
 
180
            pan:{
181
            pan:{
181
              validators:{
182
              validators:{
182
 
183
 
183
                      stringLength: {
184
                      stringLength: {
Line 188... Line 189...
188
                }
189
                }
189
 
190
 
190
              }
191
              }
191
            },
192
            },
192
 
193
 
193
            Pandoc:{
194
            panDoc:{
194
 
195
 
195
               validators: {
196
               validators: {
196
                          file: {
197
                          file: {
197
          //extension: 'pdf,zip,rtf,jpg,png',
198
          //extension: 'pdf,zip,rtf,jpg,png',
198
          //type: 'application/pdf,application/zip,application/jpg,application.png'
199
          //type: 'application/pdf,application/zip,application/jpg,application.png'
Line 201... Line 202...
201
    notEmpty: {
202
    notEmpty: {
202
                    message: 'Pan card Document is required.'
203
                    message: 'Pan card Document is required.'
203
              }
204
              }
204
    }
205
    }
205
  },
206
  },
206
            ProprietorbusineesName:{
207
  proprietorBusineesName:{
207
                 validators:{
208
                 validators:{
208
 
209
 
209
                notEmpty:{
210
                notEmpty:{
210
                  message:'Please fill the field'
211
                  message:'Please fill the field'
211
                }
212
                }
212
 
213
 
213
              }
214
              }
214
            },
215
            },
215
            ProprietorAddress:{
216
            proprietorAddress:{
216
validators:{
217
             validators:{
217
                notEmpty:{
218
                notEmpty:{
218
                  message:'Please fill the field'
219
                  message:'Please fill the field'
219
                }
220
                }
220
 
221
 
221
              }
222
              }
222
            }, 
223
            }, 
223
 
224
 
224
            Proprietorphone:{
225
            proprietorPhone:{
225
                validators:{
226
                validators:{
226
 
227
 
227
                 stringLength: {
228
                 stringLength: {
228
                       max: 10,
229
                       max: 10,
229
                    },
230
                    },
Line 231... Line 232...
231
                  message:'Please fill the field'
232
                  message:'Please fill the field'
232
                }
233
                }
233
 
234
 
234
              } 
235
              } 
235
          },   
236
          },   
236
        Proprietorpan:{
237
          proprietorPan:{
237
validators:{
238
              validators:{
238
 
239
 
239
             stringLength: {
240
             stringLength: {
240
                       max: 10,
241
                       max: 10,
241
                    },
242
                    },
242
                  notEmpty:{
243
                  notEmpty:{
243
                  message:'Please fill the field'
244
                  message:'Please fill the field'
244
                }
245
                }
245
 
246
 
246
              } 
247
              } 
247
        },
248
        },
248
        Proprietoradhaar:{
249
        proprietorAdhaar:{
249
             validators:{
250
             validators:{
250
 
251
 
251
            notEmpty:{
252
            notEmpty:{
252
                  message:'Please fill the field'
253
                  message:'Please fill the field'
253
                }
254
                }
254
 
255
 
255
              }  
256
              }  
256
          },
257
          },
257
 
258
 
258
          Proprietoremail:{
259
          proprietorEmail:{
259
             validators: {
260
             validators: {
260
                    notEmpty: {
261
                    notEmpty: {
261
                        message: 'Please fill the field'
262
                        message: 'Please fill the field'
262
                    },
263
                    },
263
                    emailAddress: {
264
                    emailAddress: {
264
                        message: 'Please fill a valid email address'
265
                        message: 'Please fill a valid email address'
265
                    }
266
                    }
266
                }
267
                }
267
            },
268
            },
268
 
269
 
269
            Proprietorowner:{
270
            proprietorOwner:{
270
           validators:{
271
           validators:{
271
              stringLength: {
272
              stringLength: {
272
                       max: 10,
273
                       max: 10,
273
                    },
274
                    },
274
            notEmpty:{
275
            notEmpty:{
Line 276... Line 277...
276
                }
277
                }
277
 
278
 
278
              } 
279
              } 
279
            },
280
            },
280
 
281
 
281
           partnerName1:{
282
            partnerName1:{
282
                 validators:{
283
                 validators:{
283
 
284
 
284
                notEmpty:{
285
                notEmpty:{
285
                  message:'Please fill the field'
286
                  message:'Please fill the field'
286
                }
287
                }
287
 
288
 
288
              }
289
              }
289
            },
290
            },
290
            partnerAddress1:{
291
            partnerAddress1:{
291
 validators:{
292
            validators:{
292
                notEmpty:{
293
                notEmpty:{
293
                  message:'Please fill the field'
294
                  message:'Please fill the field'
294
                }
295
                }
295
 
296
 
296
              }
297
              }
297
            }, 
298
            }, 
298
 
299
 
299
            partnerphone1:{
300
            partnerPhone1:{
300
                 validators:{
301
                 validators:{
301
                 stringLength: {
302
                 stringLength: {
302
                       max: 10,
303
                       max: 10,
303
                    },
304
                    },
304
                   notEmpty:{
305
                   notEmpty:{
305
                  message:'Please fill the field'
306
                  message:'Please fill the field'
306
                }
307
                }
307
 
308
 
308
              } 
309
              } 
309
          },   
310
          },   
310
       partnerpan1:{
311
          partnerPan1:{
311
 validators:{
312
            validators:{
312
             stringLength: {
313
             stringLength: {
313
                       max: 10,
314
                       max: 10,
314
                    },
315
                    },
315
                  notEmpty:{
316
                  notEmpty:{
316
                  message:'Please fill the field'
317
                  message:'Please fill the field'
317
                }
318
                }
318
 
319
 
319
              } 
320
              } 
320
        },
321
        },
321
        partneradhaar1:{
322
        partnerAdhaar1:{
322
             validators:{
323
             validators:{
323
 
324
 
324
            notEmpty:{
325
            notEmpty:{
325
                  message:'Please fill the field'
326
                  message:'Please fill the field'
326
                }
327
                }
327
 
328
 
328
              }  
329
              }  
329
          },
330
          },
330
 
331
 
331
         partneremail1:{
332
          partnerEmail1:{
332
             validators: {
333
             validators: {
333
                    notEmpty: {
334
                    notEmpty: {
334
                        message: 'Please fill the field'
335
                        message: 'Please fill the field'
335
                    },
336
                    },
336
                    emailAddress: {
337
                    emailAddress: {
337
                        message: 'Please fill a valid email address'
338
                        message: 'Please fill a valid email address'
338
                    }
339
                    }
339
                }
340
                }
340
            },
341
            },
341
 
342
 
342
           partnerowner1:{
343
            partnerOwner1:{
343
           validators:{
344
           validators:{
344
              stringLength: {
345
              stringLength: {
345
                       max: 10,
346
                       max: 10,
346
                    },
347
                    },
347
            notEmpty:{
348
            notEmpty:{
Line 351... Line 352...
351
              } 
352
              } 
352
            },
353
            },
353
        
354
        
354
 
355
 
355
 
356
 
356
       shareholderName1:{
357
            shareholderName1:{
357
                 validators:{
358
                 validators:{
358
 
359
 
359
                notEmpty:{
360
                notEmpty:{
360
                  message:'Please fill the field'
361
                  message:'Please fill the field'
361
                }
362
                }
362
 
363
 
363
              }
364
              }
364
            },
365
            },
365
            shareholderAddress1:{
366
            shareholderAddress1:{
366
 validators:{
367
            validators:{
367
                notEmpty:{
368
                notEmpty:{
368
                  message:'Please fill the field'
369
                  message:'Please fill the field'
369
                }
370
                }
370
 
371
 
371
              }
372
              }
372
            }, 
373
            }, 
373
 
374
 
374
            shareholderphone1:{
375
            shareholderPhone1:{
375
                 validators:{
376
                 validators:{
376
                 stringLength: {
377
                 stringLength: {
377
                       max: 10,
378
                       max: 10,
378
                    },
379
                    },
379
                   notEmpty:{
380
                   notEmpty:{
380
                  message:'Please fill the field'
381
                  message:'Please fill the field'
381
                }
382
                }
382
 
383
 
383
              } 
384
              } 
384
          },   
385
          },   
385
     shareholderpan1:{
386
     shareholderPan1:{
386
 validators:{
387
             validators:{
387
             stringLength: {
388
             stringLength: {
388
                       max: 10,
389
                       max: 10,
389
                    },
390
                    },
390
                  notEmpty:{
391
                  notEmpty:{
391
                  message:'Please fill the field'
392
                  message:'Please fill the field'
392
                }
393
                }
393
 
394
 
394
              } 
395
              } 
395
        },
396
        },
396
        shareholderadhaar1:{
397
        shareholderAdhaar1:{
397
             validators:{
398
             validators:{
398
 
399
 
399
            notEmpty:{
400
            notEmpty:{
400
                  message:'Please fill the field'
401
                  message:'Please fill the field'
401
                }
402
                }
402
 
403
 
403
              }  
404
              }  
404
          },
405
          },
405
 
406
 
406
        shareholderemail1:{
407
          shareholderEmail1:{
407
             validators: {
408
             validators: {
408
                    notEmpty: {
409
                    notEmpty: {
409
                        message: 'Please fill the field'
410
                        message: 'Please fill the field'
410
                    },
411
                    },
411
                    emailAddress: {
412
                    emailAddress: {
412
                        message: 'Please fill a valid email address'
413
                        message: 'Please fill a valid email address'
413
                    }
414
                    }
414
                }
415
                }
415
            },
416
            },
416
 
417
 
417
         shareholderowner1:{
418
            shareholderOwner1:{
418
           validators:{
419
           validators:{
419
              stringLength: {
420
              stringLength: {
420
                       max: 10,
421
                       max: 10,
421
                    },
422
                    },
422
            notEmpty:{
423
            notEmpty:{
423
                  message:'Please fill the field'
424
                  message:'Please fill the field'
424
                }
425
                }
425
 
426
 
426
              } 
427
              } 
427
            },
428
            },
428
             Managername: {
429
            managerName: {
429
                validators: {
430
                validators: {
430
                    
431
                    
431
                        notEmpty: {
432
                        notEmpty: {
432
                        message: 'Please fill the ManagerName'
433
                        message: 'Please fill the ManagerName'
433
                    }
434
                    }
434
                }
435
                }
435
            },
436
            },
436
            
437
            
437
             ManagerNo:{
438
            managerNo:{
438
                 validators:{
439
                 validators:{
439
                 stringLength: {
440
                 stringLength: {
440
                       max: 10,
441
                       max: 10,
441
                    },
442
                    },
442
                   notEmpty:{
443
                   notEmpty:{
Line 444... Line 445...
444
                }
445
                }
445
 
446
 
446
              } 
447
              } 
447
          },
448
          },
448
 
449
 
449
          Manageremail:{
450
          managerEmail:{
450
            validators: {
451
            validators: {
451
                    notEmpty: {
452
                    notEmpty: {
452
                        message: 'Please fill the Manageremail'
453
                        message: 'Please fill the Manageremail'
453
                    },
454
                    },
454
                    emailAddress: {
455
                    emailAddress: {
455
                        message: 'Please fill a valid email address'
456
                        message: 'Please fill a valid email address'
456
                    }
457
                    }
457
                }
458
                }
458
            },
459
            },
459
        noofemployees:{
460
            noOfEmployees:{
460
                validators:{
461
                validators:{
461
                   notEmpty:{
462
                   notEmpty:{
462
                  message:'Please fill the Number of employees'
463
                  message:'Please fill the Number of employees'
463
                }
464
                }
464
            }},
465
            }},
465
Managementstaff:{
466
            managementStaff:{
466
               validators:{
467
               validators:{
467
                   notEmpty:{
468
                   notEmpty:{
468
                  message:'Please fill the  Number of Managementstaff'
469
                  message:'Please fill the  Number of Managementstaff'
469
                }
470
                }
470
            }
471
            }
471
        },
472
        },
472
 
473
 
473
        ITRdoc:{
474
        itrDoc:{
474
 
475
 
475
               validators: {
476
               validators: {
476
                          file: {
477
                          file: {
477
          extension: 'pdf,zip,rtf,jpg,png',
478
		          extension: 'pdf,zip,rtf,jpg,png',
478
          type: 'application/pdf,application/zip,application/jpg,application.png'
479
		          type: 'application/pdf,application/zip,application/jpg,application.png'
479
             
480
		             
480
    },
481
		    },
481
    notEmpty: {
482
		    notEmpty: {
482
                    message: 'ITR Document is required.'
483
		                    message: 'ITR Document is required.'
483
              }
484
		              }
484
    }
485
		    }
485
  },
486
		  },
486
 
487
 
487
  ownershipdoc:{
488
			  ownershipDoc:{
488
     validators: {
489
			     validators: {
489
                          file: {
490
			                          file: {
490
          //extension: 'pdf,zip,rtf,jpg,png',
491
			          //extension: 'pdf,zip,rtf,jpg,png',
491
          //type: 'application/pdf,application/zip,application/jpg,application.png'
492
			          //type: 'application/pdf,application/zip,application/jpg,application.png'
492
             
493
			             
493
    },
494
			    },
494
    notEmpty: {
495
			    notEmpty: {
495
                    message: 'Ownership Document is required.'
496
			                    message: 'Ownership Document is required.'
496
              }
497
			              }
497
    }
498
			    }
498
},
499
			},
499
 
500
			
500
insurancedoc:{
501
			insuranceDoc:{
501
     validators: {
502
			     validators: {
502
                          file: {
503
			                          file: {
503
        //  extension: 'pdf,zip,rtf,jpg,png',
504
			        //  extension: 'pdf,zip,rtf,jpg,png',
504
         // type: 'application/pdf,application/zip,application/jpg,application.png'
505
			         // type: 'application/pdf,application/zip,application/jpg,application.png'
505
             
506
			             
506
    },
507
			    },
507
    notEmpty: {
508
			    notEmpty: {
508
                    message: 'Insurance Document is required.'
509
			                    message: 'Insurance Document is required.'
509
              }
510
			              }
510
    }
511
			    }
511
},
512
			},
512
loandoc:{
513
			loanDoc:{
513
     validators: {
514
			     validators: {
514
                          file: {
515
			                          file: {
515
         // extension: 'pdf,zip,rtf,jpg,png',
516
			         // extension: 'pdf,zip,rtf,jpg,png',
516
          //type: 'application/pdf,application/zip,application/jpg,application.png'
517
			          //type: 'application/pdf,application/zip,application/jpg,application.png'
517
             
518
			             
518
    },
519
			    },
519
    notEmpty: {
520
			    notEmpty: {
520
                    message: 'Document is required.'
521
			                    message: 'Document is required.'
521
              }
522
			              }
522
    }
523
			    }
523
},
524
			},
524
sanctiondoc:{
525
			sanctionDoc:{
525
     validators: {
526
			     validators: {
526
                          file: {
527
			                          file: {
527
         // extension: 'pdf,zip,rtf,jpg,png',
528
			         // extension: 'pdf,zip,rtf,jpg,png',
528
         // type: 'application/pdf,application/zip,application/jpg,application.png'
529
			         // type: 'application/pdf,application/zip,application/jpg,application.png'
529
             
530
			             
530
    },
531
			    },
531
    notEmpty: {
532
			    notEmpty: {
532
                    message: 'Document is required.'
533
			                    message: 'Document is required.'
533
              }
534
			              }
534
    }
535
			    }
535
},
536
			},
536
 
537
			
537
chequecopy:{
538
			chequeCopy:{
538
     validators: {
539
			     validators: {
539
                          file: {
540
			                          file: {
540
         // extension: 'pdf,zip,rtf,jpg,png',
541
			         // extension: 'pdf,zip,rtf,jpg,png',
541
         // type: 'application/pdf,application/zip,application/jpg,application.png'
542
			         // type: 'application/pdf,application/zip,application/jpg,application.png'
542
             
543
			             
543
    },
544
			    },
544
    notEmpty: {
545
			    notEmpty: {
545
                    message: 'Document is required.'
546
			                    message: 'Document is required.'
546
              }
547
			              }
547
    }
548
			    }
548
},
549
			},
549
 
550
 
550
        portalName1:{
551
        portalName1:{
551
             validators:{
552
             validators:{
552
                   notEmpty:{
553
                   notEmpty:{
553
                  message:'Please fill the PortalName'
554
                  message:'Please fill the PortalName'
Line 566... Line 567...
566
                   notEmpty:{
567
                   notEmpty:{
567
                  message:'Please fill the Area'
568
                  message:'Please fill the Area'
568
                }
569
                }
569
            }
570
            }
570
        },
571
        },
571
        North:{
572
        north:{
572
         validators:{
573
         validators:{
573
                   notEmpty:{
574
                   notEmpty:{
574
                  message:'Please fill the Area'
575
                  message:'Please fill the Area'
575
                }
576
                }
576
            }
577
            }
Line 582... Line 583...
582
                  message:'Please fill the Area'
583
                  message:'Please fill the Area'
583
                }
584
                }
584
            }
585
            }
585
        },
586
        },
586
 
587
 
587
        Front:{
588
        front:{
588
         validators:{
589
         validators:{
589
                   notEmpty:{
590
                   notEmpty:{
590
                  message:'Please fill the Area'
591
                  message:'Please fill the Area'
591
                }
592
                }
592
            }
593
            }
593
        },
594
        },
594
 
595
 
595
        roadsize:{
596
        roadSize:{
596
         validators:{
597
         validators:{
597
                   notEmpty:{
598
                   notEmpty:{
598
                  message:'Please fill the Area'
599
                  message:'Please fill the Area'
599
                }
600
                }
600
            }
601
            }
601
        },
602
        },
602
        storename:{
603
        storeName:{
603
            validators:{
604
            validators:{
604
                   notEmpty:{
605
                   notEmpty:{
605
                  message:'Please fill the storename'
606
                  message:'Please fill the storename'
606
                }
607
                }
607
            }
608
            }
Line 613... Line 614...
613
                  message:'Please fill the storeAddress'
614
                  message:'Please fill the storeAddress'
614
                }
615
                }
615
            }
616
            }
616
        }, 
617
        }, 
617
 
618
 
618
        accountnumber:{
619
        accountNumber:{
619
            validators:{
620
            validators:{
620
                   notEmpty:{
621
                   notEmpty:{
621
                  message:'Please fill the accountnumber'
622
                  message:'Please fill the accountnumber'
622
                }
623
                }
623
            }
624
            }
624
        },  
625
        },  
625
        bankname:{
626
        bankName:{
626
            validators:{
627
            validators:{
627
                   notEmpty:{
628
                   notEmpty:{
628
                  message:'Please fill the bankname'
629
                  message:'Please fill the bankname'
629
                }
630
                }
630
            }
631
            }
631
        },  
632
        },  
632
        IFSCcode:{
633
        ifscCode:{
633
            validators:{
634
            validators:{
634
                   notEmpty:{
635
                   notEmpty:{
635
                  message:'Please fill the IFSCcode'
636
                  message:'Please fill the IFSCcode'
636
                }
637
                }
637
            }
638
            }
638
        }, 
639
        }, 
639
        Branchname:{
640
        branchName:{
640
            validators:{
641
            validators:{
641
                   notEmpty:{
642
                   notEmpty:{
642
                  message:'Please fill the Branchname'
643
                  message:'Please fill the Branchname'
643
                }
644
                }
644
            }
645
            }
Line 676... Line 677...
676
         alert('Please select the type of BusinessEntity');
677
         alert('Please select the type of BusinessEntity');
677
         return false;
678
         return false;
678
     }else{
679
     }else{
679
         
680
         
680
}
681
}
681
     var isChecked = jQuery("input[name=bPmpdetail]:checked").val();
682
     var isChecked = jQuery("input[name=bPmpDetail]:checked").val();
682
      if(!isChecked){
683
      if(!isChecked){
683
         alert('Please select the detail of BusinessEntity');
684
         alert('Please select the detail of BusinessEntity');
684
          return false;
685
          return false;
685
     }else{
686
     }else{
686
         
687
         
687
     }
688
     }
688
 
689
 
689
       var isChecked = jQuery("input[name=businessmodel]:checked").val();
690
       var isChecked = jQuery("input[name=businessModel]:checked").val();
690
      if(!isChecked){
691
      if(!isChecked){
691
         alert('Please select the BusinessModel');
692
         alert('Please select the BusinessModel');
692
          return false;
693
          return false;
693
     }else{
694
     }else{
694
         }
695
         }
695
 
696
 
696
        var isChecked = jQuery("input[name=sellingonline]:checked").val();
697
        var isChecked = jQuery("input[name=sellingOnline]:checked").val();
697
      if(!isChecked){
698
      if(!isChecked){
698
          alert('Please select the Sellingonline');
699
          alert('Please select the Sellingonline');
699
           return false;
700
           return false;
700
     }else{
701
     }else{
701
         }
702
         }
Line 705... Line 706...
705
          alert('Please select the shopArea');
706
          alert('Please select the shopArea');
706
           return false;
707
           return false;
707
     }else{
708
     }else{
708
         }
709
         }
709
 
710
 
710
   var isChecked = jQuery("input[name=shopstatus]:checked").val();
711
   var isChecked = jQuery("input[name=shopStatus]:checked").val();
711
      if(!isChecked){
712
      if(!isChecked){
712
          alert('Please select the shopstatus');
713
          alert('Please select the shopstatus');
713
           return false;
714
           return false;
714
     }else{
715
     }else{
715
         }
716
         }
Line 728... Line 729...
728
           return false;
729
           return false;
729
     }else{
730
     }else{
730
         }
731
         }
731
 
732
 
732
 
733
 
733
         var isChecked = jQuery("input[name=neareststore]:checked").val();
734
         var isChecked = jQuery("input[name=nearestStore]:checked").val();
734
      if(!isChecked){
735
      if(!isChecked){
735
          alert('Please select the NearestStore');
736
          alert('Please select the NearestStore');
736
           return false;
737
           return false;
737
     }else{
738
     }else{
738
         }
739
         }
739
 
740
 
-
 
741
      var isChecked = jQuery("input[name=ownership]:checked").val();
-
 
742
if(!isChecked){
-
 
743
  alert('Please select the ownership of Shop');
-
 
744
   return false;
-
 
745
}else{
-
 
746
 }
-
 
747
 
740
            var isChecked = jQuery("input[name=Insurance]:checked").val();
748
            var isChecked = jQuery("input[name=insurance]:checked").val();
741
      if(!isChecked){
749
      if(!isChecked){
742
          alert('Please select the Insurance field');
750
          alert('Please select the Insurance field');
743
           return false;
751
           return false;
744
     }else{
752
     }else{
745
         }
753
         }