Subversion Repositories SmartDukaan

Rev

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

Rev 18943 Rev 19730
Line 4... Line 4...
4
			<h3>Loan History Transactions</h3>
4
			<h3>Loan History Transactions</h3>
5
			<table class="table table-striped">
5
			<table class="table table-striped">
6
				<thead>
6
				<thead>
7
					<tr>
7
					<tr>
8
						<th><?php echo ('Id');?></th>
8
						<th><?php echo ('Id');?></th>
-
 
9
						<th><?php echo ('UserName');?></th>
9
						<th><?php echo ('UserId');?></th>
10
						<th><?php echo ('UserId');?></th>
10
						<th><?php echo ('Creditor_Id');?></th>
11
						<th><?php echo ('Creditor_Id');?></th>
11
						<th><?php echo ('Payment_id');?></th>
12
						<th><?php echo ('Payment_id');?></th>
12
						<th><?php echo ('Amount');?></th>
13
						<th><?php echo ('Amount');?></th>
13
						<th><?php echo ('Transaction_type');?></th>
14
						<th><?php echo ('Transaction_type');?></th>
Line 22... Line 23...
22
				</thead>
23
				</thead>
23
				<tbody>
24
				<tbody>
24
					<?php foreach($loanHistory AS $loanH):?>
25
					<?php foreach($loanHistory AS $loanH):?>
25
						<tr>
26
						<tr>
26
							<td><?php echo $loanH['id'];?></td>
27
							<td><?php echo $loanH['id'];?></td>
-
 
28
							<td><?php echo $usersName[$loanH['user_id']];?></td>
27
							<?php //echo $usersMap[$loanH['user_id']];?>
29
							<?php //echo $usersMap[$loanH['user_id']];?>
28
							<td><?php echo $this->Html->link($usersMap[$loanH['user_id']], array('controller' => 'users', 'action' => 'loanhistory',$usersMap[$loanH['user_id']])); ?></td>
30
							<td><?php echo $this->Html->link($usersMap[$loanH['user_id']], array('controller' => 'users', 'action' => 'loanhistory',$usersMap[$loanH['user_id']])); ?></td>
29
							<td><?php echo $loanH['creditor_id'];?></td>
31
							<td><?php echo $loanH['creditor_id'];?></td>
30
							<td><?php echo $loanH['payment_id'];?></td>
32
							<td><?php echo $loanH['payment_id'];?></td>
31
							<td><?php echo $loanH['amount'];?></td>
33
							<td><?php echo $loanH['amount'];?></td>