Subversion Repositories SmartDukaan

Rev

Rev 33507 | Rev 33578 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 33507 Rev 33525
Line 1... Line 1...
1
<div class="modal-body">
1
<div class="modal-body">
2
    <table class="table table-bordered">
2
    <table class="table table-bordered">
3
        <thead>
3
        <thead>
4
 
-
 
5
        <th>Date</th>
4
        <th>Date</th>
6
        <th>Amount</th>
5
        <th>Amount</th>
7
        <th>Reference No</th>
6
        <th>Reference No</th>
8
        <th>Mode</th>
7
        <th>Mode</th>
9
        <th>Status</th>
8
        <th>Status</th>
-
 
9
        <th>Description</th>
10
            #if($isNiraj)
10
            #if($isNiraj)
11
            <th>Action</th>
11
            <th>Action</th>
12
            #end
12
            #end
13
 
13
 
14
        </thead>
14
        </thead>
Line 19... Line 19...
19
                <td>$bfc.getTimeStamp()</td>
19
                <td>$bfc.getTimeStamp()</td>
20
                <td class="currency">$bfc.getCollectedAmount()</td>
20
                <td class="currency">$bfc.getCollectedAmount()</td>
21
                <td>$bfc.getPaymentReferenceNo()</td>
21
                <td>$bfc.getPaymentReferenceNo()</td>
22
                <td>$bfc.getPaymentMode()</td>
22
                <td>$bfc.getPaymentMode()</td>
23
                <td>$bfc.getPaymentStatus()</td>
23
                <td>$bfc.getPaymentStatus()</td>
-
 
24
                #if($bfc.getDescription())
-
 
25
                    <td>$bfc.getDescription()</td>
-
 
26
                #else
-
 
27
                    <td>--</td>
-
 
28
                #end
-
 
29
 
24
                <td>
30
                <td>
25
                    #if($isNiraj)
31
                    #if($isNiraj)
26
                        #if(!$bfc.getPaymentStatus().equals($confirm))
32
                        #if(!$bfc.getPaymentStatus()=="CONFIRM" || $bfc.getPaymentStatus()=="PENDING")
27
                            <button type="button" class="btn-info confirmPayment" data-dismiss="modal"
33
                            <button class="btn-info paymentConfirmBtn" data-dismiss="modal"
28
                                    value="$bfc.getId()"
34
                                    value="$bfc.getId()"
29
                                    data-approval="CONFIRM">Confirm
35
                                    data-approval="CONFIRM">Confirm
-
 
36
 
-
 
37
                            </button>
-
 
38
                        #end
-
 
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
30
                            </button>
43
                            </button>
31
                        #else
-
 
32
                            <p>$bfc.getPaymentStatus()</p>
-
 
33
                        #end
44
                        #end
34
                    #end
45
                    #end
35
 
46
 
36
                </td>
47
                </td>
37
            </tr>
48
            </tr>
38
            #end
49
            #end
39
 
-
 
40
        </tbody>
50
        </tbody>
41
    </table>
51
    </table>
42
</div>
52
</div>