Open Source Billing
This commit is contained in:
14
modules/statement/views/statement/user/show/body.php
Normal file
14
modules/statement/views/statement/user/show/body.php
Normal file
@@ -0,0 +1,14 @@
|
||||
<tr class="<?php echo $trc; ?>">
|
||||
<?php if (isset($o['invoice'])) { ?>
|
||||
<td><?php echo $o['invoice']->display('date_orig'); ?></td>
|
||||
<td>Invoice</td>
|
||||
<td><?php echo HTML::anchor(URL::link('user','invoice/view/'.$o['invoice']->id),$o['invoice']->id()); ?></td>
|
||||
<td class="right"><?php echo $o['invoice']->total(TRUE); ?></td>
|
||||
<?php } elseif (isset($o['payment'])) { ?>
|
||||
<td><?php echo $o['payment']->display('date_payment'); ?></td>
|
||||
<td>Payment</td>
|
||||
<td><?php printf('%s - %s',$o['payment']->id,$o['payment']->checkout->display('name')); ?></td>
|
||||
<td class="right"><?php echo $o['payment']->total(TRUE); ?></td>
|
||||
<?php } ?>
|
||||
<td class="right"><?php echo Currency::display($o['total']); ?></td>
|
||||
</tr>
|
1
modules/statement/views/statement/user/show/foot.php
Normal file
1
modules/statement/views/statement/user/show/foot.php
Normal file
@@ -0,0 +1 @@
|
||||
</table>
|
7
modules/statement/views/statement/user/show/head.php
Normal file
7
modules/statement/views/statement/user/show/head.php
Normal file
@@ -0,0 +1,7 @@
|
||||
<table class="box-left" border="0" id="list-table">
|
||||
<tr>
|
||||
<td class="head">Date</td>
|
||||
<td class="head" colspan="2">Type</td>
|
||||
<td class="head">Amt</td>
|
||||
<td class="head">Total</td>
|
||||
</tr>
|
Reference in New Issue
Block a user