Added Bulk Payments

This commit is contained in:
Deon George
2012-01-11 19:59:20 +11:00
parent f0c1f8800e
commit 8d53924988
9 changed files with 176 additions and 4 deletions

View File

@@ -0,0 +1,13 @@
<table>
<tr>
<td colspan="2">Ezypay Payment</td>
</tr>
<tr>
<td>Payment File (BillDetails)</td>
<td><?php echo Form::file('payment'); ?></td>
</tr>
<tr>
<td>Transaction File (AddItems)</td>
<td><?php echo Form::file('transaction'); ?></td>
</tr>
</table>

View File

@@ -0,0 +1,7 @@
<tr>
<td><?php echo $o->display('id'); ?></td>
<td><?php echo $o->display('date_payment'); ?></td>
<td><?php echo $o->display('total_amt'); ?></td>
<td><?php echo $o->display('fees_amt'); ?></td>
<td><?php echo $o->display('notes'); ?></td>
</tr>

View File

@@ -0,0 +1,6 @@
<tr class="head">
<td colspan="2">&nbsp;</td>
<td><?php echo $total; ?></td>
<td><?php echo $fees; ?></td>
</tr>
</table>

View File

@@ -0,0 +1,8 @@
<table>
<tr class="head">
<td>Payment ID</td>
<td>Date Payment</td>
<td>Amount</td>
<td>Fees</td>
<td>Transaction ID</td>
</tr>