Subversion Repositories SmartDukaan

Rev

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

<div class="modal-body">
    <table class="table table-bordered">
        <thead>
        <th>Date</th>
        <th>Amount</th>
        <th>Reference No</th>
        <th>Mode</th>
        <th>Status</th>
        <th>Description</th>
            #if($isNiraj)
            <th>Action</th>
            #end

        </thead>
        <tbody>
            #foreach($bfc in $brandFeeCollections)
            <tr>
                <td hidden="hidden" class="bfcId">$bfc.getId() </td>
                <td>$bfc.getTimeStamp()</td>
                <td class="currency">$bfc.getCollectedAmount()</td>
                <td>$bfc.getPaymentReferenceNo()</td>
                <td>$bfc.getPaymentMode()</td>
                <td>$bfc.getPaymentStatus()</td>
                #if($bfc.getDescription())
                    <td>$bfc.getDescription()</td>
                #else
                    <td>--</td>
                #end

                <td>
                    #if($isNiraj)
                        #if(!$bfc.getPaymentStatus()=="CONFIRM" || $bfc.getPaymentStatus()=="PENDING")
                            <button class="btn-info paymentConfirmBtn" data-dismiss="modal"
                                    value="$bfc.getId()"
                                    data-approval="CONFIRM">Confirm

                            </button>
                        #end
                        #if(!$bfc.getPaymentStatus()=="REJECT" || $bfc.getPaymentStatus()=="PENDING")
                            <button class="btn-info paymentRejectBtn" data-dismiss="modal"
                                    value="$bfc.getId()"
                                    data-approval="REJECT">Reject
                            </button>
                        #end
                    #end

                </td>
            </tr>
            #end
        </tbody>
    </table>
</div>