Subversion Repositories SmartDukaan

Rev

Rev 26476 | Rev 26478 | 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>Sale</th>
                                        <th>lmtd</th>
                                        <th>mtd</th>
                                        <th>Hygiene</th>
                                        <th>In Stock Investment</th>
                                        <th>Total Investment</th>
                                        <th>Ticket</th>
                                        </tr>
                                 </thead>
                                <tbody>
                                    #foreach($name in $fofoIdAndallValues.keySet())
                                        <tr>
                                     <td>$fofoIdAndPartnerMap.get($name).getBusinessName()</td>
                                     <td class="currency">$fofoIdAndallValues.get($name).getLmtd()</td>
                                     <td class="currency">$fofoIdAndallValues.get($name).getMtd()</td>
                                     <td>$fofoIdAndallValues.get($name).getHygiene()</td>
                                     <td class="currency">$authIdAndallValues.get($name).getInvestment().getInStockAmount()</td>
                                     <td class="currency">$authIdAndallValues.get($name).getInvestment().getTotalInvestment()</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>