Subversion Repositories SmartDukaan

Rev

Rev 33525 | 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>
            #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>
                <td>
                    #if($isNiraj)
                        #if(!$bfc.getPaymentStatus().equals($confirm))
                            <button type="button" class="btn-info confirmPayment" data-dismiss="modal"
                                    value="$bfc.getId()"
                                    data-approval="CONFIRM">Confirm
                            </button>
                        #else
                            <p>$bfc.getPaymentStatus()</p>
                        #end
                    #end

                </td>
            </tr>
            #end

        </tbody>
    </table>
</div>