Blame view

script.js 28.2 KB
53b83aa9e   Palak Handa   first commit
1
  	// create the module and name it scotchApp
f263889f0   Palak Handa   analytics work
2
  	var scotchApp = angular.module('scotchApp', ['ngRoute','angular-google-analytics']);
53b83aa9e   Palak Handa   first commit
3
4
5
  
  	// configure our routes
  	scotchApp.config(function($routeProvider) {
6ae8d3cdd   Palak Handa   add new module
6
7
8
9
10
11
12
  	    $routeProvider
  
  	        // route for the home page
  	        .when('/', {
  	            templateUrl: 'pages/home.html',
  	            controller: 'mainController'
  	        })
2d6a9fbea   Palak Handa   complete bugs
13
  	        // route for the paymentVerify page
4de569579   Palak Handa   design update
14
  	        .when('/pendingPayment/:id', {
6ae8d3cdd   Palak Handa   add new module
15
16
17
18
19
20
21
22
23
  	            templateUrl: 'pages/verify.html',
  	            controller: 'verifyController'
  	        })
  
  	        // route for the ambassador page
  	        .when('/ambassador', {
  	            templateUrl: 'pages/ambassador.html',
  	            controller: 'ambassadorController'
  	        })
5348de778   Palak Handa   design updated
24
25
26
27
28
29
  
  	        // route for the confirmation page
  	        .when('/confirmation', {
  	            templateUrl: 'pages/confirmation.html',
  	            controller: 'mainController'
  	        })
6ae8d3cdd   Palak Handa   add new module
30
  	});
53b83aa9e   Palak Handa   first commit
31

f263889f0   Palak Handa   analytics work
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
  	scotchApp.config(['AnalyticsProvider', function (AnalyticsProvider) {
  	   	// Add configuration code as desired
  	   	// AnalyticsProvider.setAccount('UA-106416759-1');  //UU-XXXXXXX-X should be your tracking code
  
  	   	AnalyticsProvider.setAccount({
  		  tracker: 'UA-106416759-1',
  		  name: "startupjalsa-app",
  		  trackEvent: true,
  		  trackEcommerce: true
  		});
  
  	   	// Track all routes (default is true).
  	  	AnalyticsProvider.trackPages(true);
  
  	  	// Track all URL query params (default is false).
  	  	AnalyticsProvider.trackUrlParams(true);
  
  	}]).run(['Analytics', function(Analytics) { }]);
  
  	//scotchApp.constant("BASE_URL", "http://139.59.68.74:4001/api")
  	scotchApp.constant("BASE_URL", "http://0.0.0.0:4001/api")
6ae8d3cdd   Palak Handa   add new module
53

2d6a9fbea   Palak Handa   complete bugs
54
  	// create the controller and inject Angular's $scope
f263889f0   Palak Handa   analytics work
55
  	scotchApp.controller('mainController', function($scope, $http, $location, $route, $rootScope, BASE_URL, Analytics) {
6ae8d3cdd   Palak Handa   add new module
56
57
58
59
60
61
62
63
64
65
66
  	    $scope.data = {
  	        show: true,
  	        hide: false
  	    };
  
  	    $scope.infoForm = false; /*THIS CODE FOR HIDE STEP 2 FORM*/
  
  	    $scope.max = 100;
  	    $scope.current = 0;
  	    $scope.payingAmnt = 0;
  	    if ($scope.data.stage == 'select') {
6ae8d3cdd   Palak Handa   add new module
67

53b83aa9e   Palak Handa   first commit
68
  	    }
439352ca6   Palak Handa   base url changes
69
  	    //$scope.author = 'Swarn Singh';
6ae8d3cdd   Palak Handa   add new module
70
71
  	    $scope.data = {};
  	    $scope.data.stage = 'Idea';
ea3c31126   Palak Handa   complete
72
  	    $scope.discountAmount = 0;
6ae8d3cdd   Palak Handa   add new module
73
74
  	    $scope.check = false;
  	    $scope.numberCheck = false;
6ae8d3cdd   Palak Handa   add new module
75
  	    $scope.paymentResult = {};
6ae8d3cdd   Palak Handa   add new module
76
77
78
79
80
  	    var data = {
  	        "amount": $scope.payingAmnt,
  	        "currency": "INR",
  	        "status": "pending"
  	    }
53b83aa9e   Palak Handa   first commit
81

5259a7d0e   Digvijay Singh   video links added
82
83
84
85
86
87
88
89
  	    /*open videos in modal*/
  	    $scope.openyoutube16 = function(){
  			$('#videoModel').modal('show');
  	    }
  
  	     $scope.openyoutube17 = function(){
  			$('#videoModels').modal('show');
  	    }
756be1240   Digvijay Singh   video modal
90
  	       $scope.closeModal = function(){
5259a7d0e   Digvijay Singh   video links added
91
92
93
94
  	    	var url = $('#youtubePlayer').attr('src');
  			$('#youtubePlayer').attr('src', '');
  			$('#youtubePlayer').attr('src', url);
  	    }
756be1240   Digvijay Singh   video modal
95
96
97
98
99
100
101
  
  
  	    $scope.closed = function(){
  	    	var url = $('#youtubePlayersss').attr('src');
  			$('#youtubePlayersss').attr('src', '');
  			$('#youtubePlayersss').attr('src', url);
  	    }
5259a7d0e   Digvijay Singh   video links added
102
  	    /*open videos ends here*/
5348de778   Palak Handa   design updated
103
104
105
106
  	    $scope.removeError = function() {
  	        $('#invalidEmail').css('display', 'none');
  	        $('#alreadyExist').css('display', 'none');
  	    };
6ae8d3cdd   Palak Handa   add new module
107
  	    $scope.emailcheck = function(val) {
6ae8d3cdd   Palak Handa   add new module
108
109
110
111
112
113
  	        if (val == undefined) {
  	            $('#invalidEmail').css('display', 'block');
  	        } else {
  	            $http({
  	                method: 'GET',
  	                url: BASE_URL + '/applicants?filter={"where": {"email": {"like":"%25' + $scope.data.email + '%25"}}}',
6ae8d3cdd   Palak Handa   add new module
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
  	                headers: {}
  	            }).then(function mySuccess(searchResult) {
  	                console.log("searchResult1===>", searchResult)
  	                if (searchResult.data.length == 0) {
  	                    $scope.check = false;
  	                } else {
  	                    $scope.check = true;
  	                    $('#alreadyExist').css('display', 'block');
  	                }
  	            }, function myError(error) {});
  	        }
  	    };
  
  	    $scope.removeNoError = function() {
  	        $('#noExist').css('display', 'none');
  	    };
  
  	    $scope.numbercheck = function(number) {
  	        $http({
  	            method: 'GET',
  	            url: BASE_URL + '/applicants?filter={"where": {"phone": {"like":"%25' + number + '%25"}}}',
  	            data: $scope.data,
  	            headers: {}
  	        }).then(function mySuccess(searchResult) {
  	            console.log("searchResult===>", searchResult)
  	            if (searchResult.data.length == 0) {
  	                $scope.numberCheck = false;
ea3c31126   Palak Handa   complete
141

6ae8d3cdd   Palak Handa   add new module
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
  	            } else {
  	                $scope.numberCheck = true;
  	                $('#noExist').css('display', 'block');
  	            }
  	        }, function myError(error) {});
  	    };
  
  	    $rootScope.tokenCall = function(val) {
  	        console.log('val-------->', val);
  	        if (val == undefined) {
  	            $('#invalidEmail').css('display', 'block');
  	        } else {
  	        	val = val.toUpperCase();
  	        	$http.get(BASE_URL + '/ambassadors?filter={"where": {"referalToken": {"like":"%25' + val + '%25"}}}')
  				    .then(function(searchResult) {
  				        if (searchResult.data.length == 0) {
  	                    	$scope.tokencheck = false;
ea3c31126   Palak Handa   complete
159
  	                    	 $scope.discountAmount = 0;
6ae8d3cdd   Palak Handa   add new module
160
  	                	} else {
6ae8d3cdd   Palak Handa   add new module
161
  	                    	$scope.tokencheck = true;
6ae8d3cdd   Palak Handa   add new module
162
163
164
165
  	                	}
  				    },function(err){
  				    	console.log(err)
  				});
53b83aa9e   Palak Handa   first commit
166
  	           
6ae8d3cdd   Palak Handa   add new module
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
  	        }
  	    };
  
  	    /*THIS CODE FOR ENABLED SUBMIT BUTTON AFTER UPLOAD IMAGE*/
  	    $(document).ready(
  	        function() {
  	            $('input:submit').attr('disabled', true);
  	            $('input:file').change(
  	                function() {
  	                    if ($("#picture").val()) {
  	                        $('input:submit').removeAttr('disabled');
  	                    } else {
  	                        $('input:submit').attr('disabled', true);
  	                    }
  	                });
53b83aa9e   Palak Handa   first commit
182
  	        });
6ae8d3cdd   Palak Handa   add new module
183
184
185
  
  	    /*****THIS IS FOR STEP ONE FORM ******/
  	    $scope.next = function() {
f263889f0   Palak Handa   analytics work
186
187
188
189
190
  	   //  	var pageTracker = _gat._getTracker("UA-12345-1");
  	   //  		console.log(pageTracker)
  				// pageTracker._setDomainName("none");
  				// pageTracker._trackPageview();
  			Analytics.trackEvent('video', 'play', 'django.mp4');
6ae8d3cdd   Palak Handa   add new module
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
  	        $scope.data.status = null
  	        if ($scope.data.stage == undefined || $scope.data.name == undefined || $scope.data.email == undefined || $scope.data.number == undefined || $scope.data.city == undefined) {
  	            var x = document.getElementById("snackbar")
  	            x.className = "show";
  	            setTimeout(function() {
  	                x.className = x.className.replace("show", "");
  	            }, 3000);
  	        } else if ($scope.data.stage != undefined && $scope.data.name != undefined && $scope.data.email != undefined && $scope.data.number != undefined && $scope.data.city != undefined) {
  	            $scope.infoForm = true;
  	            console.log("sdasdasdsa");
  	            $scope.data.stage = $scope.data.stage;
  	            $scope.detail = {};
  	            $scope.data.phone = "+91" + $scope.data.number;
  	            $http({
  	                method: 'POST',
  	                url: BASE_URL + '/information',
  	                data: $scope.data,
  	                headers: {}
  	            }).then(function mySuccess(result) {
  	                console.log("result", result)
  	                $scope.detail = result;
  	                data.applicantId = result.data.id;
  	                $scope.userId = result.data.id;
  
  	            }, function myError(error) {});
f263889f0   Palak Handa   analytics work
216
217
218
219
220
  
  	   //          ga(function() {
    		// 		// Logs the "myTracker" tracker object to the console.
    		// 		console.log(ga.getByName('myTracker'));
  				// });
6ae8d3cdd   Palak Handa   add new module
221
222
223
  	        }
  
  	    }
ea3c31126   Palak Handa   complete
224
  	    $scope.calculateAmount =  function(){
9842ccd27   Palak Handa   changes api call
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
  
  	        if ($scope.data.stage == undefined || $scope.data.name == undefined || $scope.data.email == undefined || $scope.data.number == undefined || $scope.data.city == undefined) {
  	            var x = document.getElementById("snackbar")
  	            x.className = "show";
  	            setTimeout(function() {
  	                x.className = x.className.replace("show", "");
  	            }, 3000);
  	        } else if ($scope.data.stage != undefined && $scope.data.name != undefined && $scope.data.email != undefined && $scope.data.number != undefined && $scope.data.city != undefined) {
  	            $scope.infoForm = true;
  	            console.log("sdasdasdsa");
  	            $scope.data.stage = $scope.data.stage;
  	            $scope.detail = {};
  	            $scope.data.phone = "+91" + $scope.data.number;
  	            $http({
  	                method: 'POST',
  	                url: BASE_URL + '/applicants',
  	                data: $scope.data,
  	                headers: {}
  	            }).then(function mySuccess(result) {
  	                console.log("result", result)
  	                $scope.detail = result;
  	                data.applicantId = result.data.id;
  	                $scope.userId = result.data.id;
  
  	            }, function myError(error) {});
  	        }
ea3c31126   Palak Handa   complete
251
  	    	if ($scope.data.stage == "Idea") {
6ae8d3cdd   Palak Handa   add new module
252
  	            console.log("$scope.data", $scope.data)
ea3c31126   Palak Handa   complete
253
  	            $scope.ticketAmnt = 500;
6ae8d3cdd   Palak Handa   add new module
254
255
256
  	        }
  
  	        if ($scope.data.stage == "Product") {
ea3c31126   Palak Handa   complete
257
  	            $scope.ticketAmnt = 1000;
6ae8d3cdd   Palak Handa   add new module
258
259
260
  	        }
  
  	        if ($scope.data.stage == "Growth") {
ea3c31126   Palak Handa   complete
261
  	            $scope.ticketAmnt = 2000;
6ae8d3cdd   Palak Handa   add new module
262
263
264
  	        }
  
  	        if($scope.tokencheck == true){
ea3c31126   Palak Handa   complete
265
266
  		        var amount = $scope.ticketAmnt
  			    $scope.discountAmount = (amount * 10)/100
6ae8d3cdd   Palak Handa   add new module
267
268
  			    console.log("finalAmount====>",$scope.payingAmnt)
  	        }
ea3c31126   Palak Handa   complete
269
270
271
272
273
274
275
  	        var taxAmount = $scope.ticketAmnt - $scope.discountAmount
              $scope.taxTotal = (taxAmount * 18)/100
              $scope.payingAmnt = taxAmount +  $scope.taxTotal
              console.log("taxincludedamount----", $scope.payingAmnt)
  	    }
  
  	    /*****THIS IS FOR STEP THREE FORM ******/
2d6a9fbea   Palak Handa   complete bugs
276
  	    $scope.create = function() {	        
9842ccd27   Palak Handa   changes api call
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
  	        // if ($scope.data.name == undefined || $scope.data.email == undefined || $scope.data.number == undefined) {
  	        //     var x = document.getElementById("snackbar")
  	        //     x.className = "show";
  	        //     setTimeout(function() {
  	        //         x.className = x.className.replace("show", "");
  	        //     }, 3000);
  	        // } else if ($scope.data.name != undefined && $scope.data.email != undefined && $scope.data.number != undefined) {
  	        //     $scope.infoForm = true;
  	        //     console.log("sdasdasdsa");
  	        //     $scope.data.stage = $scope.data.stage;
  	        //     $scope.detail = {};
  	        //     $scope.data.phone = "+91" + $scope.data.number;
  	        //     $http({
  	        //         method: 'POST',
  	        //         url: BASE_URL + '/applicants',
  	        //         data: $scope.data,
  	        //         headers: {}
  	        //     }).then(function mySuccess(result) {
  
  	        //         console.log("=====result=====", result)
  	        //         $scope.detail = result;
  	        //         data.applicantId = result.data.id;
  	        //         $scope.userId = result.data.id;
  	        //         console.log("=====data=====", data)
ea3c31126   Palak Handa   complete
301
  	                data.amount = $scope.payingAmnt;
6ae8d3cdd   Palak Handa   add new module
302
303
304
305
306
307
308
  	                if ($scope.detail != null) {
  	                    $http({
  	                        method: 'POST',
  	                        url: BASE_URL + '/payments',
  	                        data: data,
  	                        headers: {}
  	                    }).then(function mySuccess(paymentResult) {
8e25d825b   Palak Handa   changes the rajor...
309
  	                    	console.log("paymentResult",paymentResult)
6ae8d3cdd   Palak Handa   add new module
310
311
312
313
  	                        $scope.paymentResult = paymentResult;
  	                    }, function myError(error) {});
  	                }
  	                var i = 0;
ea3c31126   Palak Handa   complete
314
  	                 $scope.payingAmnt =  $scope.payingAmnt * 100;
6ae8d3cdd   Palak Handa   add new module
315
  	                var options = {
f2142e490   Palak Handa   rajorpay key updated
316
  	                    "key": "rzp_live_mhSE1uOBlXvFyJ",
6ae8d3cdd   Palak Handa   add new module
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
  	                    "amount": $scope.payingAmnt,
  
  	                    "name": "Startup Jalsa",
  	                    "description": "amount",
  	                    "currency": "INR",
  	                    "status": "done",
  
  	                    "theme": {
  	                        "color": "#2196f3 ",
  	                        "image_padding": "NO"
  	                    },
  	                    "modal": {
  	                        "ondismiss": function() {}
  	                    },
  	                    "handler": function(response) {
  	                        createPayment(response);
  	                    }
  	                };
  	                var rzp1 = new Razorpay(options);
  	                rzp1.open();
  	                $scope.paymentResponse = {};
  
  	                function createPayment(response) {
8e25d825b   Palak Handa   changes the rajor...
340
  	                	console.log("response====from===razorpay",response)
6ae8d3cdd   Palak Handa   add new module
341
342
343
344
345
  	                    $route.reload();
  	                    $scope.paymentResponse.razorPaymentId = response.razorpay_payment_id;
  	                    $scope.paymentResponse.razorOrderId = $scope.paymentResult.data.razorOrderId;
  	                    $scope.paymentResponse.amount = data.amount;
  	                    $scope.paymentResponse.currency = "INR";
8e25d825b   Palak Handa   changes the rajor...
346
  	                    $scope.paymentResponse.status = $scope.paymentResult.data.status;
6ae8d3cdd   Palak Handa   add new module
347
348
349
350
351
352
353
  	                    $http({
  	                        method: 'PUT',
  	                        url: BASE_URL + '/payments/' + $scope.paymentResult.data.id,
  	                        data: $scope.paymentResponse,
  	                        headers: {}
  	                    }).then(function mySuccess(searchResult) {
  	                        console.log("searchResult", searchResult)
5348de778   Palak Handa   design updated
354
355
  	                        $location.path("/confirmation")
  	                        //$scope.showToastr()
6ae8d3cdd   Palak Handa   add new module
356
357
358
359
  	                        //toaster.success("Registration done successfully");
  
  	                    }, function myError(error) {});
  	                }
9842ccd27   Palak Handa   changes api call
360
361
  	            //}, function myError(error) {});
  	        //}
6ae8d3cdd   Palak Handa   add new module
362
363
  
  	    }
5348de778   Palak Handa   design updated
364
365
366
367
368
369
370
371
  	    // $scope.showToastr = function() {
  	    //     console.log("called toast")
  	    //     var x = document.getElementById("snacsskbar")
  	    //     x.className = "show";
  	    //     setTimeout(function() {
  	    //         x.className = x.className.replace("show", "");
  	    //     }, 3000);
  	    // }
6ae8d3cdd   Palak Handa   add new module
372

6ae8d3cdd   Palak Handa   add new module
373
  	    /*kk***This code for change data when click to chooses stages***/
5348de778   Palak Handa   design updated
374
  	    $scope.proto = true;
6ae8d3cdd   Palak Handa   add new module
375
376
377
378
379
  	    $scope.businessmodel = true;
  	    $scope.Idea = true;
  	    $scope.current = true;
  
  	    $scope.stage = function(stage) {
2d6a9fbea   Palak Handa   complete bugs
380
381
  	    $scope.stagekeyPress();
  	    console.log("stage--2",stage)
6ae8d3cdd   Palak Handa   add new module
382
383
  	        if (stage == 'Idea') {
  	            $scope.current = 10;
5348de778   Palak Handa   design updated
384
  	            $scope.proto = true;
6ae8d3cdd   Palak Handa   add new module
385
386
387
388
389
390
391
  	            $scope.prototyp = false;
  	            $scope.market = false;
  	            $scope.risks = false;
  	            $scope.team = false;
  	            $scope.pitch = false;
  	            $scope.financials = false;
  	            $scope.businessmodel = true;
2d6a9fbea   Palak Handa   complete bugs
392
  	            $scope.data.stage = stage;
6ae8d3cdd   Palak Handa   add new module
393
394
395
396
397
398
  	            // for right content
  	            $scope.Idea = true;
  	            $scope.Product = false;
  	            $scope.Growth = false;
  	        } else if (stage == 'Product') {
  	            $scope.current = 10;
5348de778   Palak Handa   design updated
399
  	            $scope.proto = true;
6ae8d3cdd   Palak Handa   add new module
400
401
402
403
404
405
406
  	            $scope.prototyp = true;
  	            $scope.market = true;
  	            $scope.risks = true;
  	            $scope.team = true;
  	            $scope.pitch = true;
  	            $scope.financials = true;
  	            $scope.businessmodel = false;
2d6a9fbea   Palak Handa   complete bugs
407
  	            $scope.data.stage = stage;
6ae8d3cdd   Palak Handa   add new module
408
409
410
411
412
413
  	            // for right content
  	            $scope.Idea = false;
  	            $scope.Product = true;
  	            $scope.Growth = false;
  	        } else if (stage == 'Growth') {
  	            $scope.current = 10;
5348de778   Palak Handa   design updated
414
  	            $scope.proto = false;
6ae8d3cdd   Palak Handa   add new module
415
416
417
418
419
420
421
422
423
424
425
  	            $scope.prototyp = true;
  	            $scope.market = true;
  	            $scope.risks = true;
  	            $scope.team = true;
  	            $scope.pitch = true;
  	            $scope.financials = true;
  	            $scope.businessmodel = false;
  	            // for right content
  	            $scope.Idea = false;
  	            $scope.Product = false;
  	            $scope.Growth = true;
2d6a9fbea   Palak Handa   complete bugs
426
  	            $scope.data.stage = stage;
6ae8d3cdd   Palak Handa   add new module
427
428
  	        }
  	    }
6ae8d3cdd   Palak Handa   add new module
429
430
431
432
  	    $scope.enterbusiness = function(business) {
  	        console.log("business", business);
  	        if (name == undefined) {
  	            $scope.current = false;
2d6a9fbea   Palak Handa   complete bugs
433

6ae8d3cdd   Palak Handa   add new module
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
  	        } else if (name != undefined) {
  	            $scope.current = true;
  	        }
  	    }
  	    /*******FOR FILL THE DATA AND SHOWS ICON GREEN*/
  	    $scope.stagekeyPress = function() {
  	        $('.icon-circle-a').css('background-color', 'rgb(66, 181, 73)');
  	    }
  	    $scope.sectorkeyPress = function() {
  	        $('.icon-circle-b').css('background-color', 'rgb(66, 181, 73)');
  	    }
  
  	    $scope.studentkeyPress = function() {
  	        $('.icon-circle-ab').css('background-color', 'rgb(66, 181, 73)');
  	    }
  
  	    $scope.namekeyPress = function(name) {
  	        console.log("name", name);
  	        if (name == undefined) {
  	            $('.icon-circle-c').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
  	            $('.icon-circle-c').css('background-color', 'rgb(66, 181, 73)');
  	        }
  	    }
  	    $scope.emailkeyPress = function(email) {
  	        console.log("email", email);
  	        if (email == undefined) {
  	            $('.icon-circle-d').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
  	            $('.icon-circle-d').css('background-color', 'rgb(66, 181, 73)');
  	        }
  	    }
  
  
  	    $scope.phonekeyPress = function(number) {
  	        console.log("number", number);
  	        if (number == undefined) {
  	            $('.icon-circle-e').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
  	            $('.icon-circle-e').css('background-color', 'rgb(66, 181, 73)');
  	        }
  	    }
  
  	    $scope.citykeyPress = function(city) {
  	        console.log("city", city);
  	        if (city == undefined) {
  	            $('.icon-circle-f').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
  	            $('.icon-circle-f').css('background-color', 'rgb(66, 181, 73)');
  	        }
  	    }
  
  	    $scope.questionkeyPress = function(q) {
  	        if (q == undefined) {
  	            $('.icon-circle-x').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
  	            $('.icon-circle-x').css('background-color', 'rgb(66, 181, 73)');
  	        }
  	    }
  
  	    $scope.technologykeyPress = function(technology) {
  	        if (technology == undefined) {
  	            $('.icon-circle-h').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
  	            $('.icon-circle-h').css('background-color', 'rgb(66, 181, 73)');
  	        }
  	    }
  	    $scope.problemkeyPress = function(problem) {
  	        if (problem == undefined) {
  	            $('.icon-circle-i').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
  	            $('.icon-circle-i').css('background-color', 'rgb(66, 181, 73)');
  	        }
  	    }
  	    $scope.solutionkeyPress = function(solution) {
  	        if (solution == undefined) {
  	            $('.icon-circle-j').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
  	            $('.icon-circle-j').css('background-color', 'rgb(66, 181, 73)');
  	        }
  	    }
  	    $scope.businesskeyPress = function(business) {
  	        $('.icon-circle-p').css('background-color', 'rgb(66, 181, 73)');
  	    }
  
  	    $scope.prototypekeyPress = function(prototype) {
  	        if (prototype == undefined) {
  	            $('.icon-circle-k').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
  	            $('.icon-circle-k').css('background-color', 'rgb(66, 181, 73)');
  	        }
  	    }
  
  	    $scope.marketkeyPress = function(market) {
  	        if (market == undefined) {
  	            $('.icon-circle-l').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
  	            $('.icon-circle-l').css('background-color', 'rgb(66, 181, 73)');
  	        }
  	    }
  
  	    $scope.riskkeyPress = function(risk) {
  	        if (risk == undefined) {
  	            $('.icon-circle-m').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
  	            $('.icon-circle-m').css('background-color', 'rgb(66, 181, 73)');
  	        }
  	    }
  
  	    $scope.teamkeyPress = function(team) {
  	        if (team == undefined) {
  	            $('.icon-circle-n').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
  	            $('.icon-circle-n').css('background-color', 'rgb(66, 181, 73)');
  	        }
  	    }
  
  	    $scope.pitchkeyPress = function(pitch) {
  	        if (pitch == undefined) {
  	            $('.icon-circle-z').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
  	            $('.icon-circle-z').css('background-color', 'rgb(66, 181, 73)');
  	        }
  	    }
  
  	    $scope.financialskeyPress = function(financial) {
  	        console.log("financial", financial);
  	        if (financial == undefined) {
  	            $('.icon-circle-q').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
  	            $('.icon-circle-q').css('background-color', 'rgb(66, 181, 73)');
  	        }
  	    }
2d6a9fbea   Palak Handa   complete bugs
567
568
569
570
571
572
573
  	    $scope.changeReferalIconColor = function(referalToken){
  	    	if (referalToken == undefined || referalToken == '') {
  	    		$('.referel-icon').css('background-color', 'rgb(102, 102, 102)');
  	    	}else {
  	            $('.referel-icon').css('background-color', 'rgb(66, 181, 73)');
  	        }
  	    }
6ae8d3cdd   Palak Handa   add new module
574

53b83aa9e   Palak Handa   first commit
575
  	});
2d6a9fbea   Palak Handa   complete bugs
576
  	scotchApp.controller('verifyController', function($scope, $http, $location, $route,BASE_URL) {
d8feb0ddb   Palak Handa   design updated
577
  	    $scope.pendingPaymentId = $route.current.params.id
6ae8d3cdd   Palak Handa   add new module
578
579
580
581
582
583
  	    $http({
  	        method: "GET",
  	        url: BASE_URL + '/applicants/' + $scope.pendingPaymentId,
  	    }).then(function mySuccess(response) {
  	        $scope.data = response.data;
  	        console.log("response-1", response);
d8feb0ddb   Palak Handa   design updated
584
585
  	        $scope.pendingPaymentId = $route.current.params.id;
  	        
6ae8d3cdd   Palak Handa   add new module
586
587
588
589
590
591
  	        $http({
  	            method: "GET",
  	            url: BASE_URL + '/payments?filter={"where":{"applicantId":' + $scope.pendingPaymentId + '}}',
  	        }).then(function mySuccess(response) {
  	            $scope.paymentRecord = response.data;
  	        }, function myError(response) {
6ae8d3cdd   Palak Handa   add new module
592
593
594
595
596
597
598
599
600
  	        });
  	    }, function myError(response) {
  	        $scope.myWelcome = response.statusText;
  	    });
  
  	    $scope.checkView = false;
  	    $scope.verifyView = false;
  
  	    $scope.pendingPaymentId = '';
6ae8d3cdd   Palak Handa   add new module
601
602
603
604
605
  	    $scope.update = function() {
  
  	        $http({
  	            method: 'GET',
  	            url: BASE_URL + '/payments?filter={"where":{"applicantId": ' + $scope.pendingPaymentId + '}}',
6ae8d3cdd   Palak Handa   add new module
606
607
  	            headers: {}
  	        }).then(function mySuccess(searchResult) {
ced66f2dc   Palak Handa   minor changes
608
  	            if (searchResult.data[0].status == "created") {
6ae8d3cdd   Palak Handa   add new module
609
610
  	                $scope.checkView = true;
  	                $scope.verifyView = false;
ced66f2dc   Palak Handa   minor changes
611
612
613
614
  	                $scope.amount = searchResult.data[0].amount;
  	                $scope.searchResult = searchResult.data[0];
  	                console.log('====searchResult===', searchResult);
  	        		console.log("searchResult=====",searchResult.data[0].razorOrderId)
6ae8d3cdd   Palak Handa   add new module
615
  	                var i = 0;
ced66f2dc   Palak Handa   minor changes
616
  	                $scope.amount =  $scope.amount * 100;
6ae8d3cdd   Palak Handa   add new module
617
  	                var options = {
f2142e490   Palak Handa   rajorpay key updated
618
619
  	                    "key": "rzp_live_mhSE1uOBlXvFyJ",
  	                    //"key" : "rzp_test_YwHsVFiDIQ2WUQ",
6ae8d3cdd   Palak Handa   add new module
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
  	                    "amount": $scope.amount,
  
  	                    "name": "Startup Jalsa",
  	                    "description": "amount",
  	                    "currency": "INR",
  	                    "status": "done",
  
  	                    "theme": {
  	                        "color": "#2196f3 ",
  	                        "image_padding": "NO"
  	                    },
  	                    "modal": {
  	                        "ondismiss": function() {}
  	                    },
  	                    "handler": function(response) {
  	                        createPayment(response);
  	                    }
  	                };
  	                var rzp1 = new Razorpay(options);
  	                rzp1.open();
  	                $scope.paymentResponse = {};
6ae8d3cdd   Palak Handa   add new module
641
  	                function createPayment(response) {
ced66f2dc   Palak Handa   minor changes
642
643
  	                	$scope.amount =  $scope.amount / 100;
  	                	console.log("response======retepaymen",response);
6ae8d3cdd   Palak Handa   add new module
644
  	                    $scope.paymentResponse.razorPaymentId = response.razorpay_payment_id;
ced66f2dc   Palak Handa   minor changes
645
  	                    $scope.paymentResponse.razorOrderId = $scope.searchResult.razorOrderId;
6ae8d3cdd   Palak Handa   add new module
646
  	                    $scope.paymentResponse.amount = $scope.amount;
ced66f2dc   Palak Handa   minor changes
647
648
649
  	                    $scope.paymentResponse.currency = $scope.searchResult.currency;
  	                    $scope.paymentResponse.status = $scope.searchResult.status;
  	                    $scope.paymentResponse.applicantId = $scope.searchResult.applicantId;
6ae8d3cdd   Palak Handa   add new module
650
651
652
  	                    console.log("$scope.paymentResponse", $scope.paymentResponse)
  	                    $http({
  	                        method: 'PUT',
ced66f2dc   Palak Handa   minor changes
653
  	                        url: BASE_URL + '/payments/' + $scope.searchResult.id,
6ae8d3cdd   Palak Handa   add new module
654
655
656
  	                        data: $scope.paymentResponse,
  	                        headers: {}
  	                    }).then(function mySuccess(searchResult) {
8e25d825b   Palak Handa   changes the rajor...
657
  	                    	console.log("finalsearchResult",searchResult)
ced66f2dc   Palak Handa   minor changes
658
  	                    	$location.path("/confirmation")
6ae8d3cdd   Palak Handa   add new module
659
660
661
662
663
664
665
666
667
668
669
  	                    }, function myError(error) {
  
  	                    });
  	                }
  	            } else {
  
  	            }
  
  	        }, function myError(error) {});
  	    }
  	});
53b83aa9e   Palak Handa   first commit
670

2d6a9fbea   Palak Handa   complete bugs
671
  	scotchApp.controller('ambassadorController', function($scope, $http, $location, $route,BASE_URL) {
6ae8d3cdd   Palak Handa   add new module
672
  		$scope.data = {};
8e25d825b   Palak Handa   changes the rajor...
673
674
  		$scope.check = false;
  	    $scope.numberCheck = false;
5348de778   Palak Handa   design updated
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
  	    /*open videos in modal*/
  	    $scope.openyoutube16 = function(){
  			$('#videoModel').modal('show');
  	    }
  
  	     $scope.openyoutube17 = function(){
  			$('#videoModels').modal('show');
  	    }
  
  	    $scope.closeModal = function(){
  	    	var url = $('#youtubePlayer').attr('src');
  			$('#youtubePlayer').attr('src', '');
  			$('#youtubePlayer').attr('src', url);
  	    }
  	    /*open videos ends here*/
  
  	    $scope.removeError = function() {
  	        $('#invalidEmail').css('display', 'none');
  	        $('#alreadyExist').css('display', 'none');
  	    };
8e25d825b   Palak Handa   changes the rajor...
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
  		$scope.emailcheck = function(val) {
  	        if (val == undefined) {
  	            $('#invalidEmail').css('display', 'block');
  	        } else {
  	            $http({
  	                method: 'GET',
  	                url: BASE_URL + '/ambassadors?filter={"where": {"email": {"like":"%25' + $scope.data.email + '%25"}}}',
  	                headers: {}
  	            }).then(function mySuccess(searchResult) {
  	                console.log("searchResult1===>", searchResult)
  	                if (searchResult.data.length == 0) {
  	                    $scope.check = false;
  	                } else {
  	                    $scope.check = true;
  	                    $('#alreadyExist').css('display', 'block');
  	                }
  	            }, function myError(error) {});
  	        }
  	    };
6db0109b5   Palak Handa   minor changes
714
715
716
717
  	    $scope.removeNoError = function() {
  	    	$('#invalidNumber').css('display', 'none');
  	        $('#noExist').css('display', 'none');
  	    };
8e25d825b   Palak Handa   changes the rajor...
718
719
  
  	    $scope.numbercheck = function(number) {
5348de778   Palak Handa   design updated
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
  	    	// if (val == undefined) {
  	     //        $('#invalidNumber').css('display', 'block');
  	     //    } else {
  	        	$http({
  	            	method: 'GET',
  	            	url: BASE_URL + '/ambassadors?filter={"where": {"mobile": {"like":"%25' + number + '%25"}}}',
  	            	data: $scope.data,
  	            	headers: {}
  	        	}).then(function mySuccess(searchResult) {
  	            	console.log("searchResult===>", searchResult)
  	            	if (searchResult.data.length == 0) {
  	                	$scope.numberCheck = false;
  	            	} else {
  	                	$scope.numberCheck = true;
  	                	$('#noExist').css('display', 'block');
  	            	}
  	        	}, function myError(error) {});
  	       	//}
8e25d825b   Palak Handa   changes the rajor...
738

8e25d825b   Palak Handa   changes the rajor...
739
  	    };
6ae8d3cdd   Palak Handa   add new module
740
741
742
743
744
745
746
  		$scope.submit = function() {
  			console.log($scope.data.name)
  			var randomNumber = ""+Math.random();
  			var nameSpliced = $scope.data.name.slice(0,3);
  			var numberSpliced = randomNumber.slice(2,5);
  			$scope.data.referalToken = nameSpliced+numberSpliced;
  			$scope.data.referalToken = $scope.data.referalToken.toUpperCase();
2d6a9fbea   Palak Handa   complete bugs
747

6ae8d3cdd   Palak Handa   add new module
748
749
750
751
752
753
754
755
  	         $http({
  	                method: 'POST',
  	                url: BASE_URL + '/ambassadors',
  	                data: $scope.data,
  	                headers: {}
  	            }).then(function mySuccess(result) {
  	                console.log("result", result)
  	                $scope.detail = result;
2d6a9fbea   Palak Handa   complete bugs
756
757
758
759
760
  	                $('#myModal').modal('show');
  	              	 $scope.data.name = '';
  	                $scope.data.email = '';
  	                $scope.data.mobile = '';
  	            
6db0109b5   Palak Handa   minor changes
761
762
763
764
  	            }, function myError(error) {
  	            	console.log(error)
  	            	console.log(error.data.error.message)
  	            });
2d6a9fbea   Palak Handa   complete bugs
765
  	        console.log($scope.data)
6ae8d3cdd   Palak Handa   add new module
766
767
  	        }
  	});
53b83aa9e   Palak Handa   first commit
768