Subversion Repositories SmartDukaan

Rev

Rev 29007 | Rev 29300 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 29007 Rev 29088
Line 65... Line 65...
65
        </table>
65
        </table>
66
    </div>
66
    </div>
67
</section>
67
</section>
68
 
68
 
69
 
69
 
-
 
70
<section class="wrapper">
-
 
71
    <div class="row">
-
 
72
        <div class="col-lg-12">
-
 
73
            <h3 class="page-header"><i class="icon_document_alt"></i>Partner Billing</h3>
-
 
74
            <ol class="breadcrumb">
-
 
75
                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
-
 
76
                <li><i class="icon_document_alt"></i>Partner Billing</li>
-
 
77
            </ol>
-
 
78
        </div>
-
 
79
    </div>
-
 
80
    <div class="col-lg-6">
-
 
81
        <table class="table table-border table-condensed table-bordered" id="partnerbilling" style="width:100%">
-
 
82
 
-
 
83
            <thead class="row htable" style="background:#F5F5F5;">
-
 
84
 
-
 
85
            <tr style="color:black;">
-
 
86
                <th>Id</th>
-
 
87
                <th>Outlet Name</th>
-
 
88
                <th>Phone Number</th>
-
 
89
                <th>City</th>
-
 
90
                <th>Billing Status</th>
-
 
91
                   <th>Submit</th>
-
 
92
             
-
 
93
            </tr>
-
 
94
            </thead>
-
 
95
            <tbody>
-
 
96
                #foreach($pob in $partnerOnBoardingPendings )
-
 
97
                   #if($partnerVerificationBillingMap.containsKey($pob.getId()))
-
 
98
                
-
 
99
                     #if($pob.getHoldTimestamp())
-
 
100
                     <tr class="hold-verification">
-
 
101
              
-
 
102
                 
-
 
103
                  #parse("partner-onboarding-billing-index.vm")
-
 
104
                     </tr>
-
 
105
                    #else
-
 
106
                      
-
 
107
                #if($partnerVerificationBillingMap.containsKey($pob.getId()))
-
 
108
              
-
 
109
                <tr>
-
 
110
                           #parse("partner-onboarding-billing-index.vm")
-
 
111
             
-
 
112
                </tr>
-
 
113
                  
-
 
114
            #else
-
 
115
                #end
-
 
116
                
-
 
117
                
-
 
118
                
-
 
119
                #end
-
 
120
                
-
 
121
                #else
-
 
122
                
-
 
123
                #end
-
 
124
                
-
 
125
                #end
-
 
126
                
-
 
127
                
-
 
128
               
-
 
129
 
-
 
130
            </tbody>
-
 
131
 
-
 
132
        </table>
-
 
133
    </div>
-
 
134
</section>
-
 
135
 
-
 
136
 
70
<script type="text/javascript">
137
<script type="text/javascript">
71
 
138
 
72
    $(document).ready(function () {
139
    $(document).ready(function () {
73
    
140
    
74
    
141
    
Line 84... Line 151...
84
        },
151
        },
85
        
152
        
86
     });   
153
     });   
87
     
154
     
88
     
155
     
-
 
156
       var table = $('#partnerbilling').DataTable({
-
 
157
             "scrollX": true,
-
 
158
            "scrollY": "518px",
-
 
159
            scrollCollapse: true,
-
 
160
              "fixedHeader": true,
-
 
161
             
-
 
162
     
-
 
163
        
-
 
164
     });   
-
 
165
     
-
 
166
     
89
    });
167
    });
90
   
168
   
91
    
169
    
92
</script>
170
</script>
93
 
171