aboutsummaryrefslogtreecommitdiffstats
path: root/vid/src/main/webapp/WEB-INF/jsp/createnewserviceinstance.jsp
blob: f5a9b6cb96e70eb6bfea3d9e1afb74293f893c2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
<script>
app.controller('createNewSIController',['$scope','$http',function ($scope,$http) { 
	
    $scope.searchCategory = "";
    $scope.searchString = "";
 	$scope.tableData=[];
 	$scope.displayData=[];
 	$scope.selectedSubscriber = $scope.tableData[0]; 
    $scope.selectedServiceType = "Select Service Type";
 	function escapeRegExp(str) {
 		return str.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|\&]/g, " ");
 	}
 	$scope.serviceTypes=["Select Service Type"];
 	
 	$scope.getSubscribers = function(refresh){
 
 		var refreshTxt = 'refresh_subscribers';
 		var getTxt = 'get_subscribers';
 		var selectedTxt = getTxt;
 		if (refresh)
 			selectedTxt = refreshTxt;
		$http.get(selectedTxt).
			then(function(response){
				var data = JSON.parse(response.data.result);
				$scope.tableData = data['customer'];
				$scope.initSubscriberList();
			})
			.catch(function(data,status){
			console.log("Error: " + status + " : " + data); 					
			})
			.finally(function() {
				
			});
 		
 	}
 

 	$scope.initSubscriberList = function () {
 		//$scope.selectedSubscriber = $scope.selectedSubscriber['subscriber-name'] || $scope.tableData[0]['subscriber-name'];
 		$scope.selectedSubscriber = 'Select Subscriber Name';
 	}
 	
 	$scope.initSrvcTypeList = function () {
 		$scope.selectedServiceType = $scope.serviceTypes[0];  
 	}

 	$scope.getSubscriberDetails = function(selectedSubscriber){
		if (selectedSubscriber == 'Select Subscriber Name')
			return;
 		$http.get('createsubscriber/' + encodeURIComponent(selectedSubscriber)).
		then(function(response){
		//	window.location.href = 'createsubscriberdetails.htm';
		})
		.catch(function(data,status){
		console.log("Error: " + status + " : " + data); 					
		})
		.finally(function() {
			
		});
	}
	
	$scope.disableSubmitBtn = function (subName, svcType) {
		return (typeof subName === "undefined") && (svcType == 'Select Service Type');
 		//return (subName == 'Select Subscriber Name') && (svcType == 'Select Service Type');
 	}
	
    $scope.cancelCreateSI = function(selectedSubscriber){
 		
		window.location.href = 'vidhome.htm';
		
	}
	
 	$scope.getSubscribers(false);
 	//$scope.initSubscriberList();
 	
}]);


</script>

<div ng-controller="createNewSIController">
     
     <h1 class="heading1"><center>Create New Service Instance</center></h1>
	

<BR>
 <table> <tr>
   
   <td width="5%" align="left">
	<!--  <a ng-click="getSubscriberDetails(selectedSubscriber['global-customer-id']);" ng-disabled="disableSubmitBtn(selectedSubscriber['subscriber-name'], selectedServiceType);" ><img src="static/fusion/images/plus.png"></a>-->
  <input type="image" ng-click="getSubscriberDetails(selectedSubscriber['global-customer-id']);" ng-disabled="disableSubmitBtn(selectedSubscriber['subscriber-name'], selectedServiceType);" src="static/fusion/images/plus.png"/>
   </td>
   
	<td style="width:10%" align="left"><div class="fn-ebz-container">	
		<label  class="fn-ebz-text-label">Subscriber:</label>
		</div> </td>
	<td style="width:30%"><div class="fn-ebz-container">
		<select  ng-model="selectedSubscriber"  ng-options="resultdata['subscriber-name'] for resultdata in tableData" required>
		<option value="">Select Subscriber Name</option>
		</select>
	</div></td>
	 <td width="5%" align="left">
		  <input type="image" ng-click="getSubscribers(true);" src="static/fusion/images/refresh.jpg"/>
      </td>
	
	<td width="5%"> </td>
<td style="width:10%" align="left">

    
	<div class="fn-ebz-container">	
		<label  class="fn-ebz-text-label">Service Type:</label>
	</div> </td>
    <td style="width:32%"><div class="fn-ebz-container">
		<select  ng-model="selectedServiceType"  ng-options="sType for sType in serviceTypes" ng-init="initSrvcTypeList();" ></select>
	</div> </td>
	
	<td width="5%"> </td>
	
    </tr>
    </table>
 
	<center>
		<button type="cancel" ng-click="cancelCreateSI();" att-button size="small">Cancel</button>
	</center>
	


</div>
<!--  Temporary solution for footer overlapping the men after talking to EComp SDK developer on 06/16/2016 -->
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>