Subversion Repositories SmartDukaan

Rev

Rev 33507 | Rev 33578 | Go to most recent revision | Details | Compare with Previous | 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
        <th>Date</th>
5
        <th>Amount</th>
6
        <th>Reference No</th>
7
        <th>Mode</th>
8
        <th>Status</th>
33525 tejus.loha 9
        <th>Description</th>
33507 tejus.loha 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>
33525 tejus.loha 24
                #if($bfc.getDescription())
25
                    <td>$bfc.getDescription()</td>
26
                #else
27
                    <td>--</td>
28
                #end
29
 
33507 tejus.loha 30
                <td>
31
                    #if($isNiraj)
33525 tejus.loha 32
                        #if(!$bfc.getPaymentStatus()=="CONFIRM" || $bfc.getPaymentStatus()=="PENDING")
33
                            <button class="btn-info paymentConfirmBtn" data-dismiss="modal"
33507 tejus.loha 34
                                    value="$bfc.getId()"
35
                                    data-approval="CONFIRM">Confirm
33525 tejus.loha 36
 
33507 tejus.loha 37
                            </button>
38
                        #end
33525 tejus.loha 39
                        #if(!$bfc.getPaymentStatus()=="REJECT" || $bfc.getPaymentStatus()=="PENDING")
40
                            <button class="btn-info paymentRejectBtn" data-dismiss="modal"
41
                                    value="$bfc.getId()"
42
                                    data-approval="REJECT">Reject
43
                            </button>
44
                        #end
33507 tejus.loha 45
                    #end
46
 
47
                </td>
48
            </tr>
49
            #end
50
        </tbody>
51
    </table>
52
</div>