Blame view

script.js 46.1 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
  	    $routeProvider
dcb703070   Palak Handa   updated new form ...
7
  	    	// route for the Home page
6ae8d3cdd   Palak Handa   add new module
8
  	        .when('/', {
dcb703070   Palak Handa   updated new form ...
9
10
11
12
13
14
15
  	            templateUrl: 'pages/Home.html',
  	            controller: 'mainController'
  	        })
  
  	        // route for the registration page
  	        .when('/registration', {
  	            templateUrl: 'pages/registration.html',
6ae8d3cdd   Palak Handa   add new module
16
17
  	            controller: 'mainController'
  	        })
2d6a9fbea   Palak Handa   complete bugs
18
  	        // route for the paymentVerify page
4de569579   Palak Handa   design update
19
  	        .when('/pendingPayment/:id', {
6ae8d3cdd   Palak Handa   add new module
20
21
22
23
24
  	            templateUrl: 'pages/verify.html',
  	            controller: 'verifyController'
  	        })
  
  	        // route for the ambassador page
b678502c9   Palak Handa   update
25
  	        .when('/startupJalsaPromocode', {
6ae8d3cdd   Palak Handa   add new module
26
27
28
  	            templateUrl: 'pages/ambassador.html',
  	            controller: 'ambassadorController'
  	        })
5348de778   Palak Handa   design updated
29
30
31
32
33
34
  
  	        // route for the confirmation page
  	        .when('/confirmation', {
  	            templateUrl: 'pages/confirmation.html',
  	            controller: 'mainController'
  	        })
6ae8d3cdd   Palak Handa   add new module
35
  	});
53b83aa9e   Palak Handa   first commit
36

f263889f0   Palak Handa   analytics work
37
38
  	scotchApp.config(['AnalyticsProvider', function (AnalyticsProvider) {
  	   	// Add configuration code as desired
61b69ada0   Palak Handa   design updated
39
  	   	 AnalyticsProvider.setAccount('UA-106416759-1');  //UU-XXXXXXX-X should be your tracking code
f263889f0   Palak Handa   analytics work
40
41
42
43
44
45
46
47
  
  	   	// Track all routes (default is true).
  	  	AnalyticsProvider.trackPages(true);
  
  	  	// Track all URL query params (default is false).
  	  	AnalyticsProvider.trackUrlParams(true);
  
  	}]).run(['Analytics', function(Analytics) { }]);
19074e251   Palak Handa   dshf
48
  	scotchApp.constant("BASE_URL", "http://139.59.68.74:4001/v1")
d3523e113   Palak Handa   update
49
  	//scotchApp.constant("BASE_URL", "http://0.0.0.0:4001/v1")
6ae8d3cdd   Palak Handa   add new module
50

2d6a9fbea   Palak Handa   complete bugs
51
  	// create the controller and inject Angular's $scope
f263889f0   Palak Handa   analytics work
52
  	scotchApp.controller('mainController', function($scope, $http, $location, $route, $rootScope, BASE_URL, Analytics) {
6ae8d3cdd   Palak Handa   add new module
53
54
55
56
  	    $scope.data = {
  	        show: true,
  	        hide: false
  	    };
6dcd0101f   Palak Handa   sdss
57
  	    var maininvest = new Date("Nov 30, 2017 12:00:00").getTime();
2f9a20645   Palak Handa   add timer
58
59
60
61
62
  		// Update the count down every 1 second
  		var x = setInterval(function() {
  		    // Get todays date and time
  		    var now = new Date().getTime();
  		    // Find the distance between now an the count down date
6dcd0101f   Palak Handa   sdss
63
  		    var distance = maininvest - now;
2f9a20645   Palak Handa   add timer
64
65
66
67
68
69
70
71
  		    // Time calculations for days, hours, minutes and seconds
  		    var days = Math.floor(distance / (1000 * 60 * 60 * 24));
  		    var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
  		    var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
  		    var seconds = Math.floor((distance % (1000 * 60)) / 1000);
  		    $scope.timer = days + "d " + hours + "h "
  		    + minutes + "m " + seconds + "s "
  		    // Output the result in an element with id="demo"
6dcd0101f   Palak Handa   sdss
72
  		    document.getElementById("maininvest").innerHTML = days + "d " + hours + "h "
2f9a20645   Palak Handa   add timer
73
74
75
  		    + minutes + "m " + seconds + "s ";
  		    // If the count down is over, write some text 
  		    if (distance < 0) {
515649dae   Palak Handa   update changes
76
  		    	// $scope.extendedAmount = 
2f9a20645   Palak Handa   add timer
77
  		        clearInterval(x);
6dcd0101f   Palak Handa   sdss
78
  		        document.getElementById("maininvest").innerHTML = "EXPIRED";
2f9a20645   Palak Handa   add timer
79
80
  		    }
  		}, 1000);
d3523e113   Palak Handa   update
81
  		var pune = new Date("Nov 11, 2017 12:00:00").getTime();
edb834825   Palak Handa   update timer
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
  		// Update the count down every 1 second
  		var x = setInterval(function() {
  		    // Get todays date and time
  		    var now = new Date().getTime();
  		    // Find the distance between now an the count down date
  		    var distance = pune - now;
  		    // Time calculations for days, hours, minutes and seconds
  		    var days = Math.floor(distance / (1000 * 60 * 60 * 24));
  		    var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
  		    var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
  		    var seconds = Math.floor((distance % (1000 * 60)) / 1000);
  		    $scope.timer = days + "d " + hours + "h "
  		    + minutes + "m " + seconds + "s "
  		    // Output the result in an element with id="demo"
  		    document.getElementById("pune").innerHTML = days + "d " + hours + "h "
  		    + minutes + "m " + seconds + "s ";
  		    // If the count down is over, write some text 
  		    if (distance < 0) {
  		        clearInterval(x);
  		        document.getElementById("pune").innerHTML = "EXPIRED";
  		    }
  		}, 1000);
1336ca7b0   Palak Handa   update time
104
  		var mumbai = new Date("Nov 13, 2017 16:00:00").getTime();
edb834825   Palak Handa   update timer
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
  		// Update the count down every 1 second
  		var x = setInterval(function() {
  		    // Get todays date and time
  		    var now = new Date().getTime();
  		    // Find the distance between now an the count down date
  		    var distance = mumbai - now;
  		    // Time calculations for days, hours, minutes and seconds
  		    var days = Math.floor(distance / (1000 * 60 * 60 * 24));
  		    var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
  		    var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
  		    var seconds = Math.floor((distance % (1000 * 60)) / 1000);
  		    $scope.timer = days + "d " + hours + "h "
  		    + minutes + "m " + seconds + "s "
  		    // Output the result in an element with id="demo"
  		    document.getElementById("mumbai").innerHTML = days + "d " + hours + "h "
  		    + minutes + "m " + seconds + "s ";
  		    // If the count down is over, write some text 
  		    if (distance < 0) {
  		        clearInterval(x);
  		        document.getElementById("mumbai").innerHTML = "EXPIRED";
  		    }
  		}, 1000);
b952ef978   Palak Handa   time update
127
  		var ahmedabad = new Date("Nov 15, 2017 16:00:00").getTime();
edb834825   Palak Handa   update timer
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
  		// Update the count down every 1 second
  		var x = setInterval(function() {
  		    // Get todays date and time
  		    var now = new Date().getTime();
  		    // Find the distance between now an the count down date
  		    var distance = ahmedabad - now;
  		    // Time calculations for days, hours, minutes and seconds
  		    var days = Math.floor(distance / (1000 * 60 * 60 * 24));
  		    var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
  		    var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
  		    var seconds = Math.floor((distance % (1000 * 60)) / 1000);
  		    $scope.timer = days + "d " + hours + "h "
  		    + minutes + "m " + seconds + "s "
  		    // Output the result in an element with id="demo"
  		    document.getElementById("ahmedabad").innerHTML = days + "d " + hours + "h "
  		    + minutes + "m " + seconds + "s ";
  		    // If the count down is over, write some text 
  		    if (distance < 0) {
  		        clearInterval(x);
  		        document.getElementById("ahmedabad").innerHTML = "EXPIRED";
  		    }
  		}, 1000);
cfa5c93f5   Palak Handa   update time
150
  		var jaipur = new Date("Nov 17, 2017 16:00:00").getTime();
edb834825   Palak Handa   update timer
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
  		// Update the count down every 1 second
  		var x = setInterval(function() {
  		    // Get todays date and time
  		    var now = new Date().getTime();
  		    // Find the distance between now an the count down date
  		    var distance = jaipur - now;
  		    // Time calculations for days, hours, minutes and seconds
  		    var days = Math.floor(distance / (1000 * 60 * 60 * 24));
  		    var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
  		    var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
  		    var seconds = Math.floor((distance % (1000 * 60)) / 1000);
  		    $scope.timer = days + "d " + hours + "h "
  		    + minutes + "m " + seconds + "s "
  		    // Output the result in an element with id="demo"
  		    document.getElementById("jaipur").innerHTML = days + "d " + hours + "h "
  		    + minutes + "m " + seconds + "s ";
  		    // If the count down is over, write some text 
  		    if (distance < 0) {
  		        clearInterval(x);
  		        document.getElementById("jaipur").innerHTML = "EXPIRED";
  		    }
  		}, 1000);
6299b7f50   Palak Handa   update
173
  		var bangalore = new Date("Nov 21, 2017 12:00:00").getTime();
edb834825   Palak Handa   update timer
174
175
176
177
178
  		// Update the count down every 1 second
  		var x = setInterval(function() {
  		    // Get todays date and time
  		    var now = new Date().getTime();
  		    // Find the distance between now an the count down date
f649c6b24   Palak Handa   updated timer
179
  		    var distance = bangalore - now;
edb834825   Palak Handa   update timer
180
181
182
183
184
185
186
187
  		    // Time calculations for days, hours, minutes and seconds
  		    var days = Math.floor(distance / (1000 * 60 * 60 * 24));
  		    var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
  		    var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
  		    var seconds = Math.floor((distance % (1000 * 60)) / 1000);
  		    $scope.timer = days + "d " + hours + "h "
  		    + minutes + "m " + seconds + "s "
  		    // Output the result in an element with id="demo"
f649c6b24   Palak Handa   updated timer
188
  		    document.getElementById("bangalore").innerHTML = days + "d " + hours + "h "
edb834825   Palak Handa   update timer
189
190
191
192
  		    + minutes + "m " + seconds + "s ";
  		    // If the count down is over, write some text 
  		    if (distance < 0) {
  		        clearInterval(x);
f649c6b24   Palak Handa   updated timer
193
  		        document.getElementById("bangalore").innerHTML = "EXPIRED";
edb834825   Palak Handa   update timer
194
195
  		    }
  		}, 1000);
6299b7f50   Palak Handa   update
196
  		var hyderabad = new Date("Nov 19, 2017 12:00:00").getTime();
edb834825   Palak Handa   update timer
197
198
199
200
201
  		// Update the count down every 1 second
  		var x = setInterval(function() {
  		    // Get todays date and time
  		    var now = new Date().getTime();
  		    // Find the distance between now an the count down date
f649c6b24   Palak Handa   updated timer
202
  		    var distance = hyderabad - now;
edb834825   Palak Handa   update timer
203
204
205
206
207
208
209
210
  		    // Time calculations for days, hours, minutes and seconds
  		    var days = Math.floor(distance / (1000 * 60 * 60 * 24));
  		    var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
  		    var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
  		    var seconds = Math.floor((distance % (1000 * 60)) / 1000);
  		    $scope.timer = days + "d " + hours + "h "
  		    + minutes + "m " + seconds + "s "
  		    // Output the result in an element with id="demo"
f649c6b24   Palak Handa   updated timer
211
  		    document.getElementById("hyderabad").innerHTML = days + "d " + hours + "h "
edb834825   Palak Handa   update timer
212
213
214
215
  		    + minutes + "m " + seconds + "s ";
  		    // If the count down is over, write some text 
  		    if (distance < 0) {
  		        clearInterval(x);
f649c6b24   Palak Handa   updated timer
216
  		        document.getElementById("hyderabad").innerHTML = "EXPIRED";
edb834825   Palak Handa   update timer
217
218
  		    }
  		}, 1000);
d0714b854   Palak Handa   update
219
  		var delhi = new Date("Nov 27, 2017 12:00:00").getTime();
edb834825   Palak Handa   update timer
220
221
222
223
224
  		// Update the count down every 1 second
  		var x = setInterval(function() {
  		    // Get todays date and time
  		    var now = new Date().getTime();
  		    // Find the distance between now an the count down date
f649c6b24   Palak Handa   updated timer
225
  		    var distance = delhi - now;
edb834825   Palak Handa   update timer
226
227
228
229
230
231
232
233
  		    // Time calculations for days, hours, minutes and seconds
  		    var days = Math.floor(distance / (1000 * 60 * 60 * 24));
  		    var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
  		    var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
  		    var seconds = Math.floor((distance % (1000 * 60)) / 1000);
  		    $scope.timer = days + "d " + hours + "h "
  		    + minutes + "m " + seconds + "s "
  		    // Output the result in an element with id="demo"
f649c6b24   Palak Handa   updated timer
234
  		    document.getElementById("delhi").innerHTML = days + "d " + hours + "h "
edb834825   Palak Handa   update timer
235
236
237
238
  		    + minutes + "m " + seconds + "s ";
  		    // If the count down is over, write some text 
  		    if (distance < 0) {
  		        clearInterval(x);
f649c6b24   Palak Handa   updated timer
239
  		        document.getElementById("delhi").innerHTML = "EXPIRED";
edb834825   Palak Handa   update timer
240
241
  		    }
  		}, 1000);
6299b7f50   Palak Handa   update
242
  		var chandigarh = new Date("Nov 30, 2017 12:00:00").getTime();
edb834825   Palak Handa   update timer
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
  		// Update the count down every 1 second
  		var x = setInterval(function() {
  		    // Get todays date and time
  		    var now = new Date().getTime();
  		    // Find the distance between now an the count down date
  		    var distance = chandigarh - now;
  		    // Time calculations for days, hours, minutes and seconds
  		    var days = Math.floor(distance / (1000 * 60 * 60 * 24));
  		    var hours = Math.floor((distance % (1000 * 60 * 60 * 24)) / (1000 * 60 * 60));
  		    var minutes = Math.floor((distance % (1000 * 60 * 60)) / (1000 * 60));
  		    var seconds = Math.floor((distance % (1000 * 60)) / 1000);
  		    $scope.timer = days + "d " + hours + "h "
  		    + minutes + "m " + seconds + "s "
  		    // Output the result in an element with id="demo"
  		    document.getElementById("chandigarh").innerHTML = days + "d " + hours + "h "
  		    + minutes + "m " + seconds + "s ";
  		    // If the count down is over, write some text 
  		    if (distance < 0) {
  		        clearInterval(x);
  		        document.getElementById("chandigarh").innerHTML = "EXPIRED";
  		    }
  		}, 1000);
6ae8d3cdd   Palak Handa   add new module
265
  	    $scope.infoForm = false; /*THIS CODE FOR HIDE STEP 2 FORM*/
e847b36f8   Palak Handa   minor changes
266
  	    $scope.space = false; /*THIS CODE FOR HIDE STEP 2 FORM*/
c62079487   Palak Handa   updated design
267
  	    // $scope.Textshow = "yes"
6ae8d3cdd   Palak Handa   add new module
268
  	    $scope.max = 100;
88dd26b3d   Palak Handa   update
269
  	    $scope.formPage = false;
6ae8d3cdd   Palak Handa   add new module
270
271
272
  	    $scope.current = 0;
  	    $scope.payingAmnt = 0;
  	    if ($scope.data.stage == 'select') {
6ae8d3cdd   Palak Handa   add new module
273

53b83aa9e   Palak Handa   first commit
274
  	    }
439352ca6   Palak Handa   base url changes
275
  	    //$scope.author = 'Swarn Singh';
6ae8d3cdd   Palak Handa   add new module
276
277
  	    $scope.data = {};
  	    $scope.data.stage = 'Idea';
ea3c31126   Palak Handa   complete
278
  	    $scope.discountAmount = 0;
6ae8d3cdd   Palak Handa   add new module
279
280
  	    $scope.check = false;
  	    $scope.numberCheck = false;
6ae8d3cdd   Palak Handa   add new module
281
  	    $scope.paymentResult = {};
6ae8d3cdd   Palak Handa   add new module
282
283
284
285
286
  	    var data = {
  	        "amount": $scope.payingAmnt,
  	        "currency": "INR",
  	        "status": "pending"
  	    }
53b83aa9e   Palak Handa   first commit
287

5259a7d0e   Digvijay Singh   video links added
288
  	    /*open videos in modal*/
b8938eb77   Palak Handa   add content
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
  	  //   $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);
  	  //   }
  
  
  	  //   $scope.closed = function(){
  	  //   	var url = $('#youtubePlayersss').attr('src');
  			// $('#youtubePlayersss').attr('src', '');
  			// $('#youtubePlayersss').attr('src', url);
  	  //   }
5259a7d0e   Digvijay Singh   video links added
309
  	    /*open videos ends here*/
dcb703070   Palak Handa   updated new form ...
310
  	    $scope.apply = function() {
20db60d9c   Palak Handa   update analytics
311
  	    	Analytics.trackEvent('register', 'click', 'Registration');
dcb703070   Palak Handa   updated new form ...
312
313
  			$location.path("/registration")
  		}
88dd26b3d   Palak Handa   update
314
315
316
  		$scope.data.citymeetup = '';
  		$scope.register = function(value){
  			$scope.data.citymeetup = value;
21f079262   Palak Handa   dfd
317
  			if (value == 'mainevent') {
e9d943391   Palak Handa   update
318
319
  		    	$scope.eventType = true;
  		    	$scope.mainType = false;
d0714b854   Palak Handa   update
320
  		    	$scope.data.stage = null;
e9d943391   Palak Handa   update
321
322
323
324
325
  		    }
  		    else{
  		    	$scope.eventType = false;
  		    	$scope.mainType = true;
  		    }
88dd26b3d   Palak Handa   update
326
327
328
329
330
331
  			$('.hiddenForm').slideDown();
  			$('html, body').animate({
  		        scrollTop: $('.hiddenForm').offset().top
  		    }, 1000);
  			console.log('gdggsg', value);
  		}
5259a7d0e   Digvijay Singh   video links added
332

5348de778   Palak Handa   design updated
333
334
335
336
  	    $scope.removeError = function() {
  	        $('#invalidEmail').css('display', 'none');
  	        $('#alreadyExist').css('display', 'none');
  	    };
6ae8d3cdd   Palak Handa   add new module
337
  	    $scope.emailcheck = function(val) {
e847b36f8   Palak Handa   minor changes
338
339
340
  	    	console.log(val)
  			$scope.space = /\s/g.test(val);
      		console.log("space",$scope.space)
6ae8d3cdd   Palak Handa   add new module
341
342
343
344
345
346
  	        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
347
348
349
350
351
352
353
  	                headers: {}
  	            }).then(function mySuccess(searchResult) {
  	                console.log("searchResult1===>", searchResult)
  	                if (searchResult.data.length == 0) {
  	                    $scope.check = false;
  	                } else {
  	                    $scope.check = true;
8ddc94e00   Palak Handa   update
354
  	                    $scope.emailId = searchResult.data[0].id
6ae8d3cdd   Palak Handa   add new module
355
  	                    $('#alreadyExist').css('display', 'block');
19074e251   Palak Handa   dshf
356

6ae8d3cdd   Palak Handa   add new module
357
  	                }
89fe83f92   Palak Handa   amount update
358
  	                console.log("$scope.data.id",searchResult.data)
6ae8d3cdd   Palak Handa   add new module
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
  	            }, 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
377

6ae8d3cdd   Palak Handa   add new module
378
379
380
381
382
383
384
385
386
387
  	            } else {
  	                $scope.numberCheck = true;
  	                $('#noExist').css('display', 'block');
  	            }
  	        }, function myError(error) {});
  	    };
  
  	    $rootScope.tokenCall = function(val) {
  	        console.log('val-------->', val);
  	        if (val == undefined) {
8257d964d   Palak Handa   update
388
  	            $('#invalidToken').css('display', 'block');
6ae8d3cdd   Palak Handa   add new module
389
390
391
392
  	        } else {
  	        	val = val.toUpperCase();
  	        	$http.get(BASE_URL + '/ambassadors?filter={"where": {"referalToken": {"like":"%25' + val + '%25"}}}')
  				    .then(function(searchResult) {
e284785e4   Palak Handa   update new field
393
  				    	console.log("searchResult",searchResult)
6ae8d3cdd   Palak Handa   add new module
394
395
  				        if (searchResult.data.length == 0) {
  	                    	$scope.tokencheck = false;
ea3c31126   Palak Handa   complete
396
  	                    	 $scope.discountAmount = 0;
6ae8d3cdd   Palak Handa   add new module
397
  	                	} else {
e284785e4   Palak Handa   update new field
398
  	                    	 $scope.discountpercentage = searchResult.data[0].discount;
6ae8d3cdd   Palak Handa   add new module
399
  	                    	$scope.tokencheck = true;
6ae8d3cdd   Palak Handa   add new module
400
401
402
403
  	                	}
  				    },function(err){
  				    	console.log(err)
  				});
53b83aa9e   Palak Handa   first commit
404
  	           
6ae8d3cdd   Palak Handa   add new module
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
  	        }
  	    };
  
  	    /*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
420
  	        });
6ae8d3cdd   Palak Handa   add new module
421
422
  
  	    /*****THIS IS FOR STEP ONE FORM ******/
dcb703070   Palak Handa   updated new form ...
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
  	    // $scope.next = function() {	  
  	    //     $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) {
  					// Analytics.trackEvent('information', 'click', 'django.mp4');
  	    //             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
452

dcb703070   Palak Handa   updated new form ...
453
  	    // }
6ae8d3cdd   Palak Handa   add new module
454

ea3c31126   Palak Handa   complete
455
  	    $scope.calculateAmount =  function(){
e9d943391   Palak Handa   update
456
457
458
  	    	if($scope.tokencheck == false){
  	    		$scope.data.referalToken = null;
  	    	}
d0714b854   Palak Handa   update
459
  	        if ($scope.data.name == undefined || $scope.data.email == undefined || $scope.data.number == undefined) {
9842ccd27   Palak Handa   changes api call
460
461
462
463
464
  	            var x = document.getElementById("snackbar")
  	            x.className = "show";
  	            setTimeout(function() {
  	                x.className = x.className.replace("show", "");
  	            }, 3000);
d0714b854   Palak Handa   update
465
  	        } else if ($scope.data.name != undefined && $scope.data.email != undefined && $scope.data.number != undefined) {
9842ccd27   Palak Handa   changes api call
466
467
468
469
470
471
472
473
474
475
476
  	            $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) {
89fe83f92   Palak Handa   amount update
477
  	            	Analytics.trackEvent('applicants', 'click','Users');
9842ccd27   Palak Handa   changes api call
478
479
480
  	                console.log("result", result)
  	                $scope.detail = result;
  	                data.applicantId = result.data.id;
d122fec29   Palak Handa   modify
481
  	                //$scope.userId = result.data.id;
bc4a7c3b8   Palak Handa   update
482
483
  	          	
  		        if($scope.data.citymeetup == "pune"){
d3523e113   Palak Handa   update
484
485
  			    	if ($scope.data.stage == "Idea") {
  			            console.log("$scope.data", $scope.data)
8805301f7   Palak Handa   update amount pune
486
  			            $scope.ticketAmnt = 700;			            
d3523e113   Palak Handa   update
487
488
489
  			        }
  
  			        if ($scope.data.stage == "Product") {
8805301f7   Palak Handa   update amount pune
490
  			            $scope.ticketAmnt = 1400;			            
d3523e113   Palak Handa   update
491
492
493
  			        }
  
  			        if ($scope.data.stage == "Growth") {
8805301f7   Palak Handa   update amount pune
494
  			            $scope.ticketAmnt = 1400;
d3523e113   Palak Handa   update
495
496
  			        }
  		        }
357b39122   Palak Handa   mainevent add
497
  		        else if($scope.data.citymeetup == "mainevent"){
d0714b854   Palak Handa   update
498
499
  			    	// if ($scope.data.stage == '') {
  			            console.log("$scope.data", $scope.data)
bbb5c322d   Palak Handa   update amount
500
  			            $scope.ticketAmnt = 2000;			            
d0714b854   Palak Handa   update
501
502
503
504
505
506
507
508
509
510
  			        // }
  
  			        // if ($scope.data.stage == "Product") {
  			        //     $scope.ticketAmnt = 1500;			            
  			        // }
  
  			        // if ($scope.data.stage == "Growth") {
  			        //     $scope.ticketAmnt = 1500;
  			        // }
  		        }
515649dae   Palak Handa   update changes
511
512
513
514
515
516
517
518
519
520
521
522
523
  		        else{
  		        	if ($scope.data.stage == "Idea") {
  			            console.log("$scope.data", $scope.data)
  			            $scope.ticketAmnt = 500;			            
  			        }
  
  			        if ($scope.data.stage == "Product") {
  			            $scope.ticketAmnt = 1000;			            
  			        }
  
  			        if ($scope.data.stage == "Growth") {
  			            $scope.ticketAmnt = 1000;
  			        }
d122fec29   Palak Handa   modify
524
  		        }
629cc1f8f   Palak Handa   minor changes
525
526
527
  		        // if ($scope.data.stage == "Visitor") {
  		        //     $scope.ticketAmnt = 500;
  		        // }
d122fec29   Palak Handa   modify
528
529
530
  		        var amount = $scope.ticketAmnt * 100
  		        if($scope.tokencheck == true){
  			        var amount = $scope.ticketAmnt
e284785e4   Palak Handa   update new field
531
532
  				    $scope.discountAmount = (amount * $scope.discountpercentage)/100
  				    console.log("finalAmount====>",$scope.discountAmount)
d122fec29   Palak Handa   modify
533
  		        }
e284785e4   Palak Handa   update new field
534
  		        var taxAmount = $scope.ticketAmnt - $scope.discountAmount
515649dae   Palak Handa   update changes
535
  		        console.log("$scope.taxTotal----",taxAmount)
bcefa53b8   Palak Handa   gst add
536
  	            $scope.taxTotal = (taxAmount * 18)/100
e284785e4   Palak Handa   update new field
537
  	            $scope.payingAmnt = taxAmount + $scope.taxTotal 
d122fec29   Palak Handa   modify
538
  	            console.log("taxincludedamount----", $scope.payingAmnt)
bcefa53b8   Palak Handa   gst add
539
  	            console.log("$scope.taxTotal----", $scope.taxTotal)
d122fec29   Palak Handa   modify
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
567
  		    // }
  
  		    /*****THIS IS FOR STEP THREE FORM ******/
  		    // $scope.create = function() {
  		        // 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)
e284785e4   Palak Handa   update new field
568
569
  		                // data.amount = $scope.payingAmnt + $scope.taxTotal;
  		                data.amount = $scope.payingAmnt;
bcefa53b8   Palak Handa   gst add
570
  		                console.log("$scope.taxTotal",data.amount)
d122fec29   Palak Handa   modify
571
572
573
574
575
576
577
  		                if ($scope.detail != null) {
  		                    $http({
  		                        method: 'POST',
  		                        url: BASE_URL + '/payments',
  		                        data: data,
  		                        headers: {}
  		                    }).then(function mySuccess(paymentResult) {
d122fec29   Palak Handa   modify
578
579
580
581
582
  		                    	console.log("paymentResult",paymentResult)
  		                        $scope.paymentResult = paymentResult;
  		                    }, function myError(error) {});
  		                }
  		                var i = 0;
e284785e4   Palak Handa   update new field
583
584
585
  		                 //$scope.payingAmnt =  ($scope.payingAmnt + $scope.taxTotal) * 100;
  
   	                 $scope.payingAmnt =  $scope.payingAmnt * 100;
515649dae   Palak Handa   update changes
586
   	                 console.log("$scope.taxTotal----", $scope.payingAmnt)
d122fec29   Palak Handa   modify
587
  		                var options = {
07e435d22   Palak Handa   rajorkey
588
589
  		                   	"key": "rzp_live_mhSE1uOBlXvFyJ",
  		                    //"key": "rzp_test_YwHsVFiDIQ2WUQ",
bcefa53b8   Palak Handa   gst add
590
591
  		                    "amount": $scope.payingAmnt ,
   
d122fec29   Palak Handa   modify
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
  		                    "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) {
d122fec29   Palak Handa   modify
613
614
615
616
617
618
619
  		                	console.log("response====from===razorpay",response)
  		                    $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";
  		                    $scope.paymentResponse.status = $scope.paymentResult.data.status;
89fe83f92   Palak Handa   amount update
620
  		                	Analytics.trackEvent('payment','Successfully Done',$scope.data.email,$scope.paymentResponse.amount);
d122fec29   Palak Handa   modify
621
622
623
624
625
626
  		                    $http({
  		                        method: 'PUT',
  		                        url: BASE_URL + '/payments/' + $scope.paymentResult.data.id,
  		                        data: $scope.paymentResponse,
  		                        headers: {}
  		                    }).then(function mySuccess(searchResult) {
f6d172552   Palak Handa   analytics apply
627
  		                    	// if(paymentResult.data.status == "created"){
9babf5dba   Palak Handa   update
628
  		                    	
f6d172552   Palak Handa   analytics apply
629
  		                    	// }
d122fec29   Palak Handa   modify
630
631
632
633
634
635
636
  		                        console.log("searchResult", searchResult)
  		                        $location.path("/confirmation")
  		                        //$scope.showToastr()
  		                        //toaster.success("Registration done successfully");
  
  		                    }, function myError(error) {});
  		                }
0c83501f4   Palak Handa   show error message
637
638
639
640
641
642
  		            }, function myError(error) {
  		            	console.log("error",error)
  		            	$scope.emailId = error.data.error.message;
  		            	$scope.id = error.data.error.id;
  		            	$('#myModal').modal('show');
  		            });
d122fec29   Palak Handa   modify
643
644
645
  		        }
  
  	    	}
dcb703070   Palak Handa   updated new form ...
646

9842ccd27   Palak Handa   changes api call
647
648
  	            //}, function myError(error) {});
  	        //}
6ae8d3cdd   Palak Handa   add new module
649

dcb703070   Palak Handa   updated new form ...
650
  	    //}
6ae8d3cdd   Palak Handa   add new module
651

5348de778   Palak Handa   design updated
652
653
654
655
656
657
658
659
  	    // $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
660

6ae8d3cdd   Palak Handa   add new module
661
  	    /*kk***This code for change data when click to chooses stages***/
163c5adae   Palak Handa   minor changes
662
663
664
665
666
667
668
669
  	    $scope.proto = true;
  	    $scope.businessmodel = true;
  	    $scope.Idea = true;
  	    $scope.current = true;
  
  	    $scope.stage = function(stage) {
  	    $scope.stagekeyPress();
  	    console.log("stage--2",stage)
e847b36f8   Palak Handa   minor changes
670

163c5adae   Palak Handa   minor changes
671
  	        if (stage == 'Idea') {
e847b36f8   Palak Handa   minor changes
672
  	        	$scope.Productshow = "no";
163c5adae   Palak Handa   minor changes
673
674
  	            $scope.current = 10;
  	            $scope.proto = true;
629cc1f8f   Palak Handa   minor changes
675
  	            // $scope.visitType = true;
163c5adae   Palak Handa   minor changes
676
  	            $scope.prototyp = false;
713fd1603   Palak Handa   minor changes
677
  	            $scope.protyp = false;
163c5adae   Palak Handa   minor changes
678
679
680
681
682
683
684
685
686
687
688
  	            $scope.market = false;
  	            $scope.risks = false;
  	            $scope.team = false;
  	            $scope.pitch = false;
  	            $scope.financials = false;
  	            $scope.businessmodel = true;
  	            $scope.data.stage = stage;
  	            // for right content
  	            $scope.Idea = true;
  	            $scope.Product = false;
  	            $scope.Growth = false;
629cc1f8f   Palak Handa   minor changes
689
  	            // $scope.Visitor = false;
163c5adae   Palak Handa   minor changes
690
  	        } else if (stage == 'Product') {
e847b36f8   Palak Handa   minor changes
691
  	        	$scope.Productshow = "no";
163c5adae   Palak Handa   minor changes
692
693
  	            $scope.current = 10;
  	            $scope.proto = true;
629cc1f8f   Palak Handa   minor changes
694
  	            // $scope.visitType = true;
163c5adae   Palak Handa   minor changes
695
  	            $scope.prototyp = true;
713fd1603   Palak Handa   minor changes
696
  	            $scope.protyp = true;
163c5adae   Palak Handa   minor changes
697
698
699
700
701
702
703
704
705
706
707
  	            $scope.market = true;
  	            $scope.risks = true;
  	            $scope.team = true;
  	            $scope.pitch = true;
  	            $scope.financials = true;
  	            $scope.businessmodel = false;
  	            $scope.data.stage = stage;
  	            // for right content
  	            $scope.Idea = false;
  	            $scope.Product = true;
  	            $scope.Growth = false;
629cc1f8f   Palak Handa   minor changes
708
  	            // $scope.Visitor = false;
163c5adae   Palak Handa   minor changes
709
  	        } else if (stage == 'Growth') {
e847b36f8   Palak Handa   minor changes
710
  	        	$scope.Productshow = "yes";
163c5adae   Palak Handa   minor changes
711
712
  	            $scope.current = 10;
  	            $scope.proto = false;
629cc1f8f   Palak Handa   minor changes
713
  	            // $scope.visitType = true;
e847b36f8   Palak Handa   minor changes
714
715
  	            $scope.prototyp = true;
  	            $scope.protyp = false;
163c5adae   Palak Handa   minor changes
716
717
718
719
720
721
722
723
724
725
  	            $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;
629cc1f8f   Palak Handa   minor changes
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
  	            // $scope.Visitor = false;
  	        // } else if (stage == 'Visitor') {
  	        // 	$scope.Productshow = "no";
  	        //     $scope.current = 10;
  	        //     $scope.proto = false;
  	        //     $scope.visitType = false;
  	        //     $scope.prototyp = false;
  	        //     $scope.protyp = false;
  	        //     $scope.market = false;
  	        //     $scope.risks = false;
  	        //     $scope.team = false;
  	        //     $scope.pitch = false;
  	        //     $scope.financials = false;
  	        //     $scope.businessmodel = false;
  	        //     $scope.data.stage = stage;
  	        //     // for right content
  	        //     $scope.Idea = false;
  	        //     $scope.Product = false;
  	        //     $scope.Growth = false;
  	        //     $scope.Visitor = true;
163c5adae   Palak Handa   minor changes
746
747
  	            $scope.data.stage = stage;
  	        }
629cc1f8f   Palak Handa   minor changes
748

163c5adae   Palak Handa   minor changes
749
  	    }
e847b36f8   Palak Handa   minor changes
750
751
752
753
754
755
  
  	    $scope.emailTest = function(s){
      		$scope.space = /\s/g.test(s.delegateTarget.value);
      		console.log("space",$scope.space)
  
  		}	
c62079487   Palak Handa   updated design
756
757
758
759
  	    // $scope.enterbusiness = function(business) {
  	    //     console.log("business", business);
  	    //     if (name == undefined) {
  	    //         $scope.current = false;
2d6a9fbea   Palak Handa   complete bugs
760

c62079487   Palak Handa   updated design
761
762
763
764
  	    //     } else if (name != undefined) {
  	    //         $scope.current = true;
  	    //     }
  	    // }
6ae8d3cdd   Palak Handa   add new module
765
766
767
768
769
770
771
  	    /*******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)');
  	    }
163c5adae   Palak Handa   minor changes
772
  	    $scope.productLaunchkeyPress = function() {
6ae8d3cdd   Palak Handa   add new module
773
774
  	        $('.icon-circle-ab').css('background-color', 'rgb(66, 181, 73)');
  	    }
163c5adae   Palak Handa   minor changes
775
  	    $scope.launchPeriodkeyPress = function() {
c62079487   Palak Handa   updated design
776
777
778
779
  	        $('.icon-circle-abc').css('background-color', 'rgb(66, 181, 73)');
  	    }
  
  	    $scope.industrykeyPress = function() {
204302c02   Palak Handa   minor changes
780
781
  	    	$scope.addOther = false;
  			$scope.hideSelectBox = true;
c62079487   Palak Handa   updated design
782
  	        $('.icon-circle-abcdefg').css('background-color', 'rgb(66, 181, 73)');
4697da41f   Palak Handa   updated code
783
784
785
786
787
788
  	        var e = document.getElementById("dataIndustry");
  			var dataIndustry = e.options[e.selectedIndex].value;
  			if(dataIndustry == "others") {
  				$scope.addOther = true;
  				$scope.hideSelectBox = false;
  			}
c62079487   Palak Handa   updated design
789
  	    }
204302c02   Palak Handa   minor changes
790
791
792
793
794
795
796
797
  	    $scope.industryNamekeyPress = function(firstName) {
  	        console.log("lastName==", firstName);
  	        if (firstName == undefined) {
  	            $('.icon-circle-o').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
  	            $('.icon-circle-o').css('background-color', 'rgb(66, 181, 73)');
  	        }
  	    }
c62079487   Palak Handa   updated design
798
799
800
  	    $scope.amountkeyPress = function() {
  	        $('.icon-circle-bc').css('background-color', 'rgb(66, 181, 73)');
  	    }
2321f803a   Palak Handa   updated changes
801
802
803
  	    $scope.firstNamekeyPress = function(name) {
  	        console.log("lastName==", name);
  	        if (name == undefined) {
6ae8d3cdd   Palak Handa   add new module
804
805
806
807
808
  	            $('.icon-circle-c').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
  	            $('.icon-circle-c').css('background-color', 'rgb(66, 181, 73)');
  	        }
  	    }
dcb703070   Palak Handa   updated new form ...
809

6ae8d3cdd   Palak Handa   add new module
810
811
812
813
814
815
  	    $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)');
8ddc94e00   Palak Handa   update
816
  	        }	                
6ae8d3cdd   Palak Handa   add new module
817
  	    }
163c5adae   Palak Handa   minor changes
818
  	    $scope.textCheck = function(){
4697da41f   Palak Handa   updated code
819
  	    	console.log("Val1:::", $scope.textCheck);
163c5adae   Palak Handa   minor changes
820
821
  	    	var e = document.getElementById("fundingDiv");
  			var funding = e.options[e.selectedIndex].value;
204302c02   Palak Handa   minor changes
822
  			$scope.Textshow = "no";
163c5adae   Palak Handa   minor changes
823
  			if(funding == "yes") {
204302c02   Palak Handa   minor changes
824
  				$scope.Textshow = "yes";
163c5adae   Palak Handa   minor changes
825
826
827
  	    	 	console.log("Val:::", $scope.Textshow);
  			}
  	    	
c62079487   Palak Handa   updated design
828
  	    }
4697da41f   Palak Handa   updated code
829
830
831
832
833
834
835
836
837
838
839
  	    $scope.productCheck = function(){
  	    	console.log("Val2:::", $scope.productCheck);
  	    	var e = document.getElementById("productDiv");
  			var product = e.options[e.selectedIndex].value;
  			$scope.Productshow = "no";
  			if(product == "yes") {
  				$scope.Productshow = "yes";
  	    	 	console.log("Val1:::", $scope.Productshow);
  			}
  	    	
  	    }
6ae8d3cdd   Palak Handa   add new module
840
841
842
  
  	    $scope.phonekeyPress = function(number) {
  	        console.log("number", number);
204302c02   Palak Handa   minor changes
843
  	        if (number == undefined || number == '') {
6ae8d3cdd   Palak Handa   add new module
844
845
846
847
848
849
850
851
852
853
854
855
856
857
  	            $('.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)');
  	        }
  	    }
7e3bb1018   Palak Handa   field added
858
  	    $scope.startupNamekeyPress = function(q) {
6ae8d3cdd   Palak Handa   add new module
859
860
861
862
863
864
  	        if (q == undefined) {
  	            $('.icon-circle-x').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
  	            $('.icon-circle-x').css('background-color', 'rgb(66, 181, 73)');
  	        }
  	    }
dcb703070   Palak Handa   updated new form ...
865
  	    $scope.linkedInkeyPress = function(technology) {
204302c02   Palak Handa   minor changes
866
  	        if (technology == undefined || technology == '') {
6ae8d3cdd   Palak Handa   add new module
867
868
869
870
871
  	            $('.icon-circle-h').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
  	            $('.icon-circle-h').css('background-color', 'rgb(66, 181, 73)');
  	        }
  	    }
dcb703070   Palak Handa   updated new form ...
872
  	    $scope.companykeyPress = function(problem) {
6ae8d3cdd   Palak Handa   add new module
873
874
875
876
877
878
  	        if (problem == undefined) {
  	            $('.icon-circle-i').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
  	            $('.icon-circle-i').css('background-color', 'rgb(66, 181, 73)');
  	        }
  	    }
dcb703070   Palak Handa   updated new form ...
879
  	    $scope.productNamekeyPress = function(solution) {
6ae8d3cdd   Palak Handa   add new module
880
881
882
883
884
885
886
887
888
  	        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)');
  	    }
dcb703070   Palak Handa   updated new form ...
889
  	    $scope.websitekeyPress = function(prototype) {
204302c02   Palak Handa   minor changes
890
  	        if (prototype == undefined  || prototype == '') {
6ae8d3cdd   Palak Handa   add new module
891
892
893
894
895
  	            $('.icon-circle-k').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
  	            $('.icon-circle-k').css('background-color', 'rgb(66, 181, 73)');
  	        }
  	    }
dcb703070   Palak Handa   updated new form ...
896
  	    $scope.employeekeyPress = function(market) {
204302c02   Palak Handa   minor changes
897
  	        if (market == undefined || market == '') {
6ae8d3cdd   Palak Handa   add new module
898
899
900
901
902
  	            $('.icon-circle-l').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
  	            $('.icon-circle-l').css('background-color', 'rgb(66, 181, 73)');
  	        }
  	    }
dcb703070   Palak Handa   updated new form ...
903
  	    $scope.annualkeyPress = function(risk) {
204302c02   Palak Handa   minor changes
904
  	        if (risk == undefined || risk == '') {
6ae8d3cdd   Palak Handa   add new module
905
906
907
908
909
  	            $('.icon-circle-m').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
  	            $('.icon-circle-m').css('background-color', 'rgb(66, 181, 73)');
  	        }
  	    }
dcb703070   Palak Handa   updated new form ...
910
  	    $scope.revenuekeyPress = function(team) {
204302c02   Palak Handa   minor changes
911
  	        if (team == undefined || team == '') {
6ae8d3cdd   Palak Handa   add new module
912
913
914
915
916
  	            $('.icon-circle-n').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
  	            $('.icon-circle-n').css('background-color', 'rgb(66, 181, 73)');
  	        }
  	    }
dcb703070   Palak Handa   updated new form ...
917
  	    $scope.descriptionkeyPress = function(pitch) {
6ae8d3cdd   Palak Handa   add new module
918
919
920
921
922
923
  	        if (pitch == undefined) {
  	            $('.icon-circle-z').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
  	            $('.icon-circle-z').css('background-color', 'rgb(66, 181, 73)');
  	        }
  	    }
e284785e4   Palak Handa   update new field
924
925
926
927
928
929
930
931
  	    $scope.discountkeyPress = function(discount) {
  	        console.log("lastName==", name);
  	        if (discount == undefined) {
  	            $('.icon-circle-o').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
  	            $('.icon-circle-o').css('background-color', 'rgb(66, 181, 73)');
  	        }
  	    }
91eeb4455   Palak Handa   modify
932
933
934
935
  	    $scope.removeNooError = function() {
  	    	$('#invalidIdea').css('display', 'block');
  	        $('#noExist').css('display', 'none');
  	    };
c62079487   Palak Handa   updated design
936
  	    $scope.ideakeyPress = function(financial) {
6ae8d3cdd   Palak Handa   add new module
937
938
  	        console.log("financial", financial);
  	        if (financial == undefined) {
91eeb4455   Palak Handa   modify
939
  	        	$('#invalidIdea').css('display', 'block');
6ae8d3cdd   Palak Handa   add new module
940
941
  	            $('.icon-circle-q').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
91eeb4455   Palak Handa   modify
942
  	        	$('#invalidIdea').css('display', 'none');
6ae8d3cdd   Palak Handa   add new module
943
944
945
  	            $('.icon-circle-q').css('background-color', 'rgb(66, 181, 73)');
  	        }
  	    }
c62079487   Palak Handa   updated design
946
947
948
949
950
951
952
953
954
  
  	    $scope.fundkeyPress = function(financial) {
  	        console.log("financial", financial);
  	        if (financial == undefined) {
  	            $('.icon-circle-y').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
  	            $('.icon-circle-y').css('background-color', 'rgb(66, 181, 73)');
  	        }
  	    }
2d6a9fbea   Palak Handa   complete bugs
955
956
957
958
959
960
961
  	    $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
962

53b83aa9e   Palak Handa   first commit
963
  	});
8ecb55ed6   Palak Handa   update
964
  	scotchApp.controller('verifyController', function($scope, $http, $location, $route, BASE_URL, Analytics) {
be44091b5   Palak Handa   update
965
  	    
d8feb0ddb   Palak Handa   design updated
966
  	    $scope.pendingPaymentId = $route.current.params.id
6ae8d3cdd   Palak Handa   add new module
967
968
969
970
971
972
  	    $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
973
974
  	        $scope.pendingPaymentId = $route.current.params.id;
  	        
6ae8d3cdd   Palak Handa   add new module
975
976
977
978
979
980
  	        $http({
  	            method: "GET",
  	            url: BASE_URL + '/payments?filter={"where":{"applicantId":' + $scope.pendingPaymentId + '}}',
  	        }).then(function mySuccess(response) {
  	            $scope.paymentRecord = response.data;
  	        }, function myError(response) {
be44091b5   Palak Handa   update
981
  	        	console.log("response-2", response);
6ae8d3cdd   Palak Handa   add new module
982
983
984
985
986
987
988
  	        });
  	    }, function myError(response) {
  	        $scope.myWelcome = response.statusText;
  	    });
  
  	    $scope.checkView = false;
  	    $scope.verifyView = false;
be44091b5   Palak Handa   update
989
  	    $scope.searchResult = {}
6ae8d3cdd   Palak Handa   add new module
990
  	    $scope.pendingPaymentId = '';
6ae8d3cdd   Palak Handa   add new module
991
992
993
994
995
  	    $scope.update = function() {
  
  	        $http({
  	            method: 'GET',
  	            url: BASE_URL + '/payments?filter={"where":{"applicantId": ' + $scope.pendingPaymentId + '}}',
6ae8d3cdd   Palak Handa   add new module
996
997
  	            headers: {}
  	        }).then(function mySuccess(searchResult) {
c556cc81b   Palak Handa   minor changes
998
999
  	            if (searchResult.data[0].status == "created") {
  	            //if (searchResult.data[0].status == "cancelled") {
6ae8d3cdd   Palak Handa   add new module
1000
1001
  	                $scope.checkView = true;
  	                $scope.verifyView = false;
ced66f2dc   Palak Handa   minor changes
1002
1003
1004
1005
  	                $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
1006
  	                var i = 0;
ced66f2dc   Palak Handa   minor changes
1007
  	                $scope.amount =  $scope.amount * 100;
6ae8d3cdd   Palak Handa   add new module
1008
  	                var options = {
f2142e490   Palak Handa   rajorpay key updated
1009
1010
  	                    "key": "rzp_live_mhSE1uOBlXvFyJ",
  	                    //"key" : "rzp_test_YwHsVFiDIQ2WUQ",
6ae8d3cdd   Palak Handa   add new module
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
  	                    "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
1032
  	                function createPayment(response) {
ced66f2dc   Palak Handa   minor changes
1033
  	                	console.log("response======retepaymen",response);
be44091b5   Palak Handa   update
1034
1035
  	                	$scope.amount =  $scope.amount/100;
  	                	
6ae8d3cdd   Palak Handa   add new module
1036
  	                    $scope.paymentResponse.razorPaymentId = response.razorpay_payment_id;
ced66f2dc   Palak Handa   minor changes
1037
  	                    $scope.paymentResponse.razorOrderId = $scope.searchResult.razorOrderId;
6ae8d3cdd   Palak Handa   add new module
1038
  	                    $scope.paymentResponse.amount = $scope.amount;
ced66f2dc   Palak Handa   minor changes
1039
1040
1041
  	                    $scope.paymentResponse.currency = $scope.searchResult.currency;
  	                    $scope.paymentResponse.status = $scope.searchResult.status;
  	                    $scope.paymentResponse.applicantId = $scope.searchResult.applicantId;
6ae8d3cdd   Palak Handa   add new module
1042
1043
1044
  	                    console.log("$scope.paymentResponse", $scope.paymentResponse)
  	                    $http({
  	                        method: 'PUT',
ced66f2dc   Palak Handa   minor changes
1045
  	                        url: BASE_URL + '/payments/' + $scope.searchResult.id,
6ae8d3cdd   Palak Handa   add new module
1046
1047
1048
  	                        data: $scope.paymentResponse,
  	                        headers: {}
  	                    }).then(function mySuccess(searchResult) {
9babf5dba   Palak Handa   update
1049
  	                    	console.log("searchResult--->",searchResult)
f6d172552   Palak Handa   analytics apply
1050
  	                    	// if(paymentResult.data.status == "created"){
9babf5dba   Palak Handa   update
1051
  		                    	// Analytics.trackEvent('payments', 'click', 'Thankyou');
f6d172552   Palak Handa   analytics apply
1052
  		                    // }
8e25d825b   Palak Handa   changes the rajor...
1053
  	                    	console.log("finalsearchResult",searchResult)
ced66f2dc   Palak Handa   minor changes
1054
  	                    	$location.path("/confirmation")
8ecb55ed6   Palak Handa   update
1055
  	                		Analytics.trackEvent('payment','Successfully Done',$scope.data.email,$scope.paymentResponse.amount);
6ae8d3cdd   Palak Handa   add new module
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
  	                    }, function myError(error) {
  
  	                    });
  	                }
  	            } else {
  
  	            }
  
  	        }, function myError(error) {});
  	    }
  	});
53b83aa9e   Palak Handa   first commit
1067

2d6a9fbea   Palak Handa   complete bugs
1068
  	scotchApp.controller('ambassadorController', function($scope, $http, $location, $route,BASE_URL) {
6ae8d3cdd   Palak Handa   add new module
1069
  		$scope.data = {};
8e25d825b   Palak Handa   changes the rajor...
1070
1071
  		$scope.check = false;
  	    $scope.numberCheck = false;
5348de778   Palak Handa   design updated
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
  	    /*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() {
e847b36f8   Palak Handa   minor changes
1089
  	    	console.log("doooo")
5348de778   Palak Handa   design updated
1090
1091
1092
  	        $('#invalidEmail').css('display', 'none');
  	        $('#alreadyExist').css('display', 'none');
  	    };
b678502c9   Palak Handa   update
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
  		// $scope.emailcheck = function(val) {
  		// 	consol.log("kdsbd")
  		// 	$scope.space = /\s/g.test(val);
    //   		console.log("space",$scope.space)
  	 //        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) {});
  	 //        }
  	 //    };
  
  	 //    $scope.removeNoError = function() {
  	 //    	$('#invalidNumber').css('display', 'none');
  	 //        $('#noExist').css('display', 'none');
  	 //    };
  
  	 //    $scope.numbercheck = function(number) {
  	 //    	// 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...
1142

6ae8d3cdd   Palak Handa   add new module
1143
1144
1145
1146
1147
1148
1149
  		$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
1150

6ae8d3cdd   Palak Handa   add new module
1151
1152
1153
1154
1155
1156
1157
1158
  	         $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
1159
1160
1161
1162
  	                $('#myModal').modal('show');
  	              	 $scope.data.name = '';
  	                $scope.data.email = '';
  	                $scope.data.mobile = '';
18f937f88   Palak Handa   update
1163
  	                // $scope.data.discount = '';
2d6a9fbea   Palak Handa   complete bugs
1164
  	            
6db0109b5   Palak Handa   minor changes
1165
1166
1167
1168
  	            }, function myError(error) {
  	            	console.log(error)
  	            	console.log(error.data.error.message)
  	            });
2d6a9fbea   Palak Handa   complete bugs
1169
  	        console.log($scope.data)
6ae8d3cdd   Palak Handa   add new module
1170
1171
  	        }
  	});
53b83aa9e   Palak Handa   first commit
1172

96991e0c1   Palak Handa   update
1173