Subversion Repositories SmartDukaan

Rev

Rev 33525 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
33507 tejus.loha 1
<div class="modal-body">
2
    <table class="table table-bordered">
3
        <thead>
4
 
5
        <th>Date</th>
6
        <th>Amount</th>
7
        <th>Reference No</th>
8
        <th>Mode</th>
9
        <th>Status</th>
10
            #if($isNiraj)
11
            <th>Action</th>
12
            #end
13
 
14
        </thead>
15
        <tbody>
16
            #foreach($bfc in $brandFeeCollections)
17
            <tr>
18
                <td hidden="hidden" class="bfcId">$bfc.getId() </td>
19
                <td>$bfc.getTimeStamp()</td>
20
                <td class="currency">$bfc.getCollectedAmount()</td>
21
                <td>$bfc.getPaymentReferenceNo()</td>
22
                <td>$bfc.getPaymentMode()</td>
23
                <td>$bfc.getPaymentStatus()</td>
24
                <td>
25
                    #if($isNiraj)
26
                        #if(!$bfc.getPaymentStatus().equals($confirm))
27
                            <button type="button" class="btn-info confirmPayment" data-dismiss="modal"
28
                                    value="$bfc.getId()"
29
                                    data-approval="CONFIRM">Confirm
30
                            </button>
31
                        #else
32
                            <p>$bfc.getPaymentStatus()</p>
33
                        #end
34
                    #end
35
 
36
                </td>
37
            </tr>
38
            #end
39
 
40
        </tbody>
41
    </table>
42
</div>