Subversion Repositories SmartDukaan

Rev

Rev 27545 | Rev 27549 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<section>


<!--<style>
        .table-striped > tbody > tr:nth-child(odd) > td{
                background: white;
                background-color: white;
        }
        .table-striped > tbody > tr:nth-child(even) > td{
                background: white;
                background-color:white;
        }
        .table-striped > tbody > tr:hover > td,
        .table-striped > tbody > tr:hover {
                background-color: #e98c8f;
                color:white;
        }
        .btn:hover{
                color: grey;
                text-decoration: none;
        }
        .btn-primary:hover{
                color: grey;
                text-decoration: none;
        }
        .sale-details{
                cursor:pointer;
        }
</style>-->

<section class="wrapper">
        <div class="row">
                <div class="col-lg-12">
                        <h3 class="page-header"><i class="icon_document_alt"></i>Details</h3>
                        <ol class="breadcrumb">
                                <li><i class="fa fa-home"></i><a href="${rc.contextPath}/dashboard">Home</a></li>
                                <li><i class="icon_document_alt"></i>Auth User Detail</li>                                              
                        </ol>
                </div>
        </div>

 
<div class="row">
                                        
                                        <div class="col-lg-12">
                                 <table id="authretailerstats" class="table table-striped table-advance table-hover">
                                 <thead>
                                        <tr>
                                        <th>Stores</th>
                                        <th>Category</th>
                                        <th>Manager</th>
                                        <th>lmtd</th>
                                        <th>mtd</th>
                                        <th>sale diff</th>
                                    <th>Wallet Amount</th>
                                        <th>In Stock Investment</th>
                                        <th>Total Investment</th>
                                        <th>Short Investment</th>
                                        <th>Indent Qty</th>
                                        <th>Indent Value</th>
                                        <th>Today Tertiary</th>
                                        <th>last 3 days Tertiary</th>
                                        <th>Ticket</th>
                                        </tr>
                                 </thead>
                                <tbody>
                                    #foreach($name in $fofoIdAndallValues.keySet())
                                        <tr>
                                     <td>$fofoIdAndPartnerMap.get($name).getBusinessName()  ($fofoIdAndPartnerMap.get($name).getAddress().getCity())</td>
                                     <td>$fofoIdAndallValues.get($name).getPartnerType()</td>
                                     <td>$fofoIdAndallValues.get($name).getAuthUser()</td>
                                     <td class="currency">$fofoIdAndallValues.get($name).getLmtd()</td>
                                     <td class="currency">$fofoIdAndallValues.get($name).getMtd()</td>
                                     <td class="currency">$fofoIdAndallValues.get($name).getDiffenceLmtdMtd()</td>
                                     <td class="currency">$fofoIdAndallValues.get($name).getWalletAmount()</td>
                                     <td class="currency">$fofoIdAndallValues.get($name).getInvestment().getInStockAmount()</td>
                                     <td class="currency">$fofoIdAndallValues.get($name).getInvestment().getTotalInvestment()</td>
                                     <td class="currency">$fofoIdAndallValues.get($name).getInvestment().getShortInvestment()</td>
                                     <td>$fofoIdAndallValues.get($name).getInvestment().getUnbilledQty()</td>
                                     <td class="currency">$fofoIdAndallValues.get($name).getInvestment().getUnbilledAmount()</td>
                                 <td>$fofoIdAndallValues.get($name).getLastOneDayTertiary()</td>
                                 <td>$fofoIdAndallValues.get($name).getLastThreeDaytertiary()</td>
                               
                                 <td>$fofoIdAndallValues.get($name).getTicket()</td>
                                        </tr>
                                         #end
                                        
                            </tbody>
                        </table>
                                                </div>
                                                
                        
                        </div>
                                        

</section>
<script type="text/javascript">
$(document).ready(function() {
    indentTable = $('#authretailerstats').DataTable();
});
</script>