Subversion Repositories SmartDukaan

Rev

Rev 18943 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<div class="container">
        <div class="row">
                <div class="col-lg-12 table-responsive">
                        <h3>Loan History Transactions</h3>
                        <table class="table table-striped">
                                <thead>
                                        <tr>
                                                <th><?php echo ('Id');?></th>
                                                <th><?php echo ('UserName');?></th>
                                                <th><?php echo ('UserId');?></th>
                                                <th><?php echo ('Creditor_Id');?></th>
                                                <th><?php echo ('Payment_id');?></th>
                                                <th><?php echo ('Amount');?></th>
                                                <th><?php echo ('Transaction_type');?></th>
                                                <th><?php echo ('Created');?></th>
                                                <th><?php echo ('Loan_id');?></th>
                                                <th><?php echo ('Due_date');?></th>
                                                <th><?php echo ('Value_date');?></th>
                                                <th><?php echo ('Invoice_Number');?></th>
                                                <th><?php echo ('Courier_Name');?></th>
                                                <th><?php echo ('AirwayBill_Number');?></th>
                                        </tr>
                                </thead>
                                <tbody>
                                        <?php foreach($loanHistory AS $loanH):?>
                                                <tr>
                                                        <td><?php echo $loanH['id'];?></td>
                                                        <td><?php echo $usersName[$loanH['user_id']];?></td>
                                                        <?php //echo $usersMap[$loanH['user_id']];?>
                                                        <td><?php echo $this->Html->link($usersMap[$loanH['user_id']], array('controller' => 'users', 'action' => 'loanhistory',$usersMap[$loanH['user_id']])); ?></td>
                                                        <td><?php echo $loanH['creditor_id'];?></td>
                                                        <td><?php echo $loanH['payment_id'];?></td>
                                                        <td><?php echo $loanH['amount'];?></td>
                                                        <td><?php echo $loanH['credit_type'];?></td>
                                                        <td><?php echo $loanH['created'];?></td>
                                                        <td><?php echo $loanH['loan_id'];?></td>
                                                        <td><?php echo $loanH['due_date'];?></td>
                                                        <td><?php echo $loanH['value_date'];?></td>
                                                        <td><?php echo $loanH['invoiceNumber'];?></td>  
                                                        <td><?php echo $loanH['courier'];?></td>
                                                        <td><?php echo $loanH['airwayBillNo'];?></td>                                           
                                                </tr>
                                        <?php endforeach;?>
                                </tbody>
                        </table>
                </div>
        </div>
        <ul class="pager">
                <?php if($page>1):?>
                <li><a href="?page=<?php echo $page-1;?>">Previous</a></li>
                <?php endif;?>
                <?php if($hasMore == true):?>
                <li><a href="?page=<?php echo $page+1;?>">Next</a></li>
            <?php endif;?>          
        </ul>
</div>