Some invoice cleanup, and Task updating conversion
This commit is contained in:
@@ -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>
|
@@ -1 +0,0 @@
|
||||
</table>
|
@@ -1,7 +0,0 @@
|
||||
<table>
|
||||
<tr>
|
||||
<td>Account</td>
|
||||
<td>Due Date</td>
|
||||
<td>Inv ID</td>
|
||||
<td>Amount Due</td>
|
||||
</tr>
|
20
modules/invoice/views/invoice/task/listoverdue.php
Normal file
20
modules/invoice/views/invoice/task/listoverdue.php
Normal 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>
|
Reference in New Issue
Block a user