Subversion Repositories SmartDukaan

Rev

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

Rev 24093 Rev 33974
Line 12... Line 12...
12
	    					<th>Description</th>
12
	    					<th>Description</th>
13
	    					<th>CreatedTimestamp</th>
13
	    					<th>CreatedTimestamp</th>
14
	    					<th>Status</th>
14
	    					<th>Status</th>
15
	    					
15
	    					
16
	    				</tr>
16
	    				</tr>
17
	    			
17
 
18
			    			#foreach( $request in $unsettledPayment )
18
							#foreach( $paymentModal in $unsettledPayment )
19
			    				<tr class="unsettledPayment" data="$request.getId()">
19
							<tr class="unsettledPayment" data="$paymentModal.getId()">
20
			    					<td>$request.getId()</td>
20
								<td>$paymentModal.getId()</td>
21
			    					<td>$request.getTransaction_reference()</td>
21
								<td>$paymentModal.getTransaction_reference()</td>
22
			    					<td>$request.getAmount()</td>
22
								<td>$paymentModal.getAmount()</td>
23
			    					<td>$request.getReference_date().format($dateTimeFormatter)</td>
23
								<td>$paymentModal.getReference_date().format($dateTimeFormatter)</td>
24
			    					<td>$request.getDescription()</td>	
24
								<td>$paymentModal.getDescription()</td>
25
			    					<td>$request.getCreateTimestamp().format($dateTimeFormatter)</td>
25
								<td>$paymentModal.getCreateTimestamp().format($dateTimeFormatter)</td>
-
 
26
								<td>
26
			    					<td><button class="btn btn-primary approved" data-dismiss="modal"  data-id="$request.getId()" type="button" style="width:100%;border-radius:0px;">Approve</button>
27
									<button class="btn btn-primary approved" data-dismiss="modal"
-
 
28
											data-id="$paymentModal.getId()" type="button"
-
 
29
											style="width:100%;border-radius:0px;">Approve
-
 
30
									</button>
27
								  </td>
31
								  </td>
28
			    				</tr>	
32
			    				</tr>	
29
			    	   #end
33
			    	   #end
30
		    			
34
		    			
31
	    			</tbody>
35
	    			</tbody>