Subversion Repositories SmartDukaan

Rev

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

Rev 18906 Rev 18943
Line 14... Line 14...
14
						<th><?php echo ('Created');?></th>
14
						<th><?php echo ('Created');?></th>
15
						<th><?php echo ('Loan_id');?></th>
15
						<th><?php echo ('Loan_id');?></th>
16
						<th><?php echo ('Due_date');?></th>
16
						<th><?php echo ('Due_date');?></th>
17
						<th><?php echo ('Value_date');?></th>
17
						<th><?php echo ('Value_date');?></th>
18
						<th><?php echo ('Invoice_Number');?></th>
18
						<th><?php echo ('Invoice_Number');?></th>
-
 
19
						<th><?php echo ('Courier_Name');?></th>
-
 
20
						<th><?php echo ('AirwayBill_Number');?></th>
19
					</tr>
21
					</tr>
20
				</thead>
22
				</thead>
21
				<tbody>
23
				<tbody>
22
					<?php foreach($loanHistory AS $loanH):?>
24
					<?php foreach($loanHistory AS $loanH):?>
23
						<tr>
25
						<tr>
Line 30... Line 32...
30
							<td><?php echo $loanH['credit_type'];?></td>
32
							<td><?php echo $loanH['credit_type'];?></td>
31
							<td><?php echo $loanH['created'];?></td>
33
							<td><?php echo $loanH['created'];?></td>
32
							<td><?php echo $loanH['loan_id'];?></td>
34
							<td><?php echo $loanH['loan_id'];?></td>
33
							<td><?php echo $loanH['due_date'];?></td>
35
							<td><?php echo $loanH['due_date'];?></td>
34
							<td><?php echo $loanH['value_date'];?></td>
36
							<td><?php echo $loanH['value_date'];?></td>
35
							<td><?php echo $loanH['invoiceNumber'];?></td>							
37
							<td><?php echo $loanH['invoiceNumber'];?></td>	
-
 
38
							<td><?php echo $loanH['courier'];?></td>
-
 
39
							<td><?php echo $loanH['airwayBillNo'];?></td>						
36
						</tr>
40
						</tr>
37
					<?php endforeach;?>
41
					<?php endforeach;?>
38
				</tbody>
42
				</tbody>
39
			</table>
43
			</table>
40
		</div>
44
		</div>