Some invoice cleanup, and Task updating conversion

This commit is contained in:
Deon George
2013-06-16 23:36:47 +10:00
parent 6875dc3693
commit 609a72425b
10 changed files with 126 additions and 101 deletions

View File

@@ -1,6 +0,0 @@
<tr>
<td><?php echo $io->account->name(); ?></td>
<td><?php echo $io->display('due_date'); ?></td>
<td><?php echo $io->id(); ?></td>
<td><?php echo $io->due(TRUE); ?></td>
</tr>

View File

@@ -1 +0,0 @@
</table>

View File

@@ -1,7 +0,0 @@
<table>
<tr>
<td>Account</td>
<td>Due Date</td>
<td>Inv ID</td>
<td>Amount Due</td>
</tr>

View File

@@ -0,0 +1,20 @@
<h3><?php echo $rtmo->name; ?></h3>
<table>
<tr>
<th>Account</th>
<th>Due Date</th>
<th>Inv ID</th>
<th>Amount Due</th>
</tr>
<?php foreach ($o as $io) : ?>
<tr>
<td><?php echo $io->account->name(); ?></td>
<td><?php echo $io->display('due_date'); ?></td>
<td><?php echo $io->id(); ?></td>
<td><?php echo $io->due(TRUE); ?></td>
</tr>
<?php endforeach ?>
</table>