Created an invoice view

Some refactoring
Some validation
This commit is contained in:
drigato 2014-06-19 16:55:01 -04:00
parent 540b9167a1
commit 40f2796972
5 changed files with 94 additions and 45 deletions

View file

@ -0,0 +1,9 @@
<div class="ui-widget ui-widget-content block-shadow clearfix padded-strong">
<?php
foreach ($this->invoices as $invoice) {?>
<div>
<a href="invoice?invoiceid=<?php echo $invoice["id"]?>">View Invoice</a>
</div>
<?php }?>
</div>