-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgraph.html
More file actions
222 lines (166 loc) · 48.5 KB
/
graph.html
File metadata and controls
222 lines (166 loc) · 48.5 KB
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
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
<html>
<head>
<meta charset="utf-8">
<script src="lib/bindings/utils.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/vis-network/9.1.2/dist/dist/vis-network.min.css" integrity="sha512-WgxfT5LWjfszlPHXRmBWHkV2eceiWTOBvrKCNbdgDYTHrT2AeLCGbF4sZlZw3UMN3WtL0tGUoIAKsu8mllg/XA==" crossorigin="anonymous" referrerpolicy="no-referrer" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/vis-network/9.1.2/dist/vis-network.min.js" integrity="sha512-LnvoEWDFrqGHlHmDD2101OrLcbsfkrzoSpvtSQtxK3RMnRV0eOkhhBN2dXHKRrUU8p2DGRTk35n4O8nWSVe1mQ==" crossorigin="anonymous" referrerpolicy="no-referrer"></script>
<center>
<h1></h1>
</center>
<!-- <link rel="stylesheet" href="../node_modules/vis/dist/vis.min.css" type="text/css" />
<script type="text/javascript" src="../node_modules/vis/dist/vis.js"> </script>-->
<link
href="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/css/bootstrap.min.css"
rel="stylesheet"
integrity="sha384-eOJMYsd53ii+scO/bJGFsiCZc+5NDVN2yr8+0RDqr0Ql0h+rP48ckxlpbzKgwra6"
crossorigin="anonymous"
/>
<script
src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.0-beta3/dist/js/bootstrap.bundle.min.js"
integrity="sha384-JEW9xMcG8R+pH31jmWH6WWP0WintQrMb4s7ZOdauHnUtxwoG2vI5DkLtS3qm9Ekf"
crossorigin="anonymous"
></script>
<center>
<h1></h1>
</center>
<style type="text/css">
#mynetwork {
width: 100%;
height: 750px;
background-color: #222222;
border: 1px solid lightgray;
position: relative;
float: left;
}
#loadingBar {
position:absolute;
top:0px;
left:0px;
width: 100%;
height: 750px;
background-color:rgba(200,200,200,0.8);
-webkit-transition: all 0.5s ease;
-moz-transition: all 0.5s ease;
-ms-transition: all 0.5s ease;
-o-transition: all 0.5s ease;
transition: all 0.5s ease;
opacity:1;
}
#bar {
position:absolute;
top:0px;
left:0px;
width:20px;
height:20px;
margin:auto auto auto auto;
border-radius:11px;
border:2px solid rgba(30,30,30,0.05);
background: rgb(0, 173, 246); /* Old browsers */
box-shadow: 2px 0px 4px rgba(0,0,0,0.4);
}
#border {
position:absolute;
top:10px;
left:10px;
width:500px;
height:23px;
margin:auto auto auto auto;
box-shadow: 0px 0px 4px rgba(0,0,0,0.2);
border-radius:10px;
}
#text {
position:absolute;
top:8px;
left:530px;
width:30px;
height:50px;
margin:auto auto auto auto;
font-size:22px;
color: #000000;
}
div.outerBorder {
position:relative;
top:400px;
width:600px;
height:44px;
margin:auto auto auto auto;
border:8px solid rgba(0,0,0,0.1);
background: rgb(252,252,252); /* Old browsers */
background: -moz-linear-gradient(top, rgba(252,252,252,1) 0%, rgba(237,237,237,1) 100%); /* FF3.6+ */
background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(252,252,252,1)), color-stop(100%,rgba(237,237,237,1))); /* Chrome,Safari4+ */
background: -webkit-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Chrome10+,Safari5.1+ */
background: -o-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* Opera 11.10+ */
background: -ms-linear-gradient(top, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* IE10+ */
background: linear-gradient(to bottom, rgba(252,252,252,1) 0%,rgba(237,237,237,1) 100%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fcfcfc', endColorstr='#ededed',GradientType=0 ); /* IE6-9 */
border-radius:72px;
box-shadow: 0px 0px 10px rgba(0,0,0,0.2);
}
</style>
</head>
<body>
<div class="card" style="width: 100%">
<div id="mynetwork" class="card-body"></div>
</div>
<div id="loadingBar">
<div class="outerBorder">
<div id="text">0%</div>
<div id="border">
<div id="bar"></div>
</div>
</div>
</div>
<script type="text/javascript">
// initialize global variables.
var edges;
var nodes;
var allNodes;
var allEdges;
var nodeColors;
var originalNodes;
var network;
var container;
var options, data;
var filter = {
item : '',
property : '',
value : []
};
// This method is responsible for drawing the graph, returns the drawn network
function drawGraph() {
var container = document.getElementById('mynetwork');
// parsing and collecting nodes and edges from the python
nodes = new vis.DataSet([{"color": "#97c2fc", "font": {"color": "white"}, "id": "\"SAGAR MANOCHA\"", "label": "\"SAGAR MANOCHA\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"MTV1898\"", "label": "\"MTV1898\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"BI\"", "label": "\"BI\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"AYELET AYUBI\"", "label": "\"AYELET AYUBI\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"DLS\"", "label": "\"DLS\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"DIGITAL\"", "label": "\"DIGITAL\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"CALLIDUS- NEW COMMISSION SYSTEM - NCS\"", "label": "\"CALLIDUS- NEW COMMISSION SYSTEM - NCS\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"RETAIL AGENT\"", "label": "\"RETAIL AGENT\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"AMDOCS\"", "label": "\"AMDOCS\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"ESB\"", "label": "\"ESB\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"APP ID\"", "label": "\"APP ID\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"DEVICE_UPFRONT_AMOUNT_BEFORE_DISCOUNT_NEXT_R1\"", "label": "\"DEVICE_UPFRONT_AMOUNT_BEFORE_DISCOUNT_NEXT_R1\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"OMS\"", "label": "\"OMS\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"CRM\"", "label": "\"CRM\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"TRADE IN STANDALONE CASE\"", "label": "\"TRADE IN STANDALONE CASE\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"DISCOUNT TRADE IN CASE\"", "label": "\"DISCOUNT TRADE IN CASE\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"RETAIL\"", "label": "\"RETAIL\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"GIGA FAMILY\"", "label": "\"GIGA FAMILY\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"AMDD\"", "label": "\"AMDD\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"ORDERING\"", "label": "\"ORDERING\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"DEVICE IMEI\"", "label": "\"DEVICE IMEI\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"DSL\"", "label": "\"DSL\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"CRM API\"", "label": "\"CRM API\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"CASE\"", "label": "\"CASE\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"GIGA_FAMILY_DISCOUNT_AMOUNT_NEXT_R1\"", "label": "\"GIGA_FAMILY_DISCOUNT_AMOUNT_NEXT_R1\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"GF DISCOUNT GRT\"", "label": "\"GF DISCOUNT GRT\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"MTV1780\"", "label": "\"MTV1780\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"CALL CENTER AGENT\"", "label": "\"CALL CENTER AGENT\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"AGENT\"", "label": "\"AGENT\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"M1780\"", "label": "\"M1780\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"BPT\"", "label": "\"BPT\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"VFIT_CRM_GE_SUPPORT_R1\"", "label": "\"VFIT_CRM_GE_SUPPORT_R1\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"CALL CENTER\"", "label": "\"CALL CENTER\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"CV\"", "label": "\"CV\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"FCV\"", "label": "\"FCV\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"GE\"", "label": "\"GE\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"VFIT_ORDERING_BPT_R1\"", "label": "\"VFIT_ORDERING_BPT_R1\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"VFIT_DIGITAL_GE_R1\"", "label": "\"VFIT_DIGITAL_GE_R1\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"MEC\"", "label": "\"MEC\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"TRADE-IN DISCOUNT\"", "label": "\"TRADE-IN DISCOUNT\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"COP PARAMETER\"", "label": "\"COP PARAMETER\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"CM\"", "label": "\"CM\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"DEVICE\"", "label": "\"DEVICE\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"COP NAME\"", "label": "\"COP NAME\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"AEM\"", "label": "\"AEM\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"POS\"", "label": "\"POS\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"VF FOCAL\"", "label": "\"VF FOCAL\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"BILLING\"", "label": "\"BILLING\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"FLEX DEVICE\"", "label": "\"FLEX DEVICE\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"PCO\"", "label": "\"PCO\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"DISCOUNT TRADE IN\"", "label": "\"DISCOUNT TRADE IN\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"MSISDN\"", "label": "\"MSISDN\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"TRADE IN STANDALONE\"", "label": "\"TRADE IN STANDALONE\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"BR\"", "label": "\"BR\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"IMEI\"", "label": "\"IMEI\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"TRADE IN CASE\"", "label": "\"TRADE IN CASE\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"AEIR\"", "label": "\"AEIR\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"IMLS\"", "label": "\"IMLS\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"CHECK ACTIVE DEVICE INSTALLMENT\"", "label": "\"CHECK ACTIVE DEVICE INSTALLMENT\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"APIX\"", "label": "\"APIX\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"AMDOCS RETAIL INTERACTION MANAGER\"", "label": "\"AMDOCS RETAIL INTERACTION MANAGER\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"RT - CRM\"", "label": "\"RT - CRM\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"CONTRACTS\"", "label": "\"CONTRACTS\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"RLC\"", "label": "\"RLC\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"RETURNED DEVICE VALUE\"", "label": "\"RETURNED DEVICE VALUE\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"GRT\"", "label": "\"GRT\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"DEVICE GRT\"", "label": "\"DEVICE GRT\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"BIANAMARIA GIZA\"", "label": "\"BIANAMARIA GIZA\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"TRADE IN EXTRA DISCOUNT\"", "label": "\"TRADE IN EXTRA DISCOUNT\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"OC\"", "label": "\"OC\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"CET\"", "label": "\"CET\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"NXT\"", "label": "\"NXT\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"INSTALLMENTS\"", "label": "\"INSTALLMENTS\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"VFIT_CRM_GE_WORKFLOW_R1\"", "label": "\"VFIT_CRM_GE_WORKFLOW_R1\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"ALTRI PRODOTTI E SERVIZI:\"", "label": "\"ALTRI PRODOTTI E SERVIZI:\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"TEMPLATE FOR STANDALONE MOBILE CONTRACT WITH FLEX DEVICE WITH TRADE-IN\"", "label": "\"TEMPLATE FOR STANDALONE MOBILE CONTRACT WITH FLEX DEVICE WITH TRADE-IN\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"EMAIL CONTRACT NOTIFICATION\"", "label": "\"EMAIL CONTRACT NOTIFICATION\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"M1716\"", "label": "\"M1716\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"SIVAN NOY\"", "label": "\"SIVAN NOY\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"OMSAVIVIT SEESAM\"", "label": "\"OMSAVIVIT SEESAM\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"CHARIKLIA ECONOMIDE\"", "label": "\"CHARIKLIA ECONOMIDE\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "\"VFIT NEXT\"", "label": "\"VFIT NEXT\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "b45241d70f0e43fca764df95b2b81f77", "label": "\"SAGAR MANOCHA\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "4119fd06010c494caa07f439b333f4c5", "label": "\"MTV1898\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "d3835bf3dda84ead99deadbeac5d0d7d", "label": "\"DLS\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "077d2820ae1845bcbb1803379a3d1eae", "label": "\"AYELET AYUBI\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "3671ea0dd4e84c1a9b02c5ab2c8f4bac", "label": "\"GIGA FAMILY\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "19a7f254a5d64566ab5cc15472df02de", "label": "\"RETAIL AGENT\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "e7ffaee9d31d4d3c96e04f911d0a8f9e", "label": "\"CUSTOMER 360 DASHBOARD\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "f7e11b0e297a44a896dc67928368f600", "label": "\"DIGITAL\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "1fd3fa8bb5a2408790042ab9573779ee", "label": "\"CUSTOMER 360\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "27f9fbe6ad8c4a8b9acee0d3596ed57c", "label": "\"MEC\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "e1fd0e904a53409aada44442f23a51cb", "label": "\"TRADE-IN DISCOUNT\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "de988724cfdf45cebfba3b13c43ceede", "label": "\"AEM\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "96aad7cb4b7d40e9b7e13b94a67af206", "label": "\"POS\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "c9632a35146940c2a86167c7726d35e9", "label": "\"OMS\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "9646481f66ce4fd2b08c2eddda42fc82", "label": "\"AMDD\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "d91a266f766b4737a06b0fda588ba40b", "label": "\"ORDERING\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "bc0e3f075a4c4ebbb7c7b152b65a5625", "label": "\"PCO\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "254770028d7a4fa9877da4ba0ad5ad21", "label": "\"RETAIL\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "4a67211867e5464ba45126315a122a8a", "label": "\"FLEX DEVICE\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "04dbbb2283b845baaeac0eaf0c34c9da", "label": "\"CV\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "1943f245ee4243bdbfbd2fd619ae824a", "label": "\"AMDOCS\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "273daeec8cad41e6b3e450447db58ee7", "label": "\"ESB\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "e69dc259edb944ea9ea41264b9fcfe59", "label": "\"COMPASS\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "e2f5735c7d714423a2c4f61ca2644626", "label": "\"CRM\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "deece7e64b2a4628850d4bb6e394a9c3", "label": "\"MTV1780\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "e657b5121ff8456b9a610cfaead8e0cb", "label": "\"DEVICE IMEI\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "bf4e255cdac94ccc83a56435a5e4b075", "label": "\"MSISDN\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "3b040bcc19f14e04880ae52881a89c1c", "label": "\"TRADE IN STANDALONE CASE\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "3d6b216c14354332b1bf1927ba168986", "label": "\"DISCOUNT TRADE IN CASE\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "1c109cfdc370463eb6d537e5b7b382fb", "label": "\"IMEI\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "3d0dcbc8971b415ea18065edc4d8c8ef", "label": "\"CASE\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "68105770b523412388424d984e711917", "label": "\"TRADE IN CASE\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "85c79fd84f5e4f918471c386852204c5", "label": "\"CALL CENTER AGENT\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "eae4259b19a741ab9f9f6af18c4a0470", "label": "\"BPT\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "3138f39f2bcd43a69e0697cd3b05bc4d", "label": "\"M1780\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "dde131ab575d44dbb55289a6972be18f", "label": "\"DSL\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "de9e343f2e334d88a8ac7f8813a915e5", "label": "\"AGENT\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "e2bf260115514fb3b252fd879fb3e7be", "label": "\"CRM API\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "b462b94ce47a4b8c8fffa33f7242acec", "label": "\"APP ID\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "17ed1d92075643579a712cc6c29e8ddb", "label": "\"VF FOCAL\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "3ce7c210a21b4deebad7cc9308148d86", "label": "\"BILLING\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "d64ed762ea924caa95c8d06f072a9a96", "label": "\"DEVICE_UPFRONT_AMOUNT_BEFORE_DISCOUNT_NEXT_R1\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "adf4ee3fbe9b4d0381044838c4f889c8", "label": "\"GIGA_FAMILY_DISCOUNT_AMOUNT_NEXT_R1\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "32ee140946e5461f9275db664dc541a5", "label": "\"COP PARAMETER\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "c160b9cb27d6408ba6ab20214a2f3f81", "label": "\"CM\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "23527cd679ff4d5a988d52e7cd056078", "label": "\"FCV\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "f1c6eed066f24cbdb376b910fce29ed4", "label": "\"COP NAME\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "83a6cb03df6b41d8ad6ee5f6fef5f024", "label": "\"IMLS\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "147c038aef3e4422acbbc5f7938c4ab8", "label": "\"CHECK ACTIVE DEVICE INSTALLMENT\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "b7702b90c7f24190b864e8c6e64612a5", "label": "\"APIX\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "de6fa24480894518ab3cbcb66f739266", "label": "\"AMDOCS RETAIL INTERACTION MANAGER\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "6fae5ee1a831468aa585a1ea09095998", "label": "\"RT - CRM\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "ef32c4b208d041cc856f6837915dc1b0", "label": "\"RLC\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "07b2425216bd4f0aa4e079827cb48ef5", "label": "\"CONTRACTS\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "2670deebfa3f4d69bb82c28ab250a209", "label": "\"DEVICE\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "404309e89a5241d6bff42c05a45df206", "label": "\"RETURNED DEVICE VALUE\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "b785a9025069417f94950ad231bb1441", "label": "\"VF\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "3b6cd96a27304614850709aba1c9598b", "label": "\"TRADE IN\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "d54956b79dd147f894b67a8b97dcbef0", "label": "\"DONATION\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "958beecdb5bb4060948415ffd75d2b03", "label": "\"GRT\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "b999ed77e19e4f85b7f1ae79af5c002a", "label": "\"DEVICE GRT\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "48c0c4d72da74ff5bb926fa0c856d1a7", "label": "\"TRADE IN EXTRA DISCOUNT\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "4f3c97517f794ebfb49c4c6315f9cf23", "label": "\"GE\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "1745a2485a9443bab76587ad650e9be0", "label": "\"OC\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "32e6ccab20d94029811127dbbe424c64", "label": "\"CET\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "94a964c6992945ebb3833dfdfdc8d655", "label": "\"GF DISCOUNT GRT\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "1eb829d0ace042089f0746f78729696c", "label": "\"VFIT_ORDERING_BPT_R1\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "015e7b58d1a14b44beab3bbc9f912c18", "label": "\"AEIR\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "26f88ab3e2e04c33a459ad6270ade565", "label": "\"NXT\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "babe97e1d9784cffa1c85abc1e588126", "label": "\"VFIT_DIGITAL_GE_R1\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "1033a18c45aa4584b2aef6ab96890351", "label": "\"INSTALLMENTS\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "c9b8ce91fc2945b4907fe35519339cac", "label": "\"CALL CENTER\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "fa3c4204421c48609e52c8de2da4c654", "label": "\"VFIT_CRM_GE_SUPPORT_R1\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "53af055f068244d0ac861b2e89376495", "label": "\"DISCOUNT TRADE IN\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "c03ab3ce8cb74ad2a03b94723bfab3c7", "label": "\"TRADE IN STANDALONE\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "ed6d2eee9d7b4f5db466b1f6404d31cc", "label": "\"VFIT_CRM_GE_WORKFLOW_R1\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "fc01e9baa80e417c9206f941bb279407", "label": "\"BR\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "56d0e5ebe79e4814bd1463cf6ca21394", "label": "\"ALTRI PRODOTTI E SERVIZI:\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "7c49f2710e8b4d3b8dc9310834406ea5", "label": "\"EMAIL CONTRACT NOTIFICATION\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "c6d1e4f56c2843e89cf0b91c10bb6de2", "label": "\"M1716\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "0adb2d9941f34ef7b2f7743cc6225844", "label": "\"SIVAN NOY\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "6b02373137fd438ba96af28f735cdbdb", "label": "\"OMSAVIVIT SEESAM\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "36a4fcd8efc144e6b8af9a1c7ab8b2ce", "label": "\"BIANAMARIA GIZA\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "fbeef791d19b413a9c93c6608286ab63", "label": "\"ESBCHARIKLIA ECONOMIDE\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "d2b629c0396f4180a03e16ddf3818589", "label": "\"CMSALAKHA BADKUL\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "6102fc6619ed422ebc42588bfa97355d", "label": "\"MECSAGAR MANOCHA\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "8d141c0b80f74b79a05eed7fe161fe49", "label": "\"DIGITALHIMANSHU BANSAL\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "e22d1d1cd8d14f12b81828d940f40d70", "label": "\"TEMPLATE FOR STANDALONE MOBILE CONTRACT WITH FLEX DEVICE WITH TRADE-IN\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "9ab48505fb1b487babd0d1f6d3a3f980", "label": "\"CHARIKLIA ECONOMIDE\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "148fffeb994541b2b4b6dcefda7001a8", "label": "\"BI\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "89c08e793298442686292454a1abff31", "label": "\"CALLIDUS- NEW COMMISSION SYSTEM - NCS\"", "shape": "dot", "size": 10}, {"color": "#97c2fc", "font": {"color": "white"}, "id": "0467928aa65e4a4fba62bdb1467e3a54", "label": "\"VFIT NEXT\"", "shape": "dot", "size": 10}]);
edges = new vis.DataSet([{"from": "\"SAGAR MANOCHA\"", "label": "\"Sagar Manocha modified the document related to MTV1898, showing their role in the update process.\"", "to": "\"MTV1898\"", "width": 1}, {"from": "\"SAGAR MANOCHA\"", "label": "\"Sagar Manocha has updated information related to BI interfaces, indicating their involvement in the project.\"", "to": "\"BI\"", "width": 1}, {"from": "\"MTV1898\"", "label": "\"Ayelet Ayubi created the document related to MTV1898, indicating their involvement in the project.\"", "to": "\"AYELET AYUBI\"", "width": 1}, {"from": "\"MTV1898\"", "label": "\"DLS is integrated with MTV1898 via LIC in context of an order, indicating a connection between the two entities.\"", "to": "\"DLS\"", "width": 1}, {"from": "\"MTV1898\"", "label": "\"Digital is responsible for implementing MTV1898, which involves adding POS codes in AEM.\"", "to": "\"DIGITAL\"", "width": 1}, {"from": "\"BI\"", "label": "\"BI has interfaces with Callidus- New Commission System - NCS, indicating a connection between the two systems.\"", "to": "\"CALLIDUS- NEW COMMISSION SYSTEM - NCS\"", "width": 1}, {"from": "\"DLS\"", "label": "\"The Retail Agent uses DLS to retrieve product order item id for traded-in devices, indicating their collaboration in the trade-in process.\"", "to": "\"RETAIL AGENT\"", "width": 1}, {"from": "\"DLS\"", "label": "Here is the comprehensive summary:\n\n\"DLS and DIGITAL have a collaborative relationship in which DLS provides device values to DIGITAL, which are used to determine trade-in discounts and eligibility. Additionally, during trade-in processes, DIGITAL receives returned device IMEI and value information from DLS.\"", "to": "\"DIGITAL\"", "width": 1}, {"from": "\"DLS\"", "label": "\"Amdocs does not trigger cleaning of pending requests in DLS.\"", "to": "\"AMDOCS\"", "width": 1}, {"from": "\"DLS\"", "label": "Here is a comprehensive summary of the data provided:\n\n\"DLS (Device Lifecycle Solution) and ESB (Enterprise Service Bus) are two entities that interact with each other to facilitate various business processes. DLS provides APP ID values to ESB, which are used to match cases in CRM (Customer Relationship Management). Additionally, ESB receives input from DLS, including IMEI (International Mobile Equipment Identity) and APID (Application ID) details of Trade-In devices. Furthermore, DLS receives notifications from ESB about promoting trade-in orders to Re-commerce.\"\n\nLet me know if you need any further assistance!", "to": "\"ESB\"", "width": 1}, {"from": "\"DLS\"", "label": "\"DLS provides APP ID values used by ESB for validation and case management.\"", "to": "\"APP ID\"", "width": 1}, {"from": "\"DLS\"", "label": "\"DLS sets the value of Device_Upfront_amount_before_discount_Next_R1.\"", "to": "\"DEVICE_UPFRONT_AMOUNT_BEFORE_DISCOUNT_NEXT_R1\"", "width": 1}, {"from": "\"DIGITAL\"", "label": "\"The retail agent interacts with Digital\u0027s system to search for customers and select device-related campaigns.\"", "to": "\"RETAIL AGENT\"", "width": 1}, {"from": "\"DIGITAL\"", "label": "Here is a comprehensive summary of the provided data:\n\nDIGITAL and OMS work together to enhance the trade-in process during orders. As part of this collaboration, DIGITAL populates attributes and returns data, which enables OMS to facilitate an improved trade-in experience for customers. Through their combined efforts, DIGITAL and OMS streamline the order process, making it more efficient and effective.\n\nLet me know if you need any further assistance!", "to": "\"OMS\"", "width": 1}, {"from": "\"DIGITAL\"", "label": "Here is a comprehensive summary of the data:\n\nDIGITAL and CRM are interconnected entities that work together to facilitate customer interactions and data management. DIGITAL creates cases in CRM, including Discount Trade In cases, which indicates a direct connection between the two entities. Additionally, DIGITAL interacts with customers through these cases. Meanwhile, CRM receives input data from DIGITAL and checks for mandatory fields, ensuring that all necessary information is present. Through this collaboration, DIGITAL and CRM enable efficient customer management and data processing.", "to": "\"CRM\"", "width": 1}, {"from": "\"DIGITAL\"", "label": "\"Digital provides input data for Trade In Standalone case creation.\"", "to": "\"TRADE IN STANDALONE CASE\"", "width": 1}, {"from": "\"DIGITAL\"", "label": "\"Digital provides input data for Discount Trade in case creation, which does not require MSISDN.\"", "to": "\"DISCOUNT TRADE IN CASE\"", "width": 1}, {"from": "\"DIGITAL\"", "label": "\"Retail uses the Digital platform to show messages and provide discounts to customers for trade-in devices.\"", "to": "\"RETAIL\"", "width": 1}, {"from": "\"RETAIL AGENT\"", "label": "\"The Retail Agent applies discounts on device upfront amounts for Giga Family members based on GRT, showing their interaction.\"", "to": "\"GIGA FAMILY\"", "width": 1}, {"from": "\"AMDOCS\"", "label": "\"Amdocs provides ESB technology for integrating different systems and services.\"", "to": "\"ESB\"", "width": 1}, {"from": "\"ESB\"", "label": "\"ESB sends trade-in/donation information to AMDD, which generates mobile contracts with discount details.\"", "to": "\"AMDD\"", "width": 1}, {"from": "\"ESB\"", "label": "\"Ordering sends notifications to ESB, which then calls a new DLS service to notify DLS.\"", "to": "\"ORDERING\"", "width": 1}, {"from": "\"ESB\"", "label": "\"ESB is used to check if a device IMEI has an active installment plan, showing a relationship between the technology and the device.\"", "to": "\"DEVICE IMEI\"", "width": 1}, {"from": "\"ESB\"", "label": "Here is the comprehensive summary:\n\nESB and CRM are integrated systems that work together to manage customer cases. ESB integrates with CRM to close cases, retrieve information, and search for customer cases. In this integration, ESB uses CRM APIs to update flex attribute values and ensure case closure. However, there is a possibility of encountering errors during this process, such as \u0027no MSISDN found\u0027 in CRM. Despite this potential issue, the integration of ESB and CRM enables efficient case management and provides a seamless experience for customers.", "to": "\"CRM\"", "width": 1}, {"from": "\"ESB\"", "label": "\"ESB receives notifications from DSL about Trade In completion events.\"", "to": "\"DSL\"", "width": 1}, {"from": "\"ESB\"", "label": "\"ESB interacts with CRM API to close cases and update flex attribute values.\"", "to": "\"CRM API\"", "width": 1}, {"from": "\"ESB\"", "label": "\"ESB manages cases and updates their status based on input criteria and API responses.\"", "to": "\"CASE\"", "width": 1}, {"from": "\"GIGA FAMILY\"", "label": "\"Giga Family members receive a discount amount applied to device upfront amounts based on GRT.\"", "to": "\"GIGA_FAMILY_DISCOUNT_AMOUNT_NEXT_R1\"", "width": 1}, {"from": "\"GIGA FAMILY\"", "label": "\"Giga Family provides GF discount GRT, which affects the calculation of discount amounts.\"", "to": "\"GF DISCOUNT GRT\"", "width": 1}, {"from": "\"OMS\"", "label": "\"CRM returns exceptions to OMS, which handles error messages.\"", "to": "\"CRM\"", "width": 1}, {"from": "\"CRM\"", "label": "\"CRM creates cases for Trade In Discount as part of the Ordering Trade In flow.\"", "to": "\"ORDERING\"", "width": 1}, {"from": "\"CRM\"", "label": "\"CRM interacts with Retail by sending error codes and messages.\"", "to": "\"RETAIL\"", "width": 1}, {"from": "\"CRM\"", "label": "\"CRM uses MTV1780 to define the case type for Standalone Trade In process, highlighting their connection.\"", "to": "\"MTV1780\"", "width": 1}, {"from": "\"CRM\"", "label": "\"Call Center Agents interact with CRM to manage cases, including updating case details and closing cases manually.\"", "to": "\"CALL CENTER AGENT\"", "width": 1}, {"from": "\"CRM\"", "label": "Here is a comprehensive summary of the data:\n\nThe CRM system is utilized by the Agent to manage and update case information. Specifically, the Agent employs CRM to manually close cases when necessary, which involves updating flex attributes. However, it is important to note that CRM does not perform validation on certain fields, including the selected Resolution code or Confirmed Trade In device flex attribute value, during this manual closure process.\n\nLet me know if you need any further assistance!", "to": "\"AGENT\"", "width": 1}, {"from": "\"CRM\"", "label": "\"DSL updates MSISDN information in CRM, which is used by Agents to close cases manually.\"", "to": "\"DSL\"", "width": 1}, {"from": "\"CRM\"", "label": "\"M1780 defines resolution codes used in CRM for Standalone Trade-in cases.\"", "to": "\"M1780\"", "width": 1}, {"from": "\"DISCOUNT TRADE IN CASE\"", "label": "\"BPT configuration defines the auto-closure period for Discount Trade In cases.\"", "to": "\"BPT\"", "width": 1}, {"from": "\"DISCOUNT TRADE IN CASE\"", "label": "\"VFIT_CRM_GE_Support_R1 technology is used to support the management of Discount Trade In cases.\"", "to": "\"VFIT_CRM_GE_SUPPORT_R1\"", "width": 1}, {"from": "\"DISCOUNT TRADE IN CASE\"", "label": "\"The Call Center is responsible for handling Discount Trade In cases, including creating and managing them.\"", "to": "\"CALL CENTER\"", "width": 1}, {"from": "\"RETAIL\"", "label": "\"Retail receives CV results and presents them to users, forcing action on their orders.\"", "to": "\"CV\"", "width": 1}, {"from": "\"RETAIL\"", "label": "\"FCV returns reason codes to Retail, which presents new messages to users.\"", "to": "\"FCV\"", "width": 1}, {"from": "\"RETAIL\"", "label": "\"GE is related to Retail sales channel.\"", "to": "\"GE\"", "width": 1}, {"from": "\"RETAIL\"", "label": "\"Retail is involved in the event of VFIT_Ordering_BPT_R1, providing messages and decline decisions for trade-in devices.\"", "to": "\"VFIT_ORDERING_BPT_R1\"", "width": 1}, {"from": "\"RETAIL\"", "label": "Here is the comprehensive summary:\n\nRetail and VFIT_DIGITAL_GE_R1 have a collaborative relationship where VFIT_DIGITAL_GE_R1 provides digital-specific items and services to Retail, influencing their sales processes. Additionally, VFIT_DIGITAL_GE_R1 works with Retail to provide digital specific items and installment calculations, further supporting Retail\u0027s operations.\n\nLet me know if you need any adjustments!", "to": "\"VFIT_DIGITAL_GE_R1\"", "width": 1}, {"from": "\"MEC\"", "label": "\"MEC provides details on trade-in discounts, which are applied to the upfront amount of devices.\"", "to": "\"TRADE-IN DISCOUNT\"", "width": 1}, {"from": "\"MEC\"", "label": "\"MEC will add a new COP parameter, indicating a change in the system.\"", "to": "\"COP PARAMETER\"", "width": 1}, {"from": "\"MEC\"", "label": "\"MEC provides scripts to CM to populate the new COP parameter with default values for existing customers.\"", "to": "\"CM\"", "width": 1}, {"from": "\"MEC\"", "label": "\"New attributes will be defined on Device component for Trade-in of FLEX devices only in MEC, showing a direct relationship.\"", "to": "\"DEVICE\"", "width": 1}, {"from": "\"CM\"", "label": "\"CM defines the COP parameter \u0027Returned device value\u0027 with default value -1 for existing customers.\"", "to": "\"COP NAME\"", "width": 1}, {"from": "\"AEM\"", "label": "\"AEM is used to store and manage POS codes, which are used to enable certain functionality.\"", "to": "\"POS\"", "width": 1}, {"from": "\"AMDD\"", "label": "\"Ordering passes contract generation information to AMDD, which involves device upfront amounts, discounts, and returned device values.\"", "to": "\"ORDERING\"", "width": 1}, {"from": "\"AMDD\"", "label": "\"VF focal has a contract discussion with AMDD, influencing the presentation of trade-in/donation details.\"", "to": "\"VF FOCAL\"", "width": 1}, {"from": "\"AMDD\"", "label": "\"Billing sends discounted amounts to AMDD, which are used in the Standalone Mobile Contract generation.\"", "to": "\"BILLING\"", "width": 1}, {"from": "\"AMDD\"", "label": "\"AMDD presents trade-in/donation details for the Flex device in the Standalone Mobile Contract generation.\"", "to": "\"FLEX DEVICE\"", "width": 1}, {"from": "\"FLEX DEVICE\"", "label": "\"PCO evaluates Flex devices for certain use cases (UCs).\"", "to": "\"PCO\"", "width": 1}, {"from": "\"FLEX DEVICE\"", "label": "\"CV evaluates Flex devices for validation and payment processing.\"", "to": "\"CV\"", "width": 1}, {"from": "\"PCO\"", "label": "\"PCO uses FCV technology to manage flex devices and apply a new specific strategy to orders containing Flex/Trade-in cases.\"", "to": "\"FCV\"", "width": 1}, {"from": "\"VFIT_DIGITAL_GE_R1\"", "label": "\"VFIT_Digital_GE_R1 is involved in the creation of Discount Trade In cases.\"", "to": "\"DISCOUNT TRADE IN\"", "width": 1}, {"from": "\"CASE\"", "label": "\"MSISDN is used to identify cases in CRM DB.\"", "to": "\"MSISDN\"", "width": 1}, {"from": "\"MTV1780\"", "label": "\"Call Center is affected by the MTV1780 event, which influences case closure and update policies.\"", "to": "\"CALL CENTER\"", "width": 1}, {"from": "\"CALL CENTER\"", "label": "\"Call Center uses VFIT_CRM_GE_Support_R1 for CRM support and case management.\"", "to": "\"VFIT_CRM_GE_SUPPORT_R1\"", "width": 1}, {"from": "\"CALL CENTER\"", "label": "\"Call Center handles Trade In Standalone cases.\"", "to": "\"TRADE IN STANDALONE\"", "width": 1}, {"from": "\"CALL CENTER\"", "label": "\"BR provides guidelines for Call Center agents to close cases automatically after a certain period.\"", "to": "\"BR\"", "width": 1}, {"from": "\"IMEI\"", "label": "\"IMEI is used to identify devices in Trade In cases.\"", "to": "\"TRADE IN CASE\"", "width": 1}, {"from": "\"IMEI\"", "label": "\"AEIR maintains a blacklist of IMEI numbers, which affects the donation process and error messages displayed to users.\"", "to": "\"AEIR\"", "width": 1}, {"from": "\"IMLS\"", "label": "\"IMLS has interfaces impacted by the requirement, including Check Active Device Installment.\"", "to": "\"CHECK ACTIVE DEVICE INSTALLMENT\"", "width": 1}, {"from": "\"APIX\"", "label": "\"APIX is a provider of the Retrieve Device Trade-In Data interface to Amdocs Retail Interaction Manager.\"", "to": "\"AMDOCS RETAIL INTERACTION MANAGER\"", "width": 1}, {"from": "\"RT - CRM\"", "label": "\"The handover of orders from RT - CRM will remain as per M1753, indicating a connection between Contracts and RT - CRM.\"", "to": "\"CONTRACTS\"", "width": 1}, {"from": "\"RLC\"", "label": "\"The Returned device value parameter will be added to RLC, indicating its connection to the organization.\"", "to": "\"RETURNED DEVICE VALUE\"", "width": 1}, {"from": "\"RLC\"", "label": "\"RLC accesses the GRT to retrieve discount amounts and apply them to device sales.\"", "to": "\"GRT\"", "width": 1}, {"from": "\"RLC\"", "label": "\"RLC retrieves device upfront amount price from Device GRT or campaign.\"", "to": "\"DEVICE GRT\"", "width": 1}, {"from": "\"RLC\"", "label": "\"BIAnamaria Giza updated the RLC impact section of the release notes.\"", "to": "\"BIANAMARIA GIZA\"", "width": 1}, {"from": "\"GRT\"", "label": "\"The Trade In Extra Discount is stored in a GRT and accessed by RLC to apply the discount.\"", "to": "\"TRADE IN EXTRA DISCOUNT\"", "width": 1}, {"from": "\"OC\"", "label": "\"OC enhances CET with attributes.\"", "to": "\"CET\"", "width": 1}, {"from": "\"NXT\"", "label": "\"NXT is used for tracking and managing installments, influencing the error messages displayed to users in case of active installments.\"", "to": "\"INSTALLMENTS\"", "width": 1}, {"from": "\"BR\"", "label": "\"VFIT_CRM_GE_Workflow_R1 is used in conjunction with BR guidelines for workflow management.\"", "to": "\"VFIT_CRM_GE_WORKFLOW_R1\"", "width": 1}, {"from": "\"ALTRI PRODOTTI E SERVIZI:\"", "label": "\"The template contains information about FLEX devices and trade-in/donation details in the ALTRI PRODOTTI E SERVIZI section.\"", "to": "\"TEMPLATE FOR STANDALONE MOBILE CONTRACT WITH FLEX DEVICE WITH TRADE-IN\"", "width": 1}, {"from": "\"EMAIL CONTRACT NOTIFICATION\"", "label": "\"The email contract notification is reused from M1716.\"", "to": "\"M1716\"", "width": 1}, {"from": "\"SIVAN NOY\"", "label": "\"Sivan Noy is an editor who contributed to the initial version of the release notes, which involves OMSAvivit Seesam.\"", "to": "\"OMSAVIVIT SEESAM\"", "width": 1}, {"from": "\"CHARIKLIA ECONOMIDE\"", "label": "\"Chariklia Economide was involved in discussions related to VFIT NEXT, indicating their role in the project.\"", "to": "\"VFIT NEXT\"", "width": 1}]);
nodeColors = {};
allNodes = nodes.get({ returnType: "Object" });
for (nodeId in allNodes) {
nodeColors[nodeId] = allNodes[nodeId].color;
}
allEdges = edges.get({ returnType: "Object" });
// adding nodes and edges to the graph
data = {nodes: nodes, edges: edges};
var options = {"nodes": {"shape": "dot", "size": 10, "font": {"size": 16}}, "edges": {"color": {"inherit": "from"}, "smooth": {"type": "dynamic"}}, "physics": {"enabled": true, "barnesHut": {"gravitationalConstant": -8000, "centralGravity": 0.3, "springLength": 95, "springConstant": 0.04, "damping": 0.09}, "minVelocity": 0.75}, "interaction": {"hover": true, "tooltipDelay": 200, "hideEdgesOnDrag": true, "hideNodesOnDrag": true}};
network = new vis.Network(container, data, options);
network.on("stabilizationProgress", function(params) {
document.getElementById('loadingBar').removeAttribute("style");
var maxWidth = 496;
var minWidth = 20;
var widthFactor = params.iterations/params.total;
var width = Math.max(minWidth,maxWidth * widthFactor);
document.getElementById('bar').style.width = width + 'px';
document.getElementById('text').innerHTML = Math.round(widthFactor*100) + '%';
});
network.once("stabilizationIterationsDone", function() {
document.getElementById('text').innerHTML = '100%';
document.getElementById('bar').style.width = '496px';
document.getElementById('loadingBar').style.opacity = 0;
// really clean the dom element
setTimeout(function () {document.getElementById('loadingBar').style.display = 'none';}, 500);
});
return network;
}
drawGraph();
</script>
</body>
</html>