Subversion Repositories SmartDukaan

Rev

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

Rev 33578 Rev 33582
Line 1... Line 1...
1
<section class="wrapper">
1
<section class="wrapper">
2
    <style>
2
    <style>
3
        #paymentDetail:hover {
3
        #paymentDetail:hover {
4
            background-color: lightgreen;
4
            background-color: #9acfea;
5
        }
5
        }
6
 
6
 
7
        #paymentDetail {
7
        #paymentDetail {
8
            background-color: gainsboro;
8
            background-color: gainsboro;
9
        }
9
        }
10
 
10
 
11
        .padd-lr {
11
        .padd-lr {
12
            padding-left: 10px;
12
            padding-left: 10px;
13
            padding-right: 10px;
13
            padding-right: 10px;
14
        }
14
        }
-
 
15
 
-
 
16
        .mk_docVerified {
-
 
17
            width: 40px;
-
 
18
        }
-
 
19
 
-
 
20
        .mk_feeCompleted {
-
 
21
            width: 40px;
-
 
22
        }
15
    </style>
23
    </style>
16
    <div class="row ">
24
    <div class="row ">
17
        <div class="col-lg-12">
25
        <div class="col-lg-12">
18
            <h3 class="page-header"><i class="icon_document_alt"></i>PENDING LOI</h3>
26
            <h3 class="page-header"><i class="icon_document_alt"></i>PENDING LOI</h3>
19
            <ol class="breadcrumb">
27
            <ol class="breadcrumb">
Line 32... Line 40...
32
                <th>Billing City</th>
40
                <th>Billing City</th>
33
                <th>Total Commitment</th>
41
                <th>Total Commitment</th>
34
                <th>Brand Type</th>
42
                <th>Brand Type</th>
35
                <th>Brand Fee</th>
43
                <th>Brand Fee</th>
36
                <th>Total collection</th>
44
                <th>Total collection</th>
37
                <th>status</th>
45
                <th>Document Verified</th>
-
 
46
                <th>Brand Fee Completed</th>
38
                <th>Action</th>
47
                <th>Action</th>
39
 
48
 
40
 
49
 
41
            </tr>
50
            </tr>
42
            </thead>
51
            </thead>
Line 52... Line 61...
52
                    <td class="currency">$data.getBrandFee()</td>
61
                    <td class="currency">$data.getBrandFee()</td>
53
                    <td class="currency" class="btn btn-primary" id="paymentDetail"
62
                    <td class="currency" class="btn btn-primary" id="paymentDetail"
54
                        onclick="getPaymentsDetails($data.getId())" data-toggle="modal"
63
                        onclick="getPaymentsDetails($data.getId())" data-toggle="modal"
55
                        data-target="#commonModalDiv"> $data.getTotalFeeCollection()
64
                        data-target="#commonModalDiv"> $data.getTotalFeeCollection()
56
                    </td>
65
                    </td>
-
 
66
                    #if($data.isDocVerified().equals(true))
-
 
67
                        <td style="background-color: #2ac845" class="mk_docVerified">Yes</td>
-
 
68
                    #elseif($data.isDocVerified().equals(false))
-
 
69
                        <td style="background-color: red" class="mk_docVerified">No</td>
-
 
70
                    #else
57
                    <td>$data.getStatus()</td>
71
                        <td>--</td>
-
 
72
                    #end
-
 
73
                    #if($data.getBrandFee()==$data.getTotalFeeCollection())
-
 
74
                        <td style="background-color: #2ac845" class="mk_feeCompleted">Yes</td>
-
 
75
                    #else
-
 
76
                        <td style="background-color: red" class="mk_feeCompleted">No</td>
-
 
77
                    #end
-
 
78
 
58
                    #if(!$data.isPaymentApprover())
79
                    #if(!$data.isPaymentApprover())
59
                        <td>
80
                        <td>
60
                            #if(!$data.isLoiOtpPresent() &&  $data.isDocVerified() && $data.getTotalFeeCollection()!=0.0 && !$data.isDocApprover())
81
                            #if(!$data.isLoiOtpPresent() &&  $data.isDocVerified() && $data.getTotalFeeCollection()!=0.0 && !$data.isDocApprover())
61
                                <button type="button" class="btn-primary generateLoi" value="$data.getId()">Generate LOI
82
                                <button type="button" class="btn-primary generateLoi" value="$data.getId()">Generate LOI
62
                                </button>
83
                                </button>