Subversion Repositories SmartDukaan

Rev

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

Rev 32442 Rev 32492
Line 46... Line 46...
46
            <tr style="color:black;">
46
            <tr style="color:black;">
47
                <th>Id</th>
47
                <th>Id</th>
48
                <th>Partner Id</th>
48
                <th>Partner Id</th>
49
                <th>Partner Name</th>
49
                <th>Partner Name</th>
50
                <th>Transaction Id</th>
50
                <th>Transaction Id</th>
-
 
51
                <th>Order Date</th>
51
                <th>Order Amount</th>
52
                <th>Order Amount</th>
52
                <th>Sanction Amount</th>
53
                <th>Sanction Amount</th>
53
                <th>Utilized Amount</th>           
54
                <th>Utilized Amount</th>           
54
                <th>Pending Amount</th>
55
                <th>Pending Amount</th>
55
               
56
 
56
                </tr>
-
 
57
            </thead>
57
            </thead>
58
            <tbody>
58
            <tbody>
59
                #foreach($sanctionRequest in $sanctionRequests)
59
                #foreach($sanctionRequest in $sanctionRequests)
60
                
60
                
61
 
61
 
62
                <tr>
62
                <tr>
63
                <td>$sanctionRequest.getId()</td>
63
                <td>$sanctionRequest.getId()</td>
64
				<td>$customRetailerMap.get($sanctionRequest.getFofoId()).getPartnerId()</td>
64
				<td>$customRetailerMap.get($sanctionRequest.getFofoId()).getPartnerId()</td>
65
				<td>$customRetailerMap.get($sanctionRequest.getFofoId()).getBusinessName()</td>
65
				<td>$customRetailerMap.get($sanctionRequest.getFofoId()).getBusinessName()</td>
66
				<td>$sanctionRequest.getTransactionId()</td>
66
				<td>$sanctionRequest.getTransactionId()</td>
-
 
67
				<td>$transactionOrdersMap.get($sanctionRequest.getTransactionId()).get(0).getCreateTimestamp().format($dateFormatter)</td>
67
				#if($transactionAmountMap.get($sanctionRequest.getTransactionId()))
68
				#if($transactionAmountMap.get($sanctionRequest.getTransactionId()))
68
				<td>$transactionAmountMap.get($sanctionRequest.getTransactionId())</td>
69
				<td class="currency">$transactionAmountMap.get($sanctionRequest.getTransactionId())</td>
69
				#else
70
				#else
70
				 <td>-</td>
71
				 <td>-</td>
71
				#end
72
				#end
72
				<td>$sanctionRequest.getApprovalAmount()</td>
73
				<td class="currency">$sanctionRequest.getApprovalAmount().setScale(2,$ru)</td>
73
				<td>$sanctionRequest.getUtilizationAmount()</td>
74
				<td class="currency">$sanctionRequest.getUtilizationAmount().setScale(2,$ru)</td>
74
				<td>$sanctionRequest.getPendingAmount()</td>
75
				<td class="currency">$sanctionRequest.getPendingAmount().setScale(2,$ru)</td>
75
			
76
			
76
				</tr>
77
				</tr>
77
             
78
             
78
                #end
79
                #end
79
 
80