Subversion Repositories SmartDukaan

Rev

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

Rev 34098 Rev 34103
Line 207... Line 207...
207
                    #end
207
                    #end
208
                </tbody>
208
                </tbody>
209
            </table>
209
            </table>
210
        </div>
210
        </div>
211
    </div>
211
    </div>
-
 
212
 
-
 
213
    <div class="row" style="margin: 0">
-
 
214
        <div class="col-md-12">
-
 
215
            <br>
-
 
216
            <h4>Partner Billing Count </h4>
-
 
217
            <table id="rbm-aging-table" class="table table-border table-condensed table-bordered"
-
 
218
                   style="width:100%">
-
 
219
                <thead>
-
 
220
                <tr>
-
 
221
                    <th>RBM</th>
-
 
222
                    <th>First Week Biiled</th>
-
 
223
                    <th>Second Week Biiled</th>
-
 
224
                    <th>Third Week Biiled</th>
-
 
225
                    <th>Fourth Week Biiled</th>
-
 
226
                    <th>MTD Biiled</th>
-
 
227
                </tr>
-
 
228
                </thead>
-
 
229
                <tbody>
-
 
230
                    #foreach($model in $sold15daysOldAgingModels)
-
 
231
                    <tr>
-
 
232
                        <th>$model.getRbmName()</th>
-
 
233
                        <td>
-
 
234
                            #if($rbmBilledCountMapFirstWeek.get($model.getRbmName()))
-
 
235
                                $rbmBilledCountMapFirstWeek.get($model.getRbmName())
-
 
236
                            #else
-
 
237
                                0
-
 
238
                            #end
-
 
239
                        </td>
-
 
240
                        <td>
-
 
241
                            #if($rbmBilledCountMapSecondWeek.get($model.getRbmName()))
-
 
242
                                $rbmBilledCountMapSecondWeek.get($model.getRbmName())
-
 
243
                            #else
-
 
244
                                0
-
 
245
                            #end
-
 
246
                        </td>
-
 
247
                        <td>
-
 
248
                            #if($rbmBilledCountMapThirdWeek.get($model.getRbmName()))
-
 
249
                                $rbmBilledCountMapThirdWeek.get($model.getRbmName())
-
 
250
                            #else
-
 
251
                                0
-
 
252
                            #end
-
 
253
                        </td>
-
 
254
                        <td>
-
 
255
                            #if($rbmBilledCountMapFourthWeek.get($model.getRbmName()))
-
 
256
                                $rbmBilledCountMapFourthWeek.get($model.getRbmName())
-
 
257
                            #else
-
 
258
                                0
-
 
259
                            #end
-
 
260
                        </td>
-
 
261
                        <td>
-
 
262
                            #if($rbmBilledCountMapMtd.get($model.getRbmName()))
-
 
263
                                $rbmBilledCountMapMtd.get($model.getRbmName())
-
 
264
                            #else
-
 
265
                                0
-
 
266
                            #end
-
 
267
                        </td>
-
 
268
                    </tr>
-
 
269
                    #end
-
 
270
                </tbody>
-
 
271
            </table>
-
 
272
        </div>
-
 
273
    </div>
212
</section>
274
</section>
213
 
275
 
214
<script>
276
<script>
215
    function formatNumberIndian(num) {
277
    function formatNumberIndian(num) {
216
        x = num.toString();
278
        x = num.toString();