Blame view

script.js 39.6 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
  
  	// configure our routes
0d7cf45ec   Palak Handa   timer use
5
  	scotchApp.config(function($routeProvider,$locationProvider) {
8586ba494   Palak Handa   html5 mode
6

8586ba494   Palak Handa   html5 mode
7
  		// use the HTML5 History API
6a702f93c   apple   country & citynam...
8
9
10
11
          // $locationProvider.html5Mode({
          // 	enabled: true,
          // 	requireBase: false
          // });
3c4db43f3   apple   design new form
12
         	//$locationProvider.hashPrefix('!');
6ae8d3cdd   Palak Handa   add new module
13
  	    $routeProvider
dcb703070   Palak Handa   updated new form ...
14
  	    	// route for the Home page
6ae8d3cdd   Palak Handa   add new module
15
  	        .when('/', {
dcb703070   Palak Handa   updated new form ...
16
17
18
  	            templateUrl: 'pages/Home.html',
  	            controller: 'mainController'
  	        })
b96c88383   Palak Handa   amount change
19
  	        // route for the caricatures page
e856f2161   Palak Handa   new page design
20
  	        .when('/caricatures', {
b96c88383   Palak Handa   amount change
21
  	            templateUrl: 'pages/caricatures.html',
6ae8d3cdd   Palak Handa   add new module
22
23
  	            controller: 'mainController'
  	        })
857ebc69e   Palak Handa   timer add
24
25
26
27
28
  	        // route for the paymentVerify page
  	        .when('/pendingPayment/:id', {
  	            templateUrl: 'pages/verify.html',
  	            controller: 'verifyController'
  	        })
6ae8d3cdd   Palak Handa   add new module
29

b96c88383   Palak Handa   amount change
30
  	        // route for the registration page
5734bf6dc   apple   design change
31
  	        .when('/registration', {
b96c88383   Palak Handa   amount change
32
33
34
  	            templateUrl: 'pages/registration.html',
  	            controller: 'registrationController'
  	        })
8586ba494   Palak Handa   html5 mode
35
  	        //route for the ambassador page
f19bac9a9   Shilpi Saini   integrate coupon ...
36
37
38
39
  	        .when('/startupJalsaPromocode', {
  	            templateUrl: 'pages/ambassador.html',
  	            controller: 'ambassadorController'
  	        })
5348de778   Palak Handa   design updated
40
41
42
43
  
  	        // route for the confirmation page
  	        .when('/confirmation', {
  	            templateUrl: 'pages/confirmation.html',
1ef0fae04   apple   confirmation page...
44
  	            controller: 'confirmationController'
845d2e17f   apple   add new file & ra...
45
46
47
48
49
50
  			})
  			
  			// route for the confirmation page
  	        .when('/confirm', {
  	            templateUrl: 'pages/confirm.html',
  	            controller: 'confirmationController'
5348de778   Palak Handa   design updated
51
  	        })
3c4db43f3   apple   design new form
52
53
54
  	        .otherwise({ 
  	        	redirectTo: '/' 
  	        });
8586ba494   Palak Handa   html5 mode
55

6ae8d3cdd   Palak Handa   add new module
56
  	});
53b83aa9e   Palak Handa   first commit
57

f263889f0   Palak Handa   analytics work
58
59
  	scotchApp.config(['AnalyticsProvider', function (AnalyticsProvider) {
  	   	// Add configuration code as desired
61b69ada0   Palak Handa   design updated
60
  	   	 AnalyticsProvider.setAccount('UA-106416759-1');  //UU-XXXXXXX-X should be your tracking code
f263889f0   Palak Handa   analytics work
61
62
63
64
65
66
67
68
  
  	   	// Track all routes (default is true).
  	  	AnalyticsProvider.trackPages(true);
  
  	  	// Track all URL query params (default is false).
  	  	AnalyticsProvider.trackUrlParams(true);
  
  	}]).run(['Analytics', function(Analytics) { }]);
124f7528f   Palak Handa   minor change
69
70
  	scotchApp.constant("BASE_URL", "http://35.154.24.158:4001/v1")
  	//scotchApp.constant("BASE_URL", "http://0.0.0.0:4001/v1")
6ae8d3cdd   Palak Handa   add new module
71

ce1c575fe   apple   validation on upl...
72
73
74
75
76
77
78
79
80
81
82
83
84
85
  	scotchApp.directive('validFile',function(){
  		return {
  		  require:'ngModel',
  		  link:function(scope,el,attrs,ngModel){
  			//change event is fired when file is selected
  			el.bind('change',function(){
  			  scope.$apply(function(){
  				ngModel.$setViewValue(el.val());
  				ngModel.$render();
  			  })
  			})
  		  }
  		}
  	  })
2d6a9fbea   Palak Handa   complete bugs
86
  	// create the controller and inject Angular's $scope
857ebc69e   Palak Handa   timer add
87
  	scotchApp.controller('mainController', function($scope, $http, $window, $location, $route, $rootScope, BASE_URL, Analytics) {
6ae8d3cdd   Palak Handa   add new module
88
89
90
  	    $scope.data = {
  	        show: true,
  	        hide: false
5734bf6dc   apple   design change
91
  		};
466bf74a5   apple   minor change
92
93
94
95
96
97
98
  		jQuery('#defaultcountry').addClass('btn-active')
  		// window.onload = function(){
  		// 	// var element = document.getElementById("defaultcountry");
  		// 	//    element.classList.add("btn-active");
  		// 	   jQuery('#defaultcountry').addClass('btn-active')
  		// 	   //document.getElementById("ahmedabad").src = "images/Ahmedabad_1.png";
  		// }
6ae8d3cdd   Palak Handa   add new module
99

0d7cf45ec   Palak Handa   timer use
100
  		var chennai = new Date("Sept 19, 2018 12:00:00").getTime();
e3d25d261   Palak Handa   delete url
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
  		// 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 = chennai - 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("chennai").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("chennai").innerHTML = "EXPIRED";
  		    }
  		}, 1000);
857ebc69e   Palak Handa   timer add
123
  		var hyderabad = new Date("Sept 22, 2018 14:00:00").getTime();
e3d25d261   Palak Handa   delete url
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
  		// 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 = hyderabad - 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("hyderabad").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("hyderabad").innerHTML = "EXPIRED";
  		    }
  		}, 1000);
857ebc69e   Palak Handa   timer add
146
  		var mumbai = new Date("Sept 26, 2018 14:00:00").getTime();
e3d25d261   Palak Handa   delete url
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
  		// 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);
50e8f0737   Palak Handa   minor change
169

857ebc69e   Palak Handa   timer add
170
  		var kolkata = new Date("Oct 3, 2018 14:00:00").getTime();
e3d25d261   Palak Handa   delete url
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
  		// 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 = kolkata - 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("kolkata").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("kolkata").innerHTML = "EXPIRED";
  		    }
  		}, 1000);
50e8f0737   Palak Handa   minor change
193

857ebc69e   Palak Handa   timer add
194
  		var jaipur = new Date("Oct 5, 2018 14:00:00").getTime();
e3d25d261   Palak Handa   delete url
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
  		// 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);
50e8f0737   Palak Handa   minor change
217

857ebc69e   Palak Handa   timer add
218
  		var delhi = new Date("Oct 8, 2018 14:00:00").getTime();
e3d25d261   Palak Handa   delete url
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
  		// 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 = delhi - 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("delhi").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("delhi").innerHTML = "EXPIRED";
  		    }
  		}, 1000);
50e8f0737   Palak Handa   minor change
241

857ebc69e   Palak Handa   timer add
242
  		var kanpur = new Date("Oct 10, 2018 14:00:00").getTime();
e3d25d261   Palak Handa   delete url
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 = kanpur - 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("kanpur").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("kanpur").innerHTML = "EXPIRED";
  		    }
  		}, 1000);
50e8f0737   Palak Handa   minor change
265

857ebc69e   Palak Handa   timer add
266
  		var ahmedabad = new Date("Oct 12, 2018 14:00:00").getTime();
e3d25d261   Palak Handa   delete url
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
  		// 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);
50e8f0737   Palak Handa   minor change
289

857ebc69e   Palak Handa   timer add
290
  		var bengaluru = new Date("Oct 13, 2018 14:00:00").getTime();
e3d25d261   Palak Handa   delete url
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
  		// 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 = bengaluru - 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("bengaluru").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("bengaluru").innerHTML = "EXPIRED";
  		    }
  		}, 1000);
50e8f0737   Palak Handa   minor change
313

857ebc69e   Palak Handa   timer add
314
  		var dharamsala = new Date("Dec 14, 2018 14:00:00").getTime();
e3d25d261   Palak Handa   delete url
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
  		// 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 = dharamsala - 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("dharamsala").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("dharamsala").innerHTML = "EXPIRED";
  		    }
  		}, 1000);
50e8f0737   Palak Handa   minor change
337

6ae8d3cdd   Palak Handa   add new module
338
  	    $scope.infoForm = false; /*THIS CODE FOR HIDE STEP 2 FORM*/
e847b36f8   Palak Handa   minor changes
339
  	    $scope.space = false; /*THIS CODE FOR HIDE STEP 2 FORM*/
c62079487   Palak Handa   updated design
340
  	    // $scope.Textshow = "yes"
6ae8d3cdd   Palak Handa   add new module
341
  	    $scope.max = 100;
88dd26b3d   Palak Handa   update
342
  	    $scope.formPage = false;
6ae8d3cdd   Palak Handa   add new module
343
344
  	    $scope.current = 0;
  	    $scope.payingAmnt = 0;
6ae8d3cdd   Palak Handa   add new module
345
  	    $scope.data = {};
ea3c31126   Palak Handa   complete
346
  	    $scope.discountAmount = 0;
7b2bef227   Palak Handa   background image ...
347
  	    // $scope.data.quantity = "1";
6ae8d3cdd   Palak Handa   add new module
348
349
  	    $scope.check = false;
  	    $scope.numberCheck = false;
6ae8d3cdd   Palak Handa   add new module
350
  	    $scope.paymentResult = {};
6ae8d3cdd   Palak Handa   add new module
351
352
353
354
  	    var data = {
  	        "amount": $scope.payingAmnt,
  	        "currency": "INR",
  	        "status": "pending"
dcb703070   Palak Handa   updated new form ...
355
  		}
5734bf6dc   apple   design change
356
357
358
359
360
  		
  		$scope.showval = true;
  		$scope.hideval = false;
  		$scope.showvalue = false;
  		$scope.hidevalue = false;
e02529223   apple   minor change
361
  		localStorage.setItem("country",'INDIA');
5734bf6dc   apple   design change
362
  		$scope.isShowHide = function (value) {
e02529223   apple   minor change
363
  			console.log('--0-00-',value);
1b31b20bf   apple   auto highlighted ...
364
365
  			var element = document.getElementById("defaultcountry");
  			element.classList.remove("btn-active");
845d2e17f   apple   add new file & ra...
366
  			localStorage.setItem("country",value);
5734bf6dc   apple   design change
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
  			if (value == "INDIA") {
  				console.log("value",value)
  				$scope.showval = true;
  				$scope.hideval = false;
  				$scope.showvalue = false;
  				$scope.hidevalue = false;
  			}
  			else if (value == "SRI LANKA") {
  				console.log("value1",value)
  				$scope.showval = false;
  				$scope.hideval = true;
  				$scope.showvalue = false;
  				$scope.hidevalue = false;
  			}
  			else if (value == "BANGLADESH") {
  				console.log("value2",value)
  				$scope.showval = false;
  				$scope.hideval = false;
  				$scope.showvalue = true;
  				$scope.hidevalue = false;
  			}
  			else {
  				console.log("value3",value)
  				$scope.showval = false;
  				$scope.hideval = false;
  				$scope.showvalue = false;
  				$scope.hidevalue = true;
  			}
  		}
fe142256c   apple   information page ...
396
397
398
  	    $scope.apply = function() {
  	    	//Analytics.trackEvent('register', 'click', 'Registration');
  			$location.path("/caricatures")
466bf74a5   apple   minor change
399
  			
fe142256c   apple   information page ...
400
  		}
629cc1f8f   Palak Handa   minor changes
401

3c4db43f3   apple   design new form
402
  	    // $scope.data.city = '';
7b017db1c   apple   add city field
403
  	    $scope.watch =  function(value){
e02529223   apple   minor change
404
  			console.log("====",value);
a006f2b11   apple   name changes
405
  			//document.getElementById("ahmedabad").src = "";
3c4db43f3   apple   design new form
406
  	    	// console.log("cllll",value)
7b017db1c   apple   add city field
407
  	    	$scope.data.city = value;
857ebc69e   Palak Handa   timer add
408
409
410
411
  	    	// if($scope.data.city == "Chennai"){
  	    	// 	console.log("cllll1",value)
  	    	// 	$window.location.href = 'http://35.154.24.158:8007';
  	    	// }else{
3c4db43f3   apple   design new form
412
  	    		// console.log("cllll2",value)
845d2e17f   apple   add new file & ra...
413
  				localStorage.setItem("city" ,value);
857ebc69e   Palak Handa   timer add
414
  		    	//$location.path('/registration').search({city: value});
5734bf6dc   apple   design change
415
416
  				// $location.path('/registration/'+value+'');
  				$location.path('/registration');
857ebc69e   Palak Handa   timer add
417
418
  		    	//$state.go('registration', { 'city': value})
  	    	// }
163c5adae   Palak Handa   minor changes
419
  	    }
e847b36f8   Palak Handa   minor changes
420

6a9f1f41e   Palak Handa   add left side but...
421
422
423
424
  	    $scope.select =  function(url){
  	    	console.log("cllll")
  	    	window.open(url)
  	    }
6ae8d3cdd   Palak Handa   add new module
425
  	    $scope.stagekeyPress = function() {
f8b43c6f8   Palak Handa   design changes
426
  	        $('.icon-circle-a').css('background-color', 'rgb(25, 104, 157)');
6ae8d3cdd   Palak Handa   add new module
427
428
  	    }
  	    $scope.sectorkeyPress = function() {
f8b43c6f8   Palak Handa   design changes
429
  	        $('.icon-circle-b').css('background-color', 'rgb(25, 104, 157)');
6ae8d3cdd   Palak Handa   add new module
430
  	    }
163c5adae   Palak Handa   minor changes
431
  	    $scope.productLaunchkeyPress = function() {
f8b43c6f8   Palak Handa   design changes
432
  	        $('.icon-circle-ab').css('background-color', 'rgb(25, 104, 157)');
6ae8d3cdd   Palak Handa   add new module
433
  	    }
163c5adae   Palak Handa   minor changes
434
  	    $scope.launchPeriodkeyPress = function() {
f8b43c6f8   Palak Handa   design changes
435
  	        $('.icon-circle-abc').css('background-color', 'rgb(25, 104, 157)');
c62079487   Palak Handa   updated design
436
  	    }
7b2bef227   Palak Handa   background image ...
437
438
  	    $scope.industrykeyPress = function(quantity) {
  	    	console.log("fghj",quantity)
f8b43c6f8   Palak Handa   design changes
439
  	    	$('.icon-circle-abcdefg').css('background-color', 'rgb(25, 104, 157)');
c62079487   Palak Handa   updated design
440
  	    }
204302c02   Palak Handa   minor changes
441
442
443
444
445
  	    $scope.industryNamekeyPress = function(firstName) {
  	        console.log("lastName==", firstName);
  	        if (firstName == undefined) {
  	            $('.icon-circle-o').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
f8b43c6f8   Palak Handa   design changes
446
  	            $('.icon-circle-o').css('background-color', 'rgb(25, 104, 157)');
204302c02   Palak Handa   minor changes
447
448
  	        }
  	    }
c62079487   Palak Handa   updated design
449
  	    $scope.amountkeyPress = function() {
f8b43c6f8   Palak Handa   design changes
450
  	        $('.icon-circle-bc').css('background-color', 'rgb(25, 104, 157)');
c62079487   Palak Handa   updated design
451
  	    }
2321f803a   Palak Handa   updated changes
452
453
454
  	    $scope.firstNamekeyPress = function(name) {
  	        console.log("lastName==", name);
  	        if (name == undefined) {
6ae8d3cdd   Palak Handa   add new module
455
456
  	            $('.icon-circle-c').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
f8b43c6f8   Palak Handa   design changes
457
  	            $('.icon-circle-c').css('background-color', 'rgb(25, 104, 157)');
6ae8d3cdd   Palak Handa   add new module
458
459
  	        }
  	    }
dcb703070   Palak Handa   updated new form ...
460

6ae8d3cdd   Palak Handa   add new module
461
462
463
464
465
  	    $scope.emailkeyPress = function(email) {
  	        console.log("email", email);
  	        if (email == undefined) {
  	            $('.icon-circle-d').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
f8b43c6f8   Palak Handa   design changes
466
  	            $('.icon-circle-d').css('background-color', 'rgb(25, 104, 157)');
8ddc94e00   Palak Handa   update
467
  	        }	                
6ae8d3cdd   Palak Handa   add new module
468
  	    }
6ae8d3cdd   Palak Handa   add new module
469
470
  	    $scope.phonekeyPress = function(number) {
  	        console.log("number", number);
204302c02   Palak Handa   minor changes
471
  	        if (number == undefined || number == '') {
6ae8d3cdd   Palak Handa   add new module
472
473
  	            $('.icon-circle-e').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
f8b43c6f8   Palak Handa   design changes
474
  	            $('.icon-circle-e').css('background-color', 'rgb(25, 104, 157)');
6ae8d3cdd   Palak Handa   add new module
475
476
477
478
479
480
481
482
  	        }
  	    }
  
  	    $scope.citykeyPress = function(city) {
  	        console.log("city", city);
  	        if (city == undefined) {
  	            $('.icon-circle-f').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
f8b43c6f8   Palak Handa   design changes
483
  	            $('.icon-circle-f').css('background-color', 'rgb(25, 104, 157)');
6ae8d3cdd   Palak Handa   add new module
484
485
  	        }
  	    }
7e3bb1018   Palak Handa   field added
486
  	    $scope.startupNamekeyPress = function(q) {
6ae8d3cdd   Palak Handa   add new module
487
488
489
  	        if (q == undefined) {
  	            $('.icon-circle-x').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
f8b43c6f8   Palak Handa   design changes
490
  	            $('.icon-circle-x').css('background-color', 'rgb(25, 104, 157)');
6ae8d3cdd   Palak Handa   add new module
491
492
  	        }
  	    }
dcb703070   Palak Handa   updated new form ...
493
  	    $scope.linkedInkeyPress = function(technology) {
204302c02   Palak Handa   minor changes
494
  	        if (technology == undefined || technology == '') {
6ae8d3cdd   Palak Handa   add new module
495
496
  	            $('.icon-circle-h').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
f8b43c6f8   Palak Handa   design changes
497
  	            $('.icon-circle-h').css('background-color', 'rgb(25, 104, 157)');
6ae8d3cdd   Palak Handa   add new module
498
499
  	        }
  	    }
dcb703070   Palak Handa   updated new form ...
500
  	    $scope.companykeyPress = function(problem) {
6ae8d3cdd   Palak Handa   add new module
501
502
503
  	        if (problem == undefined) {
  	            $('.icon-circle-i').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
f8b43c6f8   Palak Handa   design changes
504
  	            $('.icon-circle-i').css('background-color', 'rgb(25, 104, 157)');
6ae8d3cdd   Palak Handa   add new module
505
506
  	        }
  	    }
dcb703070   Palak Handa   updated new form ...
507
  	    $scope.productNamekeyPress = function(solution) {
6ae8d3cdd   Palak Handa   add new module
508
509
510
  	        if (solution == undefined) {
  	            $('.icon-circle-j').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
f8b43c6f8   Palak Handa   design changes
511
  	            $('.icon-circle-j').css('background-color', 'rgb(25, 104, 157)');
6ae8d3cdd   Palak Handa   add new module
512
513
514
  	        }
  	    }
  	    $scope.businesskeyPress = function(business) {
58efec61e   Palak Handa   color change
515
516
517
518
519
  	    	if (business == undefined) {
  	        	$('.icon-circle-p').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
  	            $('.icon-circle-p').css('background-color', 'rgb(25, 104, 157)');
  	        }
6ae8d3cdd   Palak Handa   add new module
520
  	    }
dcb703070   Palak Handa   updated new form ...
521
  	    $scope.websitekeyPress = function(prototype) {
204302c02   Palak Handa   minor changes
522
  	        if (prototype == undefined  || prototype == '') {
6ae8d3cdd   Palak Handa   add new module
523
524
  	            $('.icon-circle-k').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
f8b43c6f8   Palak Handa   design changes
525
  	            $('.icon-circle-k').css('background-color', 'rgb(25, 104, 157)');
6ae8d3cdd   Palak Handa   add new module
526
527
  	        }
  	    }
dcb703070   Palak Handa   updated new form ...
528
  	    $scope.employeekeyPress = function(market) {
204302c02   Palak Handa   minor changes
529
  	        if (market == undefined || market == '') {
6ae8d3cdd   Palak Handa   add new module
530
531
  	            $('.icon-circle-l').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
f8b43c6f8   Palak Handa   design changes
532
  	            $('.icon-circle-l').css('background-color', 'rgb(25, 104, 157)');
6ae8d3cdd   Palak Handa   add new module
533
534
  	        }
  	    }
dcb703070   Palak Handa   updated new form ...
535
  	    $scope.annualkeyPress = function(risk) {
204302c02   Palak Handa   minor changes
536
  	        if (risk == undefined || risk == '') {
6ae8d3cdd   Palak Handa   add new module
537
538
  	            $('.icon-circle-m').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
f8b43c6f8   Palak Handa   design changes
539
  	            $('.icon-circle-m').css('background-color', 'rgb(25, 104, 157)');
6ae8d3cdd   Palak Handa   add new module
540
541
  	        }
  	    }
dcb703070   Palak Handa   updated new form ...
542
  	    $scope.revenuekeyPress = function(team) {
81526b56d   Palak Handa   minor change
543
  	        if (team == undefined) {
6ae8d3cdd   Palak Handa   add new module
544
545
  	            $('.icon-circle-n').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
f8b43c6f8   Palak Handa   design changes
546
  	            $('.icon-circle-n').css('background-color', 'rgb(25, 104, 157)');
6ae8d3cdd   Palak Handa   add new module
547
548
  	        }
  	    }
dcb703070   Palak Handa   updated new form ...
549
  	    $scope.descriptionkeyPress = function(pitch) {
6ae8d3cdd   Palak Handa   add new module
550
551
552
  	        if (pitch == undefined) {
  	            $('.icon-circle-z').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
f8b43c6f8   Palak Handa   design changes
553
  	            $('.icon-circle-z').css('background-color', 'rgb(25, 104, 157)');
6ae8d3cdd   Palak Handa   add new module
554
555
  	        }
  	    }
e284785e4   Palak Handa   update new field
556
  	    $scope.discountkeyPress = function(discount) {
e284785e4   Palak Handa   update new field
557
558
559
  	        if (discount == undefined) {
  	            $('.icon-circle-o').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
f8b43c6f8   Palak Handa   design changes
560
  	            $('.icon-circle-o').css('background-color', 'rgb(25, 104, 157)');
e284785e4   Palak Handa   update new field
561
562
  	        }
  	    }
91eeb4455   Palak Handa   modify
563
564
565
566
  	    $scope.removeNooError = function() {
  	    	$('#invalidIdea').css('display', 'block');
  	        $('#noExist').css('display', 'none');
  	    };
c62079487   Palak Handa   updated design
567
  	    $scope.ideakeyPress = function(financial) {
6ae8d3cdd   Palak Handa   add new module
568
569
570
571
  	        console.log("financial", financial);
  	        if (financial == undefined) {
  	            $('.icon-circle-q').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
f8b43c6f8   Palak Handa   design changes
572
  	            $('.icon-circle-q').css('background-color', 'rgb(25, 104, 157)');
6ae8d3cdd   Palak Handa   add new module
573
574
  	        }
  	    }
c62079487   Palak Handa   updated design
575
576
577
578
579
580
  
  	    $scope.fundkeyPress = function(financial) {
  	        console.log("financial", financial);
  	        if (financial == undefined) {
  	            $('.icon-circle-y').css('background-color', 'rgb(102, 102, 102)');
  	        } else {
f8b43c6f8   Palak Handa   design changes
581
  	            $('.icon-circle-y').css('background-color', 'rgb(25, 104, 157)');
c62079487   Palak Handa   updated design
582
583
  	        }
  	    }
2d6a9fbea   Palak Handa   complete bugs
584
585
586
587
  	    $scope.changeReferalIconColor = function(referalToken){
  	    	if (referalToken == undefined || referalToken == '') {
  	    		$('.referel-icon').css('background-color', 'rgb(102, 102, 102)');
  	    	}else {
f8b43c6f8   Palak Handa   design changes
588
  	            $('.referel-icon').css('background-color', 'rgb(25, 104, 157)');
2d6a9fbea   Palak Handa   complete bugs
589
590
  	        }
  	    }
6ae8d3cdd   Palak Handa   add new module
591

53b83aa9e   Palak Handa   first commit
592
  	});
1b31b20bf   apple   auto highlighted ...
593
  	scotchApp.controller('registrationController', function($q, $scope, $http, $location, $rootScope,$route,BASE_URL) {
6ae8d3cdd   Palak Handa   add new module
594
  		$scope.data = {};
8e25d825b   Palak Handa   changes the rajor...
595
596
  		$scope.check = false;
  	    $scope.numberCheck = false;
e856f2161   Palak Handa   new page design
597
598
  	    $scope.infoForm = false; /*THIS CODE FOR HIDE STEP 2 FORM*/
  	    $scope.space = false; /*THIS CODE FOR HIDE STEP 2 FORM*/
e856f2161   Palak Handa   new page design
599
600
601
602
  	    $scope.max = 100;
  	    $scope.formPage = false;
  	    $scope.current = 0;
  	    $scope.payingAmnt = 0;
19a2e7b14   apple   payment integrate
603
604
605
  		$scope.discountAmount = 0;
  		$scope.approvedMsg = false;
  		$scope.disApprovedMsg = false;
e856f2161   Palak Handa   new page design
606
607
608
609
  	    // $scope.data.quantity = "1";
  	    $scope.check = false;
  	    $scope.numberCheck = false;
  	    $scope.paymentResult = {};
1ef0fae04   apple   confirmation page...
610
611
612
613
614
615
616
617
618
619
  		// var myParam =  window.location.href.split('status=').splice(1).join('').split('&')[0]
  		// if(myParam){
  		// 	if(myParam == "approved"){
  		// 		$scope.showResponse = true;
  		// 	}else{
  		// 		$scope.disApprovedMsg = true;
  		// 	}
  		// }else{
  		// 	$scope.disApprovedMsg = true;
  		// }
8e25d825b   Palak Handa   changes the rajor...
620

5348de778   Palak Handa   design updated
621
622
623
624
  	    $scope.removeError = function() {
  	        $('#invalidEmail').css('display', 'none');
  	        $('#alreadyExist').css('display', 'none');
  	    };
248bd9b7c   Palak Handa   link validation
625
626
627
628
629
  		$scope.emailcheck = function(val) {
  	        if (val == undefined) {
  	            $('#invalidEmail').css('display', 'block');
  	        } else {
  	        	$('#alreadyExist').css('display', 'block');
248bd9b7c   Palak Handa   link validation
630
631
  	        }
  	    };
b678502c9   Palak Handa   update
632

dee1f7479   Palak Handa   validation use
633
634
635
636
637
638
639
640
641
642
643
644
  	    $scope.removeNoError = function() {
  	        $('#invalidNumber').css('display', 'none');
  	        $('#alreadyExist').css('display', 'none');
  	    };
  
  		$scope.numbercheck = function(val) {
  	        if (val == undefined) {
  	            $('#invalidNumber').css('display', 'block');
  	        } else {
  	        	$('#alreadyExist').css('display', 'block');
  	        }
  	    };
317a80571   Palak Handa   city selected
645
  	 	// $scope.$on('city', function (event, value) {
7b017db1c   apple   add city field
646
  			$scope.data.city = localStorage.getItem("city");
845d2e17f   apple   add new file & ra...
647
  			$scope.data.country = localStorage.getItem("country");
e02529223   apple   minor change
648
  			 console.log("HERE===",$scope.data.country );
317a80571   Palak Handa   city selected
649
  		// });
845d2e17f   apple   add new file & ra...
650
651
652
653
654
655
  		var data = {
  	        "amount": $scope.payingAmnt,
  	        "currency": "INR",
  			"status": "pending",
  			"paymentType": $scope.data.country 
  		}
ce1c575fe   apple   validation on upl...
656
  		
500aaf838   apple   add new fields & ...
657
658
659
660
661
662
663
664
665
666
  		var handleFileSelect = function(evt) {
  			var files = evt.target.files;
  			var file = files[0];
  
  			if (files && file) {
  			var reader = new FileReader();
  
  			reader.onload = function(readerEvt) {
  				var binaryString = readerEvt.target.result;
  				$scope.base64textString = btoa(binaryString);
e01ea6e45   apple   validation requir...
667
  				//console.log("base64textarea",$scope.base64textString)
03c9e5d63   apple   upload file
668
  				//$scope.data.uploadFile = file.name;
ce1c575fe   apple   validation on upl...
669
670
671
672
673
674
675
  				$scope.fileSelect = false;
  				if($scope.data.uploadFile == null){
  					$scope.fileSelect = true;
  				}else{
  					$scope.fileSelect = false;	
  					};
  				}
500aaf838   apple   add new fields & ...
676
677
678
679
680
681
682
  
  			reader.readAsBinaryString(file);
  			}
  		};
  		if (window.File && window.FileReader && window.FileList && window.Blob) {
  			document.getElementById('filePicker').addEventListener('change', handleFileSelect, false);
  		}
c70ffa5ac   apple   add one text field
683
684
685
686
687
688
689
690
691
  		$scope.ngShowhide = false;
  		$scope.GetValue = function(){
  			console.log("====$scope.value===",$scope.data.sector)
  			if($scope.data.sector == "Other"){
  				$scope.ngShowhide = true;
  			}else{
  				$scope.ngShowhide = false;
  			}
  		}
b96c88383   Palak Handa   amount change
692

f19bac9a9   Shilpi Saini   integrate coupon ...
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
  		$rootScope.tokenCall = function(val) {
  	        console.log('val-------->', val);
  	        if (val == undefined) {
  	            $('#invalidToken').css('display', 'block');
  	        } else {
  	        	val = val.toUpperCase();
  	        	if((val == "IITH99" && $scope.data.city != "Hyderabad") || (val == "IITM99" && $scope.data.city != "Chennai") || (val == "IITD99" && $scope.data.city != "Delhi") || (val == "IITB99" && $scope.data.city != "Mumbai") || (val == "IITK99" && $scope.data.city != "Kanpur") || (val == "IIMC99" && $scope.data.city != "Kolkata") || (val == "IIMA99" && $scope.data.city != "Ahmedabad")){
  	        		$scope.tokencheck = false;
  	        		return;
  	        	}
  	        	$http.get(BASE_URL + '/ambassadors?filter={"where": {"referalToken": "' + val + '"}}')
  				    .then(function(searchResult) {
  				    	console.log("searchResult",searchResult)
  				        if (searchResult.data.length == 0) {
  	                    	$scope.tokencheck = false;
  	                    	 $scope.discountAmount = 0;
  	                	} else {
  	                		console.log("===searchResult.data[0].discount===",searchResult.data[0].discount);
  	                    	 $scope.discountpercentage = searchResult.data[0].discount;
  	                    	 console.log("===searchResultdiscountpercentage===",$scope.discountpercentage);
  	                    	$scope.tokencheck = true;
  	                	}
  				    },function(err){
  				    	console.log(err)
  				});
b96c88383   Palak Handa   amount change
718
  	           
f19bac9a9   Shilpi Saini   integrate coupon ...
719
720
  	        }
  		};
e02529223   apple   minor change
721
  		console.log("$scope.data.country",$scope.data.country)
845d2e17f   apple   add new file & ra...
722
723
724
725
726
727
728
729
730
731
732
733
734
  		if($scope.data.country == "INDIA"){
  			$scope.submit = function() {
  				$scope.loading = true;
  				$scope.data.uploadFile = $scope.base64textString;
  				console.log($scope.data.uploadFile)
  			// if($scope.tokencheck == false){
  			// 	$scope.data.referalToken = null;
  			// }
  			// if ($scope.data.name == undefined || $scope.data.email == undefined || $scope.data.number == undefined) {
  			// 	var x = document.getElementById("snackbar")
  			//     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;
6e44c4966   Shilpi Saini   integrate coupon ...
735
  				$scope.ticketAmnt = 1180;
845d2e17f   apple   add new file & ra...
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
  				$scope.detail = {};
  				$scope.data.phone = "+91"+$scope.data.number;
  				if($scope.data.referalToken == null){
  					$scope.data.referalToken = "NA"
  				}
  				var file =document.getElementById('filePicker').files[0];
  				//console.log("file",filePicker)
  				var image = BASE_URL+'/containers/images/download/'
  				var imagePath = file.name;
  				$scope.data.uploadFile = image + imagePath;
  				//console.log($scope.data.uploadFile)
  				var fd = new FormData()
  				fd.append('filePicker',file);	
  				var deferred = $q.defer();
  				$http({
  					method:'POST',
  					url: BASE_URL+'/containers/images/upload',
  					data:fd,
  					transformRequest:angular.identity,
  					headers:{'Content-Type':undefined}
  				})
  				.success(function(result){
  					deferred.resolve(result);
  				$http({
  				method: 'POST',
  				url: BASE_URL+'/applicants',
  				data: $scope.data,
7b017db1c   apple   add city field
763
  				headers: {}
845d2e17f   apple   add new file & ra...
764
765
766
767
768
769
770
771
772
773
774
775
  				}).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)
  						var amount = $scope.ticketAmnt * 100
  						if($scope.tokencheck == true){
  							var amount = $scope.ticketAmnt
  							console.log("====$scope.discountpercentage====",$scope.discountpercentage);
  							console.log("resultcity===",$scope.data.city)
  							if($scope.discountpercentage == "100") {
f19bac9a9   Shilpi Saini   integrate coupon ...
776
  								$scope.discountpercentage = "99.9";
845d2e17f   apple   add new file & ra...
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
  								console.log("$scope.discountpercentage====",$scope.discountpercentage)
  							}
  							console.log("====$scope.discountpercentage====",$scope.discountpercentage);
  							$scope.percDiscount = $scope.discountpercentage/100;
  							console.log("====$scope.percDiscount====",$scope.percDiscount);
  							console.log("====amount=====",amount);
  							$scope.discountAmount = amount * $scope.percDiscount;
  							console.log("finalAmount====>",$scope.discountAmount)
  						}
  						var taxAmount = $scope.ticketAmnt - $scope.discountAmount
  						console.log("$scope.taxTotal----",taxAmount)
  						$scope.payingAmnt = taxAmount;
  						console.log("====$scope.payingAmnt====",$scope.payingAmnt)
  						$scope.payingAmnt = $scope.payingAmnt.toFixed()	                
  						data.amount = $scope.payingAmnt;
  						console.log("data.amount==",data.amount)
  					if($scope.detail != null){
  						$http({
  						method: 'POST',
  						url: BASE_URL+'/payments',
  						data: data,
  						headers: {}
  						}).then(function mySuccess(paymentResult) {
  								$scope.loading = false;
f19bac9a9   Shilpi Saini   integrate coupon ...
801
  							console.log("paymentResult",paymentResult)
845d2e17f   apple   add new file & ra...
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
  							$("p").html(paymentResult.data.data)
  						}, function myError(error) {
  						});
  					}
  					// var i = 0;
  					// $scope.payingAmnt =  $scope.payingAmnt * 100;
  					// var options = {
  					// 	//"key": "rzp_test_YwHsVFiDIQ2WUQ",
  					// 	"key": "rzp_live_mkmCb4FkstuWaS",
  					// 	"amount": $scope.payingAmnt,
  
  					// 	"name": "Startup Jalsa",
  					// 	"description":"amount",
  					// 	"currency": "INR",
  					// 	"status": "done",
  
  					// 	"prefill": {
  					// 		"email": $scope.detail.email,
  					// 		"contact": $scope.detail.phone
  					// 	},
  
  					// 	"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){
  					// 	console.log("response12333333",response)
  					// 	$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;
  					// 	console.log("$scope.paymentResponse.amount=====",$scope.paymentResponse.amount)
  					// 	$http({
  					// 	   method: 'PUT',
  					// 	   url: BASE_URL+'/payments/'+$scope.paymentResult.data.id,
  					// 	   data: $scope.paymentResponse,
  					// 	   headers: {}
  					// 	   }).then(function mySuccess(searchResult) {
  					// 	   	console.log("searchResult",searchResult)
  					// 	   	$location.path("/confirmation")
  					// 	   }, function myError(error) {
  					// 	});
  					// }
  					//}
  
  				}, function myError(error) {
  
  				});
  
  			})
  				
  			// })
  
  			//}
b96c88383   Palak Handa   amount change
868

845d2e17f   apple   add new file & ra...
869
870
  		}
  	}else{
6ae8d3cdd   Palak Handa   add new module
871
  		$scope.submit = function() {
74db82750   apple   loader use
872
  			$scope.loading = true;
03c9e5d63   apple   upload file
873
874
  			$scope.data.uploadFile = $scope.base64textString;
  			console.log($scope.data.uploadFile)
0c48d68b6   apple   text xhange
875
  		// if($scope.tokencheck == false){
845d2e17f   apple   add new file & ra...
876
877
  		// 	$scope.data.referalToken = null;
  		// }
500aaf838   apple   add new fields & ...
878
879
880
881
  		// if ($scope.data.name == undefined || $scope.data.email == undefined || $scope.data.number == undefined) {
  		// 	var x = document.getElementById("snackbar")
  		//     setTimeout(function(){ x.className = x.className.replace("show", ""); }, 3000);
  		// }else if($scope.data.name != undefined && $scope.data.email != undefined && $scope.data.number != undefined) {	
e856f2161   Palak Handa   new page design
882
  			$scope.infoForm = true;
6e44c4966   Shilpi Saini   integrate coupon ...
883
  			$scope.ticketAmnt = 1180;
e856f2161   Palak Handa   new page design
884
885
  			$scope.detail = {};
  			$scope.data.phone = "+91"+$scope.data.number;
fe142256c   apple   information page ...
886
  			if($scope.data.referalToken == null){
845d2e17f   apple   add new file & ra...
887
  				$scope.data.referalToken = "NA"
fe142256c   apple   information page ...
888
  			}
03c9e5d63   apple   upload file
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
  			var file =document.getElementById('filePicker').files[0];
  			//console.log("file",filePicker)
  			var image = BASE_URL+'/containers/images/download/'
  			var imagePath = file.name;
  			$scope.data.uploadFile = image + imagePath;
  			//console.log($scope.data.uploadFile)
  			var fd = new FormData()
  			fd.append('filePicker',file);	
  			var deferred = $q.defer();
  			$http({
  				method:'POST',
  				url: BASE_URL+'/containers/images/upload',
  				data:fd,
  				transformRequest:angular.identity,
  				headers:{'Content-Type':undefined}
  			})
  			.success(function(result){
  				deferred.resolve(result);
e856f2161   Palak Handa   new page design
907
  			$http({
845d2e17f   apple   add new file & ra...
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
  			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)
  					var amount = $scope.ticketAmnt * 100
  					if($scope.tokencheck == true){
  						var amount = $scope.ticketAmnt
  						console.log("====$scope.discountpercentage====",$scope.discountpercentage);
  						console.log("resultcity===",$scope.data.city)
a65d2455e   Palak Handa   minor change
923
  						if($scope.discountpercentage == "100") {
f19bac9a9   Shilpi Saini   integrate coupon ...
924
  							$scope.discountpercentage = "99.9";
845d2e17f   apple   add new file & ra...
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
  							console.log("$scope.discountpercentage====",$scope.discountpercentage)
  						}
  						console.log("====$scope.discountpercentage====",$scope.discountpercentage);
  						$scope.percDiscount = $scope.discountpercentage/100;
  						console.log("====$scope.percDiscount====",$scope.percDiscount);
  						console.log("====amount=====",amount);
  						$scope.discountAmount = amount * $scope.percDiscount;
  						console.log("finalAmount====>",$scope.discountAmount)
  					}
  					var taxAmount = $scope.ticketAmnt - $scope.discountAmount
  					console.log("$scope.taxTotal----",taxAmount)
  					$scope.payingAmnt = taxAmount;
  					console.log("====$scope.payingAmnt====",$scope.payingAmnt)
  					$scope.payingAmnt = $scope.payingAmnt.toFixed()	                
  					data.amount = $scope.payingAmnt;
  					console.log("data.amount==",data.amount)
  				if($scope.detail != null){
e856f2161   Palak Handa   new page design
942
  					$http({
845d2e17f   apple   add new file & ra...
943
944
945
946
947
  					method: 'POST',
  					url: BASE_URL+'/payments',
  					data: data,
  					headers: {}
  					}).then(function mySuccess(paymentResult) {
74db82750   apple   loader use
948
  							$scope.loading = false;
845d2e17f   apple   add new file & ra...
949
950
951
952
953
954
955
956
957
  						console.log("paymentResult",paymentResult)
  						$scope.paymentResult = paymentResult;
  						//$("p").html(paymentResult.data.data)
  					}, function myError(error) {
  					});
  				}
  				var i = 0;
  				$scope.payingAmnt =  $scope.payingAmnt * 100;
  				var options = {
466bf74a5   apple   minor change
958
959
  					//"key": "rzp_test_YwHsVFiDIQ2WUQ",
  					"key": "rzp_live_mkmCb4FkstuWaS",
845d2e17f   apple   add new file & ra...
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
  					"amount": $scope.payingAmnt,
  
  					"name": "Startup Jalsa",
  					"description":"amount",
  					"currency": "INR",
  					"status": "done",
  
  					"prefill": {
  						"email": $scope.detail.email,
  						"contact": $scope.detail.phone
  					},
  
  					"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){
  					console.log("response12333333",response)
  					console.log("$scope.paymentResult",$scope.paymentResult)
  					$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;
  					console.log("$scope.paymentResponse.amount=====",$scope.paymentResponse.amount)
  					$http({
  					   method: 'PUT',
  					   url: BASE_URL+'/payments/'+$scope.paymentResult.data.id,
  					   data: $scope.paymentResponse,
  					   headers: {}
  					   }).then(function mySuccess(searchResult) {
  					   	console.log("searchResult",searchResult)
  					   	$location.path("/confirm")
e856f2161   Palak Handa   new page design
1004
1005
1006
  					   }, function myError(error) {
  					});
  				}
19a2e7b14   apple   payment integrate
1007
  				//}
845d2e17f   apple   add new file & ra...
1008
  			}, function myError(error) {
19a2e7b14   apple   payment integrate
1009
1010
1011
1012
  
  			});
  
  		})
0c48d68b6   apple   text xhange
1013
1014
  			
  		// })
317a80571   Palak Handa   city selected
1015

500aaf838   apple   add new fields & ...
1016
  		//}
19a2e7b14   apple   payment integrate
1017

845d2e17f   apple   add new file & ra...
1018
  		}
317a80571   Palak Handa   city selected
1019
1020
1021
  	}
  	
  });
53b83aa9e   Palak Handa   first commit
1022

1ef0fae04   apple   confirmation page...
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
  scotchApp.controller('confirmationController', function($scope, $http, $location, $route, BASE_URL) {
  	$scope.approvedMsg = false;
  	$scope.disApprovedMsg = false;
  
  	var myParam =  window.location.href.split('status=').splice(1).join('').split('&')[0]
  	console.log(myParam)
  		// if(myParam){
  			if(myParam == "approved"){
  				$scope.approvedMsg = true;
  				$scope.disApprovedMsg = false;
  			}else{
  				$scope.approvedMsg = false;
  				$scope.disApprovedMsg = true;
  			}
  		// }else{
  		// 	$scope.disApprovedMsg = true;
  		// }
  
  });
19a2e7b14   apple   payment integrate
1042
  scotchApp.controller('ambassadorController', function($scope, $http, $location, $route, BASE_URL) {
b96c88383   Palak Handa   amount change
1043
1044
1045
1046
1047
1048
  		$scope.data = {};
  		$scope.check = false;
  	    $scope.numberCheck = false;
  
  		$scope.submit = function() {
  			console.log($scope.data.name)
f19bac9a9   Shilpi Saini   integrate coupon ...
1049
  			//var randomNumber = ""+Math.random();
27196c82a   Shilpi Saini   integrate coupon ...
1050
  			var nameSpliced = $scope.data.name.slice(0,5);
f19bac9a9   Shilpi Saini   integrate coupon ...
1051
  			//var numberSpliced = randomNumber.slice(2,4);
ccb693a72   Shilpi Saini   add coupon code
1052
  			var numberSpliced = "10";
b96c88383   Palak Handa   amount change
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
  			$scope.data.referalToken = nameSpliced+numberSpliced;
  			$scope.data.referalToken = $scope.data.referalToken.toUpperCase();
  			console.log("dsdfs",numberSpliced);
  	         $http({
  	                method: 'POST',
  	                url: BASE_URL + '/ambassadors',
  	                data: $scope.data,
  	                headers: {}
  	            }).then(function mySuccess(result) {
  	                console.log("result", result)
  	                $scope.detail = result;
  	                $('#myModal').modal('show');
  	              	$scope.data.name = '';
  	                $scope.data.email = '';
  	                $scope.data.mobile = '';
  	                //$scope.data.discount = '';
  	            
  	            }, function myError(error) {
  	            	console.log(error)
  	            	console.log(error.data.error.message)
  	            });
b96c88383   Palak Handa   amount change
1074
1075
  	        }
  	});
96991e0c1   Palak Handa   update
1076