Subversion Repositories SmartDukaan

Rev

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

Rev Author Line No. Line
28847 manish 1
<link href="https://cdn.datatables.net/fixedcolumns/3.3.0/css/fixedColumns.bootstrap.css" rel="stylesheet"/>
2
 
3
<section class="wrapper">
4
    <div class="row">
5
        <div class="col-lg-12">
6
            <h3 class="page-header"><i class="icon_document_alt"></i>Partner Verification</h3>
7
            <ol class="breadcrumb">
8
                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
9
                <li><i class="icon_document_alt"></i>Partner Verification</li>
10
            </ol>
11
        </div>
12
    </div>
13
    <div class="col-lg-12">
14
        <table class="table table-border table-condensed table-bordered" id="partnerVerification" style="width:100%">
15
 
16
            <thead class="row htable" style="background:#F5F5F5;">
17
 
18
            <tr style="color:black;">
19
                <th>Id</th>
20
                <th>Outlet Name</th>
28882 manish 21
                 <th>Phone Number</th>
28847 manish 22
                <th>City</th>
23
                <th>Brand Fees</th>
28908 tejbeer 24
                <th>Brand Fees Received</th>
28977 manish 25
                 <th>NOC Upload</th>
28847 manish 26
                <th>NOC From GT </th>
27
                <th>RBM</th>
28
                <th>Comment</th>
29300 manish 29
                <th>Languages</th>
29007 manish 30
                <th>Checklist</th>
28847 manish 31
                <th>Approval</th>
29300 manish 32
                <th>Veri Done</th>   
28847 manish 33
            </tr>
34
            </thead>
35
            <tbody>
36
                #foreach($pob in $partnerOnBoardingPendings )
28934 manish 37
                   #if($partnerVerificationPanelMap.containsKey($pob.getId()))
28932 manish 38
 
39
                    #if($pob.getHoldTimestamp())
40
                     <tr class="hold-verification">
41
                    #parse("partner-onboarding-verification-index.vm")
28847 manish 42
 
28932 manish 43
                     </tr>
44
                    #else
28934 manish 45
                #if($partnerVerificationPanelMap.containsKey($pob.getId()))
28901 manish 46
                 <tr>
28977 manish 47
                        #parse("partner-onboarding-verification-index.vm")
28901 manish 48
                </tr>
28932 manish 49
                #else
28847 manish 50
                #end
28901 manish 51
 
28932 manish 52
 
53
 
28901 manish 54
                #end
28932 manish 55
 
56
                #else
57
 
58
                #end
59
 
60
                #end
28847 manish 61
 
62
            </tbody>
63
 
64
        </table>
65
    </div>
66
</section>
67
 
68
 
29088 tejbeer 69
<section class="wrapper">
70
    <div class="row">
71
        <div class="col-lg-12">
72
            <h3 class="page-header"><i class="icon_document_alt"></i>Partner Billing</h3>
73
            <ol class="breadcrumb">
74
                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
75
                <li><i class="icon_document_alt"></i>Partner Billing</li>
76
            </ol>
77
        </div>
78
    </div>
29559 manish 79
    <div class="col-lg-7">
29088 tejbeer 80
        <table class="table table-border table-condensed table-bordered" id="partnerbilling" style="width:100%">
81
 
82
            <thead class="row htable" style="background:#F5F5F5;">
83
 
84
            <tr style="color:black;">
85
                <th>Id</th>
86
                <th>Outlet Name</th>
87
                <th>Phone Number</th>
88
                <th>City</th>
29559 manish 89
                <th>Advance Stock</th>
90
                <th>Stock Payment</th>
29088 tejbeer 91
                <th>Billing Status</th>
29559 manish 92
               <th>Submit</th>
29088 tejbeer 93
 
94
            </tr>
95
            </thead>
96
            <tbody>
97
                #foreach($pob in $partnerOnBoardingPendings )
98
                   #if($partnerVerificationBillingMap.containsKey($pob.getId()))
99
 
100
                     #if($pob.getHoldTimestamp())
101
                     <tr class="hold-verification">
102
 
103
 
104
                  #parse("partner-onboarding-billing-index.vm")
105
                     </tr>
106
                    #else
107
 
108
                #if($partnerVerificationBillingMap.containsKey($pob.getId()))
109
 
110
                <tr>
111
                           #parse("partner-onboarding-billing-index.vm")
112
 
113
                </tr>
114
 
115
            #else
116
                #end
117
 
118
 
119
 
120
                #end
121
 
122
                #else
123
 
124
                #end
125
 
126
                #end
127
 
128
 
129
 
130
 
131
            </tbody>
132
 
133
        </table>
134
    </div>
135
</section>
136
 
137
 
28847 manish 138
<script type="text/javascript">
139
 
140
    $(document).ready(function () {
141
 
142
 
143
 
144
      var dtable = $('#partnerVerification').DataTable({
145
             "scrollX": true,
146
            "scrollY": "518px",
147
            scrollCollapse: true,
148
              "fixedHeader": true,
149
 
150
        fixedColumns:   {
151
            leftColumns: 2
152
        },
153
 
154
     });   
155
 
156
 
29088 tejbeer 157
       var table = $('#partnerbilling').DataTable({
158
             "scrollX": true,
159
            "scrollY": "518px",
160
            scrollCollapse: true,
161
              "fixedHeader": true,
162
 
163
 
164
 
165
     });   
166
 
167
 
28847 manish 168
    });
169
 
170
 
171
</script>
172
 
173
 
174
<style>
28901 manish 175
.hold-verification td{
176
background-color: crimson !important;
177
 
178
 
179
}
28847 manish 180
</style>