Subversion Repositories SmartDukaan

Rev

Rev 33525 | Rev 33658 | 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">
33578 tejus.loha 2
    <h4 class="modal-title">Brand fee payment details</h4>
33507 tejus.loha 3
    <table class="table table-bordered">
4
        <thead>
5
        <th>Date</th>
6
        <th>Amount</th>
7
        <th>Reference No</th>
8
        <th>Mode</th>
9
        <th>Status</th>
33525 tejus.loha 10
        <th>Description</th>
33507 tejus.loha 11
            #if($isNiraj)
12
            <th>Action</th>
13
            #end
14
 
15
        </thead>
16
        <tbody>
17
            #foreach($bfc in $brandFeeCollections)
18
            <tr>
19
                <td hidden="hidden" class="bfcId">$bfc.getId() </td>
33578 tejus.loha 20
                <td>$bfc.getFeeCollectingTimeStamp().format($dateTimeFormatter)</td>
33507 tejus.loha 21
                <td class="currency">$bfc.getCollectedAmount()</td>
22
                <td>$bfc.getPaymentReferenceNo()</td>
23
                <td>$bfc.getPaymentMode()</td>
24
                <td>$bfc.getPaymentStatus()</td>
33525 tejus.loha 25
                #if($bfc.getDescription())
26
                    <td>$bfc.getDescription()</td>
27
                #else
28
                    <td>--</td>
29
                #end
30
 
33507 tejus.loha 31
                <td>
32
                    #if($isNiraj)
33525 tejus.loha 33
                        #if(!$bfc.getPaymentStatus()=="CONFIRM" || $bfc.getPaymentStatus()=="PENDING")
34
                            <button class="btn-info paymentConfirmBtn" data-dismiss="modal"
33507 tejus.loha 35
                                    value="$bfc.getId()"
36
                                    data-approval="CONFIRM">Confirm
33525 tejus.loha 37
 
33507 tejus.loha 38
                            </button>
39
                        #end
33525 tejus.loha 40
                        #if(!$bfc.getPaymentStatus()=="REJECT" || $bfc.getPaymentStatus()=="PENDING")
41
                            <button class="btn-info paymentRejectBtn" data-dismiss="modal"
42
                                    value="$bfc.getId()"
43
                                    data-approval="REJECT">Reject
44
                            </button>
45
                        #end
33507 tejus.loha 46
                    #end
47
 
48
                </td>
49
            </tr>
50
            #end
51
        </tbody>
52
    </table>
53
</div>