TRUE, ); /** * Show payments received */ public function action_list() { $this->meta->title = 'Payments Received'; Block::factory() ->title(sprintf('%s: %s - %s',_('Payments Received For'),$this->ao->accnum(),$this->ao->name(TRUE))) ->title_icon('fa fa-money') ->body(Table::factory() ->page_items(50) ->data($this->ao->payment->find_all()) ->columns(array( 'id'=>'ID', 'date_payment'=>'Date', 'checkout->display("name")'=>'Method', 'total(TRUE)'=>'Total', 'balance(TRUE)'=>'Balance', 'invoicelist()'=>'Invoices', )) ); } } ?>