Subversion Repositories SmartDukaan

Rev

Rev 30936 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 30936 Rev 36879
Line 38... Line 38...
38
	    			<tbody>
38
	    			<tbody>
39
	    			  <tr>
39
	    			  <tr>
40
	    			    <th>#</th>
40
	    			    <th>#</th>
41
				        <th>Loan Id</th>
41
				        <th>Loan Id</th>
42
				        <th>Interest Rate(%)</th>
42
				        <th>Interest Rate(%)</th>
43
				        <th>Initial Amount</th>
43
				        <th>Principal Amount</th>
44
						<th>Pending Amount</th>
44
						<th>Pending Principal</th>
45
						<th>Interest Accrued</th>
45
						<th>Pending Interest</th>
46
						<th>Interest Paid</th>
46
						<th>Total Pending</th>
47
						<th>Opening Date</th>
47
						<th>Opening Date</th>
48
						<th>Due Date</th>
48
						<th>Due Date</th>
49
	                 </tr>	
49
	                 </tr>	
50
	                 #set($index = 0)
50
	                 #set($index = 0)
51
	                 
51
	                 
Line 60... Line 60...
60
			         <td class="expand-button"></td>	
60
			         <td class="expand-button"></td>	
61
		    	         <td>$ls.getId()</td>
61
		    	         <td>$ls.getId()</td>
62
		    	          <td>$ls.getInterestRate().setScale(2,$ru)</td>
62
		    	          <td>$ls.getInterestRate().setScale(2,$ru)</td>
63
		    	          <td>$ls.getIntialAmount().setScale(2,$ru)</td>
63
		    	          <td>$ls.getIntialAmount().setScale(2,$ru)</td>
64
		    	          <td>$ls.getPendingAmount().setScale(2,$ru)</td>
64
		    	          <td>$ls.getPendingAmount().setScale(2,$ru)</td>
65
		    	          <td>$ls.getInterestAccrued().setScale(2,$ru)</td>
65
		    	          <td>$ls.getTotalPending().subtract($ls.getPendingAmount()).setScale(2,$ru)</td>
66
		    	      
66
 
67
		    	          <td>$ls.getInterestPaid().setScale(2,$ru)</td>
67
		    	          <td>$ls.getTotalPending().setScale(2,$ru)</td>
68
		    	          <td>$ls.getCreatedOn().format($dateTimeFormatter)</td>
68
		    	          <td>$ls.getCreatedOn().format($dateTimeFormatter)</td>
69
		    	          <td>$ls.getDueDate().format($dateTimeFormatter)</td>
69
		    	          <td>$ls.getDueDate().format($dateTimeFormatter)</td>
70
		    		   </tr>	
70
		    		   </tr>	
71
			      
71
			      
72
		    		
72