Subversion Repositories SmartDukaan

Rev

Rev 29804 | Rev 33649 | 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
 
33618 tejus.loha 35
</style>
28758 amit.gupta 36
 
37
    <section class="wrapper">
38
    <div class="row">
39
        <div class="col-lg-12">
33618 tejus.loha 40
            <h3 class="page-header"><i class="icon_document_alt"></i>Finance Services</h3>
28758 amit.gupta 41
            <ol class="breadcrumb">
42
                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
33618 tejus.loha 43
                <li><i class="icon_document_alt"></i>Finance Services</li>
28758 amit.gupta 44
            </ol>
45
        </div>
46
    </div>
47
 
29804 manish 48
  <table class="table table-border table-condensed table-bordered">
49
    <tr>
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
 
29804 manish 59
  </tr>
29771 manish 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()))
29778 manish 85
 
86
                #if($financeAuthorityCheck)
87
 
29804 manish 88
               #set ( $bandsSize = $serviceBrandsConfigMap.get($paymentOption.getId()).size() + 3 )
29771 manish 89
                <th colspan="$bandsSize">
28758 amit.gupta 90
                $paymentOption.getName()
91
                </th>
29778 manish 92
                #else
93
 
29804 manish 94
                  #set ( $bandsSize = $serviceBrandsConfigMap.get($paymentOption.getId()).size() + 2)
29778 manish 95
                <th colspan="$bandsSize">
96
                $paymentOption.getName()
97
                </th>
98
 
99
                #end
100
 
29771 manish 101
                #end 
28758 amit.gupta 102
              #end
29771 manish 103
 
28758 amit.gupta 104
              </tr>
105
              <tr>
106
              #foreach($paymentOption in $paymentOptions)
107
              #if($serviceBrandsConfigMap.containsKey($paymentOption.getId()))
29778 manish 108
              #if($financeAuthorityCheck)
29771 manish 109
               <th>activation</th>
29778 manish 110
               #end
28758 amit.gupta 111
              #foreach($serviceBrand in $serviceBrandsConfigMap.get($paymentOption.getId()))    
112
              <th >
113
              <img src="${brandUrlMap.get($serviceBrand.getBrand())}"
114
                                 class="cover-brand $serviceBrand.getBrand()" id="finBrandUrl" style="height: 30px;">
115
              </th>
29771 manish 116
 
28758 amit.gupta 117
              #end
29771 manish 118
               <th>Service Comment</th>
29804 manish 119
               <th>Follow UP</th>
29771 manish 120
              #end 
28758 amit.gupta 121
              #end
29771 manish 122
 
28758 amit.gupta 123
            </tr>
124
 
125
            </thead>
126
            <tbody>
29771 manish 127
             #foreach($entryCr in $customRetailers)
128
           <tr>
129
             #parse("finance-service-row.vm")
130
           </tr>	
28758 amit.gupta 131
           #end
132
            </tbody>
133
 
134
        </table>
135
    </div>
136
 
137
    </section>
138
 
139
    <script>
140
 
141
        var dtable = $('#financePartnerServices').DataTable(
142
                {
143
 
28761 amit.gupta 144
                  "scrollX": true,
28766 amit.gupta 145
            "scrollCollapse": true,
28765 amit.gupta 146
             "scrollY": "700px",
147
               "fixedHeader": true,
29024 manish 148
               "order": [[ 0, "desc" ]],
28765 amit.gupta 149
                  "fixedColumns":   {
29771 manish 150
                    leftColumns: 2
28883 manish 151
                     },
28758 amit.gupta 152
 
153
                });
29024 manish 154
 
29771 manish 155
 
28758 amit.gupta 156
 
157
 
158
    </script>