TRUE, ); /** * Show a list of payments */ public function action_list() { Block::factory() ->title('Customer Payments') ->title_icon('icon-th-list') ->body(Table::factory() ->page_items(50) ->data(ORM::factory('Payment')->where_authorised($this->ao)->find_all()) ->columns(array( 'id'=>'ID', 'date_payment'=>'Date', 'checkout->display("name")'=>'Method', 'total(TRUE)'=>'Total', 'balance(TRUE)'=>'Balance', 'invoicelist()'=>'Invoices', 'account->accnum()'=>'Cust ID', 'account->name()'=>'Customer', )) ->prepend(array( //'id'=>array('url'=>URL::link('reseller','payment/edit/')), //@todo To Implement )) ); } } ?>