42 lines
1.1 KiB
PHP
42 lines
1.1 KiB
PHP
|
<?php defined('SYSPATH') or die('No direct access allowed.');
|
||
|
|
||
|
/**
|
||
|
* This class provides User Payment functions
|
||
|
*
|
||
|
* @package Payment
|
||
|
* @category Controllers/User
|
||
|
* @author Deon George
|
||
|
* @copyright (c) 2009-2013 Open Source Billing
|
||
|
* @license http://dev.osbill.net/license.html
|
||
|
*/
|
||
|
class Controller_User_Payment extends Controller_TemplateDefault_User {
|
||
|
protected $secure_actions = array(
|
||
|
'list'=>TRUE,
|
||
|
);
|
||
|
|
||
|
/**
|
||
|
* Show a payments received
|
||
|
*/
|
||
|
public function action_list() {
|
||
|
Block::add(array(
|
||
|
'title'=>sprintf('%s: %s - %s',_('Payments Received For'),$this->ao->accnum(),$this->ao->name(TRUE)),
|
||
|
'body'=>Table::display(
|
||
|
$this->ao->payment->find_all(),
|
||
|
25,
|
||
|
array(
|
||
|
'id'=>array('label'=>'ID'),
|
||
|
'date_payment'=>array('label'=>'Date'),
|
||
|
'checkout->display("name")'=>array('label'=>'Method'),
|
||
|
'total_amt'=>array('label'=>'Total','class'=>'right'),
|
||
|
'balance(TRUE)'=>array('label'=>'Balance','class'=>'right'),
|
||
|
'invoicelist()'=>array('label'=>'Invoices'),
|
||
|
),
|
||
|
array(
|
||
|
'page'=>TRUE,
|
||
|
'type'=>'list',
|
||
|
)),
|
||
|
));
|
||
|
}
|
||
|
}
|
||
|
?>
|