| 24317 |
govind |
1 |
<style>
|
|
|
2 |
.column {
|
|
|
3 |
float: none;
|
|
|
4 |
width: 50%;
|
|
|
5 |
position:relative;
|
|
|
6 |
padding: 5px;
|
|
|
7 |
left:40px;
|
|
|
8 |
border-style: groove;
|
|
|
9 |
border-width: 1px;
|
|
|
10 |
}
|
|
|
11 |
a {
|
|
|
12 |
text-decoration: none !important;
|
|
|
13 |
}
|
|
|
14 |
|
|
|
15 |
.tooltip-arrow,
|
|
|
16 |
.red-tooltip + .tooltip.top > .tooltip-inner {background-color: #f00;}
|
|
|
17 |
|
|
|
18 |
</style>
|
|
|
19 |
<script>
|
|
|
20 |
$(document).ready(function(){
|
|
|
21 |
$('[data-toggle="tooltip"]').tooltip();
|
|
|
22 |
});
|
|
|
23 |
</script>
|
| 29049 |
tejbeer |
24 |
|
| 24317 |
govind |
25 |
#if($roleType=="false")
|
|
|
26 |
<section class="wrapper">
|
|
|
27 |
<div class="row">
|
|
|
28 |
<div class="col-lg-12">
|
|
|
29 |
<h3 class="page-header">
|
|
|
30 |
<i class="icon_document_alt">
|
|
|
31 |
</i>SERVICE
|
|
|
32 |
</h3>
|
|
|
33 |
<ol class="breadcrumb">
|
|
|
34 |
<li>
|
|
|
35 |
<i class="fa fa-home">
|
|
|
36 |
</i>
|
| 32771 |
raveendra. |
37 |
<a href="${rc.contextPath}/dashboard">#springMessage("finservice.home")
|
| 24317 |
govind |
38 |
</a>
|
|
|
39 |
</li>
|
| 31805 |
amit.gupta |
40 |
<li>
|
|
|
41 |
<i class="icon_document_alt">
|
| 32771 |
raveendra. |
42 |
</i>#springMessage("finservice.partnerservice")
|
| 31805 |
amit.gupta |
43 |
</li>
|
|
|
44 |
<!--Training Video -->
|
| 31986 |
tejbeer |
45 |
<li><a href="#videoModal" class="btn btn-danger" data-toggle="modal" data-src="prURXYMPaYo"><span
|
| 32771 |
raveendra. |
46 |
class="glyphicon glyphicon-play-circle"></span> #springMessage("finservice.playvideo")</a></li>
|
| 31986 |
tejbeer |
47 |
|
|
|
48 |
</ol>
|
| 24317 |
govind |
49 |
</div>
|
|
|
50 |
</div>
|
| 31805 |
amit.gupta |
51 |
<div class="row">
|
|
|
52 |
#foreach($paymentOption in $paymentOptions)
|
| 24317 |
govind |
53 |
#if($serviceIdPartnerServiceMap.get($paymentOption.getId()).getApplicableType()=="YES")
|
|
|
54 |
#if($serviceIdPartnerServiceMap.get($paymentOption.getId()).getCode())
|
|
|
55 |
<div class="column">
|
|
|
56 |
<h4>
|
| 24329 |
govind |
57 |
<label>
|
| 24328 |
govind |
58 |
<span>$paymentOption.getName()</span>
|
| 24317 |
govind |
59 |
</label>
|
|
|
60 |
</h4>
|
|
|
61 |
#foreach($serviceBrandsConfig in $serviceIdAndServiceBrandsConfigMap.get($paymentOption.getId()))
|
|
|
62 |
#if($serviceBrandIdPartnerBrandServiceMap.get($serviceBrandsConfig.getId()))
|
|
|
63 |
#if($serviceBrandIdPartnerBrandServiceMap.get($serviceBrandsConfig.getId()).getApplicableType()=="YES")
|
|
|
64 |
#if($serviceBrandIdPartnerBrandServiceMap.get($serviceBrandsConfig.getId()).isActive()==true)
|
|
|
65 |
#if($serviceBrandIdPartnerBrandServiceMap.get($serviceBrandsConfig.getId()).getPartnerStatusType()=="WORKING")
|
|
|
66 |
<label class="checkbox-inline">
|
| 28758 |
amit.gupta |
67 |
<input type="checkbox" class ="fin-service-brand" value="$serviceBrandsConfig.getId()" onchange="onChangeStateServiceBrand(this,$paymentOption.getId(),`$serviceBrandsConfig.getBrand()`)" checked data-brand="$serviceBrandsConfig.getBrand()">$serviceBrandsConfig.getBrand()
|
| 24317 |
govind |
68 |
</label>
|
|
|
69 |
#else
|
|
|
70 |
<label class="checkbox-inline">
|
| 28758 |
amit.gupta |
71 |
<input type="checkbox" class ="fin-service-brand" value="$serviceBrandsConfig.getId()" onchange="onChangeStateServiceBrand(this,$paymentOption.getId(),`$serviceBrandsConfig.getBrand()`)" disabled data-brand="$serviceBrandsConfig.getBrand()">$serviceBrandsConfig.getBrand()
|
| 24317 |
govind |
72 |
</label> <img src="http://vignette2.wikia.nocookie.net/psi/images/a/ac/Not-allowed-sign.jpg/revision/latest?cb=20130413190602" alt="notWorking" style="width:15px;height:15px;" title="NOT WORKING">
|
|
|
73 |
#end
|
|
|
74 |
#else
|
|
|
75 |
<label class="checkbox-inline">
|
| 28758 |
amit.gupta |
76 |
<input type="checkbox" class ="fin-service-brand" value="$serviceBrandsConfig.getId()" onchange="onChangeStateServiceBrand(this,$paymentOption.getId(),`$serviceBrandsConfig.getBrand()`)" disabled data-brand="$serviceBrandsConfig.getBrand()">$serviceBrandsConfig.getBrand()<span style="color:red" data-toggle="tooltip" title="INACTIVE" class="red-tooltip"> ✕</span>
|
| 24317 |
govind |
77 |
</label>
|
|
|
78 |
#end
|
|
|
79 |
#else
|
| 29051 |
manish |
80 |
<label class="checkbox-inline">
|
|
|
81 |
<input type="checkbox" class ="fin-service-brand" value="$serviceBrandsConfig.getId()" onchange="onChangeStateServiceBrand(this,$paymentOption.getId(),`$serviceBrandsConfig.getBrand()`)" disabled data-brand="$serviceBrandsConfig.getBrand()">$serviceBrandsConfig.getBrand() <button class="notApplicableBrandService btn-danger btn-md" data-nacommentservice="$serviceBrandIdPartnerBrandServiceMap.get($serviceBrandsConfig.getId()).getNa_Comment()">NA</button>
|
|
|
82 |
</label>
|
|
|
83 |
#end
|
|
|
84 |
#else
|
| 24317 |
govind |
85 |
<label class="checkbox-inline">
|
| 28758 |
amit.gupta |
86 |
<input type="checkbox" class ="fin-service-brand" value="$serviceBrandsConfig.getId()" onchange="onChangeStateServiceBrand(this,$paymentOption.getId(),`$serviceBrandsConfig.getBrand()`)" checked data-brand="$serviceBrandsConfig.getBrand()">$serviceBrandsConfig.getBrand()
|
| 24317 |
govind |
87 |
</label>
|
|
|
88 |
#end
|
|
|
89 |
#end
|
|
|
90 |
</div>
|
|
|
91 |
#else
|
|
|
92 |
#end
|
|
|
93 |
#else
|
| 29051 |
manish |
94 |
|
|
|
95 |
#end
|
| 24317 |
govind |
96 |
#end
|
|
|
97 |
</div>
|
|
|
98 |
</section>
|
|
|
99 |
#else
|
|
|
100 |
<div class="row">
|
|
|
101 |
#foreach($paymentOption in $paymentOptions)
|
|
|
102 |
#if($serviceIdPartnerServiceMap.get($paymentOption.getId()).getApplicableType()=="YES")
|
| 28829 |
amit.gupta |
103 |
#if($serviceIdPartnerServiceMap.get($paymentOption.getId()).getCode())
|
|
|
104 |
<div class="column">
|
|
|
105 |
<h4>
|
|
|
106 |
<label>
|
|
|
107 |
<span>$paymentOption.getName() </span>
|
|
|
108 |
<a href="javascript:void(0)">Applicable</a>
|
|
|
109 |
<button class="markNA btn-primary btn-md">Mark NA</button>
|
|
|
110 |
<a href="javascript:void(0)" style="color:blue" title="Activated">✔</span>
|
|
|
111 |
</label> <a href="javascript:void(0)" style="color:red" title="DEACTIVATE SERVICE" class="deactivate-service" data-serviceid="$paymentOption.getId()">Deactivate</a>
|
| 28838 |
amit.gupta |
112 |
</h4>
|
| 28829 |
amit.gupta |
113 |
#foreach($serviceBrandsConfig in $serviceIdAndServiceBrandsConfigMap.get($paymentOption.getId()))
|
|
|
114 |
#if($serviceBrandIdPartnerBrandServiceMap.get($serviceBrandsConfig.getId()))
|
|
|
115 |
#if($serviceBrandIdPartnerBrandServiceMap.get($serviceBrandsConfig.getId()).getApplicableType()=="YES")
|
|
|
116 |
#if($serviceBrandIdPartnerBrandServiceMap.get($serviceBrandsConfig.getId()).isActive()==true)
|
|
|
117 |
#if($serviceBrandIdPartnerBrandServiceMap.get($serviceBrandsConfig.getId()).getPartnerStatusType()=="WORKING")
|
|
|
118 |
<label class="checkbox-inline">
|
|
|
119 |
<input type="checkbox" value="$serviceBrandsConfig.getId()" onchange="onChangeStateServiceBrand(this,$paymentOption.getId())" checked>$serviceBrandsConfig.getBrand() <a href="javascript:void(0)" style="color:blue" title="Activated">✔</a>
|
| 29051 |
manish |
120 |
</label><a href="#" style="color:red" title="DEACTIVATE SERVICE" title="DEACTIVATE BRAND SERVICE" class="deactivate-brand-service-modal" data-serviceid="$paymentOption.getId()" data-servicebrandid="$serviceBrandsConfig.getId()"data-toggle="modal" data-target="#myServiceDeActivateBrand">Deactivate</a>
|
|
|
121 |
<div id="myServiceDeActivateBrand" class="modal fade" role="dialog">
|
|
|
122 |
</div>
|
|
|
123 |
#else
|
| 28829 |
amit.gupta |
124 |
<label class="checkbox-inline">
|
|
|
125 |
<input type="checkbox" value="$serviceBrandsConfig.getId()" onchange="onChangeStateServiceBrand(this,$paymentOption.getId())">$serviceBrandsConfig.getBrand()
|
|
|
126 |
</label> <img src="http://vignette2.wikia.nocookie.net/psi/images/a/ac/Not-allowed-sign.jpg/revision/latest?cb=20130413190602" alt="notWorking" style="width:20px;height:10px;" title="NOT WORKING">
|
|
|
127 |
#end
|
|
|
128 |
#else
|
|
|
129 |
<label class="checkbox-inline">
|
|
|
130 |
<input type="checkbox" value="$serviceBrandsConfig.getId()" onchange="onChangeStateServiceBrand(this,$paymentOption.getId())" disabled>$serviceBrandsConfig.getBrand() <a href="javascript:void(0)" style="color:red" title="Deactivated"> ✕</a>
|
| 29051 |
manish |
131 |
</label> <a href="#" style="color:blue" title="ACTIVATE BRAND SERVICE" class="activate-brand-service-modal" data-serviceid="$paymentOption.getId()" data-servicebrandid="$serviceBrandsConfig.getId()" data-toggle="modal" data-target="#myServiceActivateBrand">Activate</a>
|
|
|
132 |
<div id="myServiceActivateBrand" class="modal fade" role="dialog">
|
|
|
133 |
</div>
|
|
|
134 |
#end
|
| 28829 |
amit.gupta |
135 |
#else
|
|
|
136 |
<label class="checkbox-inline">
|
|
|
137 |
<input type="checkbox" value="$serviceBrandsConfig.getId()" onchange="onChangeStateServiceBrand(this,$paymentOption.getId())" disabled>$serviceBrandsConfig.getBrand() <button class="notApplicableBrandService btn-danger btn-md" data-nacommentservice="$serviceBrandIdPartnerBrandServiceMap.get($serviceBrandsConfig.getId()).getNa_Comment()">NA</button>
|
|
|
138 |
</label>
|
|
|
139 |
#end
|
|
|
140 |
#else
|
|
|
141 |
<label class="checkbox-inline">
|
|
|
142 |
<input type="checkbox" value="$serviceBrandsConfig.getId()" onchange="onChangeStateServiceBrand(this,$paymentOption.getId())" checked>$serviceBrandsConfig.getBrand() <a href="javascript:void(0)" style="color:blue" title="Activated">✔</a>
|
|
|
143 |
</label> <a href="javascript:void(0)" style="color:red" title="DEACTIVATE BRAND SERVICE" class="deactivate-brand-service" data-serviceid="$paymentOption.getId()" data-servicebrandid="$serviceBrandsConfig.getId()">Deactivate</a>
|
|
|
144 |
#end
|
|
|
145 |
#end
|
|
|
146 |
</div>
|
|
|
147 |
#else
|
|
|
148 |
<div class="column">
|
|
|
149 |
<h4>
|
| 29058 |
manish |
150 |
<label>
|
| 28829 |
amit.gupta |
151 |
<span>$paymentOption.getName()</span>
|
|
|
152 |
<a href="javascript:void(0)">Applicable</a>
|
|
|
153 |
<button class="markNA btn-primary btn-md" data-serviceid="$paymentOption.getId()">Mark NA</button>
|
|
|
154 |
<a href="javascript:void(0)" style="color:red" title="Deactivated">✕</a>
|
|
|
155 |
</label> <a href="javascript:void(0)" style="color:blue" title="ACTIVATE SERVICE" class="activate-service" data-serviceid="$paymentOption.getId()">Activate</a>
|
|
|
156 |
</h4>
|
|
|
157 |
#foreach($serviceBrandsConfig in $serviceIdAndServiceBrandsConfigMap.get($paymentOption.getId()))
|
|
|
158 |
<label class="checkbox-inline">
|
|
|
159 |
<input type="checkbox" value="$serviceBrandsConfig.getId()" onchange="onChangeStateServiceBrand(this,$paymentOption.getId())" disabled>$serviceBrandsConfig.getBrand()
|
|
|
160 |
</label>
|
|
|
161 |
#end
|
|
|
162 |
</div>
|
|
|
163 |
#end
|
| 24317 |
govind |
164 |
#else
|
|
|
165 |
<div class="column">
|
|
|
166 |
<h4>
|
| 24328 |
govind |
167 |
<label>
|
| 28829 |
amit.gupta |
168 |
<span>$paymentOption.getName()</span>
|
| 29064 |
manish |
169 |
<button class="notApplicableByPartner btn-danger btn-md" data-toggle="modal" data-target="#serviceDeactivateByPartnerModal" data-serviceid="$paymentOption.getId()">PNI</button>
|
| 28829 |
amit.gupta |
170 |
<button class="markApplicable btn-primary btn-md" data-serviceid="$paymentOption.getId()">Mark Applicable</button>
|
| 29064 |
manish |
171 |
<button class="markNA btn-danger btn-md" data-serviceid="$paymentOption.getId()">Mark NA</button>
|
| 24317 |
govind |
172 |
</label>
|
| 29064 |
manish |
173 |
|
|
|
174 |
<div id="serviceDeactivateByPartnerModal" class="modal fade" role="dialog"></div>
|
| 24317 |
govind |
175 |
</h4>
|
|
|
176 |
</div>
|
|
|
177 |
#end
|
|
|
178 |
#end
|
|
|
179 |
</div>
|
|
|
180 |
#end
|