2013-10-10 02:44:53 +00:00
|
|
|
<?php defined('SYSPATH') or die('No direct access allowed.');
|
|
|
|
|
|
|
|
/**
|
2013-10-09 05:43:41 +00:00
|
|
|
* OSB Reseller Main home page
|
2013-10-10 02:44:53 +00:00
|
|
|
*
|
|
|
|
* @package OSB
|
|
|
|
* @category Controllers/Reseller
|
|
|
|
* @author Deon George
|
|
|
|
* @copyright (c) 2009-2013 Open Source Billing
|
|
|
|
* @license http://dev.osbill.net/license.html
|
|
|
|
*/
|
|
|
|
class Controller_Reseller_Welcome extends Controller_Welcome {
|
|
|
|
protected $auth_required = TRUE;
|
2013-10-09 05:43:41 +00:00
|
|
|
public $secure_actions = array(
|
2013-10-10 02:44:53 +00:00
|
|
|
'index'=>TRUE,
|
2013-10-28 23:36:57 +00:00
|
|
|
'revenue'=>TRUE,
|
2013-10-10 02:44:53 +00:00
|
|
|
);
|
|
|
|
|
|
|
|
public function action_index() {
|
2013-10-09 05:43:41 +00:00
|
|
|
$t = time();
|
|
|
|
|
|
|
|
Block::factory()
|
|
|
|
->title('Invoices Overdue - No Auto Billing')
|
2016-07-29 13:04:34 +00:00
|
|
|
->title_icon('fa fa-pencil-square-o')
|
2013-10-09 05:43:41 +00:00
|
|
|
->span(6)
|
2016-07-29 13:04:34 +00:00
|
|
|
->body(View::factory('invoice/list')->set('o',ORM::factory('Invoice')->list_overdue_billing($t)));
|
2013-10-09 05:43:41 +00:00
|
|
|
|
|
|
|
Block::factory()
|
|
|
|
->title('Invoices Overdue - Auto Billing')
|
2016-07-29 13:04:34 +00:00
|
|
|
->title_icon('fa fa-pencil-square-o')
|
2013-10-09 05:43:41 +00:00
|
|
|
->span(6)
|
2016-07-29 13:04:34 +00:00
|
|
|
->body(View::factory('invoice/list')->set('o',ORM::factory('Invoice')->list_overdue_billing($t,TRUE)));
|
2013-10-09 05:43:41 +00:00
|
|
|
|
|
|
|
Block::factory()
|
|
|
|
->title('Upcoming Invoices')
|
2016-07-29 13:04:34 +00:00
|
|
|
->title_icon('fa fa-pencil-square-o')
|
2013-10-09 05:43:41 +00:00
|
|
|
->span(6)
|
2016-07-29 13:04:34 +00:00
|
|
|
->body(View::factory('invoice/list')->set('o',ORM::factory('Invoice')->list_due($t)));
|
2013-10-09 05:43:41 +00:00
|
|
|
|
|
|
|
Block::factory()
|
|
|
|
->title('Un-applied payments')
|
2016-07-29 13:04:34 +00:00
|
|
|
->title_icon('fa fa-money')
|
2013-10-09 05:43:41 +00:00
|
|
|
->span(6)
|
2016-07-29 13:04:34 +00:00
|
|
|
->body(View::factory('payment/list')->set('o',ORM::factory('Payment')->where_authorised()->list_unapplied()));
|
2013-10-10 02:44:53 +00:00
|
|
|
}
|
2013-10-28 23:36:57 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Show Revenue Summary Information
|
|
|
|
*/
|
|
|
|
public function action_revenue() {
|
|
|
|
$result = array();
|
|
|
|
|
|
|
|
// ADSL
|
|
|
|
$svs = ORM::factory('Service')->where_authorised()->list_active();
|
|
|
|
foreach ($svs as $so) {
|
|
|
|
if (! isset($result[$so->product->prod_plugin_file][$so->product->supplier()])) {
|
|
|
|
$result[$so->product->prod_plugin_file][$so->product->supplier()]['count'] = 0;
|
|
|
|
$result[$so->product->prod_plugin_file][$so->product->supplier()]['cost'] = 0;
|
|
|
|
$result[$so->product->prod_plugin_file][$so->product->supplier()]['revenue'] = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
$result[$so->product->prod_plugin_file][$so->product->supplier()]['count']++;
|
|
|
|
$result[$so->product->prod_plugin_file][$so->product->supplier()]['cost'] += $so->product->cost(TRUE);
|
|
|
|
$result[$so->product->prod_plugin_file][$so->product->supplier()]['revenue'] += $so->revenue(TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
Block::factory()
|
|
|
|
->title('Revenue / Cost Analysis')
|
|
|
|
->title_icon('icon-info-sign')
|
|
|
|
->span(6)
|
|
|
|
->body(View::factory('summary/reseller/index')->set('o',$result));
|
|
|
|
}
|
2013-10-10 02:44:53 +00:00
|
|
|
}
|
|
|
|
?>
|