Some updates after changing to KH335 and updating submodules

This commit is contained in:
Deon George
2016-05-03 12:47:00 +10:00
parent 453f97324f
commit 44769e3de7
11 changed files with 58 additions and 161 deletions

View File

@@ -0,0 +1,18 @@
<!-- o = Model Account -->
<?php echo Block::factory()
->title(sprintf('Invoices Due Account: %s (%s)',$o->accnum(),$o->invoice->list_due_total(TRUE)))
->title_icon('fa fa-money')
->span(6)
->body(Table::factory()
->data($o->invoice->list_due())
->columns(array(
'id'=>'ID',
'due_date'=>'Date Due',
'total(TRUE)'=>'Invoice Total',
'due(TRUE)'=>'Amount Due',
))
->prepend(array(
'id'=>array('url'=>URL::link('user','invoice/view/')),
))
);
?>