This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.

21 lines
397 B
PHP

<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->refnum(TRUE); ?></td>
<td><?php echo $io->due(TRUE); ?></td>
</tr>
<?php endforeach ?>
</table>