Subversion Repositories SmartDukaan

Rev

Rev 29066 | Rev 29778 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
28758 amit.gupta 1
<style>
2
.working-green
3
{
4
color:green;
5
}
6
.not-working-red
7
{
8
color:red;
9
 
28977 manish 10
}
28758 amit.gupta 11
.cover-brand {
12
 
13
 
28977 manish 14
}
28758 amit.gupta 15
 
28977 manish 16
.servicesComment .psComment {
17
  visibility: hidden;
18
  width: 120px;
19
  background-color: black;
20
  color: #fff;
21
  text-align: center;
22
  border-radius: 6px;
23
  padding: 5px 0;
28758 amit.gupta 24
 
28977 manish 25
  /* Position the tooltip */
26
  position: absolute;
27
  z-index: 1;
28
}
29
 
30
.servicesComment:hover .psComment {
31
  visibility: visible;
32
}
33
 
34
 
35
 
28758 amit.gupta 36
</style    
37
 
38
    <section class="wrapper">
39
    <div class="row">
40
        <div class="col-lg-12">
41
            <h3 class="page-header"><i class="icon_document_alt"></i>Finance Sevices</h3>
42
            <ol class="breadcrumb">
43
                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
44
                <li><i class="icon_document_alt"></i>Finance Sevices</li>
45
            </ol>
46
        </div>
47
    </div>
48
 
29771 manish 49
    <table class="table table-border table-condensed table-bordered">
28758 amit.gupta 50
 
29771 manish 51
     <td>MA -> Mark Applicable</td>
52
    <td>NA -> Not Applicable</td>
53
 
54
    <td>SNA -> Service Not Applicable</td>
55
    <td>PNI -> Partner Not Interested</td>
56
 
57
    <td>No-Code -> Code Not Available</td>
58
 
59
 
60
  <tr>
61
    <td>&#10006; -> Brand not started</td>
62
 
63
    <td><span style="color:red;">&#10006; </span>-> More then seven days brand not started</td>
64
    <td><span style="color:red;">&#10006;&#10006; </span>-> Brand not working from partner side </td>
65
 
66
    <td><span style="color:green;">&#10004 </span> -> Brand proper work </td>
67
    <td>(--) -> Never work on partner</td>
68
  </tr>
69
 
70
</table>
71
 
28758 amit.gupta 72
    <div class="col-lg-12">
73
        <table class="table table-striped table-advance table-hover table-border table-condensed table-bordered" id="financePartnerServices" style="width:100%">
74
 
75
            <thead class="row">
76
 
77
            <tr style="color:black;">
29771 manish 78
             <th rowspan="2" style="display:none">id</th>  
79
                <th rowspan="2" >Partner Name</th>   
80
                <th rowspan="2" >Store Code</th>
81
                <th rowspan="2">Doc Compl</th>  
82
 
28758 amit.gupta 83
               #foreach($paymentOption in $paymentOptions)
84
                #if($serviceBrandsConfigMap.containsKey($paymentOption.getId()))
29771 manish 85
               #set ( $bandsSize = $serviceBrandsConfigMap.get($paymentOption.getId()).size() + 2 )
86
                <th colspan="$bandsSize">
28758 amit.gupta 87
                $paymentOption.getName()
88
                </th>
29771 manish 89
                #end 
28758 amit.gupta 90
              #end
29771 manish 91
 
28758 amit.gupta 92
              </tr>
93
              <tr>
94
              #foreach($paymentOption in $paymentOptions)
95
              #if($serviceBrandsConfigMap.containsKey($paymentOption.getId()))
29771 manish 96
               <th>activation</th>
28758 amit.gupta 97
              #foreach($serviceBrand in $serviceBrandsConfigMap.get($paymentOption.getId()))    
98
              <th >
99
              <img src="${brandUrlMap.get($serviceBrand.getBrand())}"
100
                                 class="cover-brand $serviceBrand.getBrand()" id="finBrandUrl" style="height: 30px;">
101
              </th>
29771 manish 102
 
28758 amit.gupta 103
              #end
29771 manish 104
               <th>Service Comment</th>
105
              #end 
28758 amit.gupta 106
              #end
29771 manish 107
 
28758 amit.gupta 108
            </tr>
109
 
110
            </thead>
111
            <tbody>
29771 manish 112
             #foreach($entryCr in $customRetailers)
113
           <tr>
114
             #parse("finance-service-row.vm")
115
           </tr>	
28758 amit.gupta 116
           #end
117
            </tbody>
118
 
119
        </table>
120
    </div>
121
 
122
    </section>
123
 
124
    <script>
125
 
126
        var dtable = $('#financePartnerServices').DataTable(
127
                {
128
 
28761 amit.gupta 129
                  "scrollX": true,
28766 amit.gupta 130
            "scrollCollapse": true,
28765 amit.gupta 131
             "scrollY": "700px",
132
               "fixedHeader": true,
29024 manish 133
               "order": [[ 0, "desc" ]],
28765 amit.gupta 134
                  "fixedColumns":   {
29771 manish 135
                    leftColumns: 2
28883 manish 136
                     },
28758 amit.gupta 137
 
138
                });
29024 manish 139
 
29771 manish 140
 
28758 amit.gupta 141
 
142
 
143
    </script>