2010-11-29 22:41:08 +00:00
|
|
|
<?php defined('SYSPATH') or die('No direct access allowed.');
|
|
|
|
|
|
|
|
/**
|
2011-09-28 06:46:22 +00:00
|
|
|
* This class provides Admin Service functions
|
2010-11-29 22:41:08 +00:00
|
|
|
*
|
|
|
|
* @package OSB
|
|
|
|
* @subpackage Service
|
|
|
|
* @category Controllers/Admin
|
|
|
|
* @author Deon George
|
|
|
|
* @copyright (c) 2010 Open Source Billing
|
|
|
|
* @license http://dev.osbill.net/license.html
|
|
|
|
*/
|
2011-08-26 01:16:48 +00:00
|
|
|
class Controller_Admin_Service extends Controller_TemplateDefault_Admin {
|
|
|
|
protected $secure_actions = array(
|
2011-10-14 05:44:12 +00:00
|
|
|
'autolist'=>FALSE, // @todo To Change
|
2011-08-27 06:33:46 +00:00
|
|
|
'list'=>TRUE,
|
2010-11-29 22:41:08 +00:00
|
|
|
'listbycheckout'=>TRUE,
|
2011-08-27 06:33:46 +00:00
|
|
|
'listadslbilling'=>TRUE,
|
2010-11-29 22:41:08 +00:00
|
|
|
'listadslservices'=>TRUE,
|
2011-09-28 06:46:22 +00:00
|
|
|
'listdomainservices'=>TRUE,
|
2011-10-14 05:44:12 +00:00
|
|
|
'listdomainservicesbysupplier'=>TRUE,
|
2011-09-28 06:46:22 +00:00
|
|
|
'listhostservices'=>TRUE,
|
2010-11-29 22:41:08 +00:00
|
|
|
'listhspaservices'=>TRUE,
|
2011-10-10 23:38:21 +00:00
|
|
|
'listinvoicesoon'=>TRUE,
|
2011-07-14 09:09:03 +00:00
|
|
|
'update'=>TRUE,
|
2010-11-29 22:41:08 +00:00
|
|
|
);
|
|
|
|
|
2011-10-14 05:44:12 +00:00
|
|
|
public function action_autolist() {
|
|
|
|
$return = array();
|
|
|
|
|
|
|
|
$s = ORM::factory('service')->where('active','=',1);
|
|
|
|
if (isset($_REQUEST['aid']))
|
|
|
|
$s = $s->where('account_id','=',$_REQUEST['aid']);
|
|
|
|
|
|
|
|
// @todo This should limit the results so that users dont see other users services.
|
|
|
|
foreach ($s->find_all() as $so)
|
|
|
|
array_push($return,array(
|
|
|
|
'value'=>$so->id,
|
|
|
|
'text'=>sprintf('%s: %s',$so->id,$so->service_name()),
|
|
|
|
));
|
|
|
|
|
|
|
|
$this->auto_render = FALSE;
|
|
|
|
$this->response->headers('Content-Type','application/json');
|
|
|
|
$this->response->body(json_encode($return));
|
|
|
|
}
|
|
|
|
|
2011-08-27 06:33:46 +00:00
|
|
|
/**
|
|
|
|
* Show a list of services
|
|
|
|
*/
|
|
|
|
public function action_list() {
|
|
|
|
Block::add(array(
|
2011-09-28 06:46:22 +00:00
|
|
|
'title'=>_('Customer Services'),
|
2011-08-27 06:33:46 +00:00
|
|
|
'body'=>Table::display(
|
2011-09-28 06:46:22 +00:00
|
|
|
ORM::factory('service')->find_all(),
|
2011-08-27 06:33:46 +00:00
|
|
|
25,
|
|
|
|
array(
|
|
|
|
'id'=>array('label'=>'ID','url'=>'user/service/view/'),
|
2011-09-28 06:46:22 +00:00
|
|
|
'service_name()'=>array('label'=>'Details'),
|
2011-08-27 06:33:46 +00:00
|
|
|
'recur_schedule'=>array('label'=>'Billing'),
|
|
|
|
'price'=>array('label'=>'Price','class'=>'right'),
|
|
|
|
'active'=>array('label'=>'Active'),
|
|
|
|
'account->accnum()'=>array('label'=>'Cust ID'),
|
|
|
|
'account->name()'=>array('label'=>'Customer'),
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'page'=>TRUE,
|
|
|
|
'type'=>'select',
|
2011-09-28 06:46:22 +00:00
|
|
|
'form'=>'user/service/view',
|
2011-08-27 06:33:46 +00:00
|
|
|
)),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2010-11-29 22:41:08 +00:00
|
|
|
/**
|
|
|
|
* List all services by their default checkout method
|
|
|
|
*/
|
|
|
|
public function action_listbycheckout() {
|
2011-10-14 05:44:12 +00:00
|
|
|
$svs = array();
|
|
|
|
// @todo This needs to be configurable
|
|
|
|
$go = ORM::factory('group',array('name'=>'Personal'));
|
|
|
|
|
|
|
|
foreach (ORM::factory('account')->where('status','=',1)->find_all() as $ao)
|
|
|
|
if ($ao->has_any('group',array($go)))
|
|
|
|
foreach ($ao->service->list_active() as $so)
|
|
|
|
if (! $so->service_billing->checkout_plugin_id)
|
|
|
|
array_push($svs,$so);
|
|
|
|
|
|
|
|
if ($svs)
|
|
|
|
Block::add(array(
|
|
|
|
'title'=>'Services that should be auto-billed',
|
|
|
|
'body'=>Table::display(
|
|
|
|
$svs,
|
|
|
|
25,
|
|
|
|
array(
|
|
|
|
'id'=>array('label'=>'ID','url'=>'user/service/view/'),
|
|
|
|
'service_name()'=>array('label'=>'Details'),
|
|
|
|
'recur_schedule'=>array('label'=>'Billing'),
|
|
|
|
'price'=>array('label'=>'Price','class'=>'right'),
|
|
|
|
'active'=>array('label'=>'Active'),
|
|
|
|
'account->accnum()'=>array('label'=>'Cust ID'),
|
|
|
|
'account->name()'=>array('label'=>'Customer'),
|
|
|
|
'date_next_invoice'=>array('label'=>'Next Invoice'),
|
|
|
|
'account->invoices_due_total(NULL,TRUE)'=>array('label'=>'Due Invoices'),
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'page'=>TRUE,
|
|
|
|
'type'=>'select',
|
|
|
|
'form'=>'user/service/view',
|
|
|
|
)),
|
|
|
|
));
|
|
|
|
|
|
|
|
foreach (ORM::factory('checkout')->where('active','=',1)->find_all() as $co) {
|
|
|
|
$svs = array();
|
|
|
|
|
|
|
|
foreach ($co->account->find_all() as $ao)
|
|
|
|
foreach ($ao->service->list_active() as $so)
|
|
|
|
if ($so->service_billing->checkout_plugin_id == $co->id)
|
|
|
|
array_push($svs,$so);
|
|
|
|
|
|
|
|
if ($svs)
|
|
|
|
Block::add(array(
|
|
|
|
'title'=>$co->name,
|
|
|
|
'body'=>Table::display(
|
|
|
|
$svs,
|
|
|
|
25,
|
|
|
|
array(
|
|
|
|
'id'=>array('label'=>'ID','url'=>'user/service/view/'),
|
|
|
|
'service_name()'=>array('label'=>'Details'),
|
|
|
|
'recur_schedule'=>array('label'=>'Billing'),
|
|
|
|
'price'=>array('label'=>'Price','class'=>'right'),
|
|
|
|
'active'=>array('label'=>'Active'),
|
|
|
|
'account->accnum()'=>array('label'=>'Cust ID'),
|
|
|
|
'account->name()'=>array('label'=>'Customer'),
|
|
|
|
'date_next_invoice'=>array('label'=>'Next Invoice'),
|
|
|
|
'account->invoices_due_total(NULL,TRUE)'=>array('label'=>'Due Invoices'),
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'page'=>TRUE,
|
|
|
|
'type'=>'select',
|
|
|
|
'form'=>'user/service/view',
|
|
|
|
)),
|
|
|
|
));
|
2010-11-29 22:41:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-28 06:46:22 +00:00
|
|
|
private function consoltraffic($svs,$date) {
|
|
|
|
$data = array();
|
|
|
|
|
|
|
|
foreach ($svs as $so) {
|
|
|
|
$c = array();
|
|
|
|
foreach ($so->plugin()->get_traffic_data_monthly($date) as $metric => $ma) {
|
|
|
|
foreach ($ma as $month => $traffic) {
|
|
|
|
// Only count the service once, not for each metric.
|
|
|
|
if (! isset($c[$month])) {
|
|
|
|
if (isset($data['svs'][$month]))
|
|
|
|
$data['svs'][$month] += 1;
|
|
|
|
else
|
|
|
|
$data['svs'][$month] = 1;
|
|
|
|
|
|
|
|
$c[$month] = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isset($data['data'][$metric][$month]))
|
|
|
|
$data['data'][$metric][$month] += (int)$traffic;
|
|
|
|
else
|
|
|
|
$data['data'][$metric][$month] = (int)$traffic;
|
|
|
|
}
|
2010-11-29 22:41:08 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-09-28 06:46:22 +00:00
|
|
|
ksort($data['svs']);
|
|
|
|
foreach ($data['data'] as $metric => $details)
|
|
|
|
ksort($data['data'][$metric]);
|
2010-11-29 22:41:08 +00:00
|
|
|
|
2011-09-28 06:46:22 +00:00
|
|
|
return $data;
|
|
|
|
}
|
2010-11-29 22:41:08 +00:00
|
|
|
|
2011-09-28 06:46:22 +00:00
|
|
|
public function action_listadslservices() {
|
|
|
|
$svs = ORM::factory('service')->list_bylistgroup('ADSL');
|
|
|
|
$data = $this->consoltraffic($svs,time());
|
2010-11-29 22:41:08 +00:00
|
|
|
|
|
|
|
$google = GoogleChart::factory('vertical_bar');
|
|
|
|
$google->title = sprintf('ADSL traffic as at %s',date('Y-m-d',strtotime('yesterday')));
|
2011-09-28 06:46:22 +00:00
|
|
|
$google->series(array('title'=>array_keys($data['data']),'axis'=>'x','data'=>$data['data']));
|
|
|
|
$google->series(array('title'=>'Services','axis'=>'r','data'=>array('Services'=>$data['svs'])));
|
2010-11-29 22:41:08 +00:00
|
|
|
|
2011-09-28 06:46:22 +00:00
|
|
|
Block::add(array('body'=>$google));
|
2010-11-29 22:41:08 +00:00
|
|
|
|
|
|
|
Block::add(array(
|
2011-09-28 06:46:22 +00:00
|
|
|
'title'=>_('ADSL Services'),
|
|
|
|
'body'=>Table::display(
|
|
|
|
$svs,
|
|
|
|
NULL,
|
|
|
|
array(
|
|
|
|
'id'=>array('label'=>'ID','url'=>'user/service/view/'),
|
|
|
|
'name()'=>array('label'=>'Service'),
|
|
|
|
'plugin()->ipaddress()'=>array('label'=>'IP Address'),
|
2011-10-12 22:20:08 +00:00
|
|
|
'product->plugin()->speed'=>array('label'=>'Speed'),
|
2011-09-28 06:46:22 +00:00
|
|
|
'product->plugin()->allowance()'=>array('label'=>'Allowance'),
|
|
|
|
'plugin()->traffic_thismonth()'=>array('label'=>'This Month'),
|
|
|
|
'plugin()->traffic_lastmonth()'=>array('label'=>'Last Month'),
|
|
|
|
'recur_schedule'=>array('label'=>'Billing'),
|
|
|
|
'price'=>array('label'=>'Price','class'=>'right'),
|
|
|
|
'account->accnum()'=>array('label'=>'Cust ID'),
|
|
|
|
'account->name()'=>array('label'=>'Customer'),
|
|
|
|
'date_next_invoice'=>array('label'=>'Next Invoice'),
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'type'=>'select',
|
|
|
|
'form'=>'user/service/view',
|
|
|
|
)),
|
2010-11-29 22:41:08 +00:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
public function action_listhspaservices() {
|
2011-09-28 06:46:22 +00:00
|
|
|
$svs = ORM::factory('service')->list_bylistgroup('HSPA');
|
|
|
|
$data = $this->consoltraffic($svs,time());
|
2010-11-29 22:41:08 +00:00
|
|
|
|
|
|
|
$google = GoogleChart::factory('vertical_bar');
|
|
|
|
$google->title = sprintf('HSPA traffic as at %s',date('Y-m-d',strtotime('yesterday')));
|
2011-09-28 06:46:22 +00:00
|
|
|
$google->series(array('title'=>array_keys($data['data']),'axis'=>'x','data'=>$data['data']));
|
|
|
|
$google->series(array('title'=>'Services','axis'=>'r','data'=>array('Services'=>$data['svs'])));
|
|
|
|
|
|
|
|
Block::add(array('body'=>$google));
|
2010-11-29 22:41:08 +00:00
|
|
|
|
|
|
|
Block::add(array(
|
2011-09-28 06:46:22 +00:00
|
|
|
'title'=>_('HSPA Services'),
|
|
|
|
'body'=>Table::display(
|
|
|
|
$svs,
|
|
|
|
NULL,
|
|
|
|
array(
|
|
|
|
'id'=>array('label'=>'ID','url'=>'user/service/view/'),
|
|
|
|
'name()'=>array('label'=>'Service'),
|
|
|
|
'plugin()->ipaddress()'=>array('label'=>'IP Address'),
|
2011-10-12 22:20:08 +00:00
|
|
|
'product->plugin()->speed'=>array('label'=>'Speed'),
|
2011-09-28 06:46:22 +00:00
|
|
|
'product->plugin()->allowance()'=>array('label'=>'Allowance'),
|
|
|
|
'plugin()->traffic_thismonth()'=>array('label'=>'This Month'),
|
|
|
|
'plugin()->traffic_lastmonth()'=>array('label'=>'Last Month'),
|
|
|
|
'recur_schedule'=>array('label'=>'Billing'),
|
|
|
|
'price'=>array('label'=>'Price','class'=>'right'),
|
|
|
|
'account->accnum()'=>array('label'=>'Cust ID'),
|
|
|
|
'account->name()'=>array('label'=>'Customer'),
|
|
|
|
'date_next_invoice'=>array('label'=>'Next Invoice'),
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'type'=>'select',
|
|
|
|
'form'=>'user/service/view',
|
|
|
|
)),
|
2010-11-29 22:41:08 +00:00
|
|
|
));
|
2011-09-28 06:46:22 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function action_listdomainservices() {
|
|
|
|
$svs = ORM::factory('service')->list_bylistgroup('DOMAIN');
|
|
|
|
Sort::MAsort($svs,'name()');
|
2010-11-29 22:41:08 +00:00
|
|
|
|
|
|
|
Block::add(array(
|
2011-09-28 06:46:22 +00:00
|
|
|
'title'=>_('Domain Names'),
|
|
|
|
'body'=>Table::display(
|
|
|
|
$svs,
|
|
|
|
25,
|
|
|
|
array(
|
|
|
|
'id'=>array('label'=>'ID','url'=>'user/service/view/'),
|
|
|
|
'service_name()'=>array('label'=>'Details'),
|
|
|
|
'plugin()->display("domain_expire")'=>array('label'=>'Expire'),
|
|
|
|
'recur_schedule'=>array('label'=>'Billing'),
|
|
|
|
'price'=>array('label'=>'Price','class'=>'right'),
|
|
|
|
'account->accnum()'=>array('label'=>'Cust ID'),
|
|
|
|
'account->name()'=>array('label'=>'Customer'),
|
|
|
|
'display("date_next_invoice")'=>array('label'=>'Next Invoice'),
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'page'=>TRUE,
|
|
|
|
'type'=>'select',
|
|
|
|
'form'=>'user/service/view',
|
|
|
|
)),
|
2010-11-29 22:41:08 +00:00
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2011-10-14 05:44:12 +00:00
|
|
|
public function action_listdomainservicesbysupplier() {
|
|
|
|
$svs = ORM::factory('service')->list_bylistgroup('DOMAIN');
|
|
|
|
Sort::MAsort($svs,'plugin()->domain_registrar_id,name()');
|
|
|
|
|
|
|
|
$list = array();
|
|
|
|
|
|
|
|
foreach ($svs as $so)
|
|
|
|
$list[$so->plugin()->domain_registrar_id][] = $so;
|
|
|
|
|
|
|
|
foreach (array_keys($list) as $sid)
|
|
|
|
Block::add(array(
|
|
|
|
'title'=>sprintf(_('Domain Names by Supplier %s'),$sid),
|
|
|
|
'body'=>Table::display(
|
|
|
|
$list[$sid],
|
|
|
|
25,
|
|
|
|
array(
|
|
|
|
'id'=>array('label'=>'ID','url'=>'user/service/view/'),
|
|
|
|
'service_name()'=>array('label'=>'Details'),
|
|
|
|
'plugin()->display("domain_expire")'=>array('label'=>'Expire'),
|
|
|
|
'recur_schedule'=>array('label'=>'Billing'),
|
|
|
|
'price'=>array('label'=>'Price','class'=>'right'),
|
|
|
|
'account->accnum()'=>array('label'=>'Cust ID'),
|
|
|
|
'account->name()'=>array('label'=>'Customer'),
|
|
|
|
'display("date_next_invoice")'=>array('label'=>'Next Invoice'),
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'page'=>TRUE,
|
|
|
|
'type'=>'select',
|
|
|
|
'form'=>'user/service/view',
|
|
|
|
)),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2011-09-28 06:46:22 +00:00
|
|
|
public function action_listhostservices() {
|
|
|
|
$svs = ORM::factory('service')->list_bylistgroup('HOST');
|
|
|
|
Sort::MAsort($svs,'name()');
|
|
|
|
|
|
|
|
Block::add(array(
|
|
|
|
'title'=>_('Hosting Services'),
|
|
|
|
'body'=>Table::display(
|
|
|
|
$svs,
|
|
|
|
25,
|
|
|
|
array(
|
|
|
|
'id'=>array('label'=>'ID','url'=>'user/service/view/'),
|
|
|
|
'service_name()'=>array('label'=>'Details'),
|
|
|
|
'plugin()->display("host_expire")'=>array('label'=>'Expire'),
|
|
|
|
'recur_schedule'=>array('label'=>'Billing'),
|
|
|
|
'price'=>array('label'=>'Price','class'=>'right'),
|
|
|
|
'account->accnum()'=>array('label'=>'Cust ID'),
|
|
|
|
'account->name()'=>array('label'=>'Customer'),
|
|
|
|
'display("date_next_invoice")'=>array('label'=>'Next Invoice'),
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'page'=>TRUE,
|
|
|
|
'type'=>'select',
|
|
|
|
'form'=>'user/service/view',
|
|
|
|
)),
|
|
|
|
));
|
|
|
|
}
|
2010-11-29 22:41:08 +00:00
|
|
|
/**
|
|
|
|
* Reconcile billing for an ADSL supplier
|
|
|
|
*
|
|
|
|
* @todo this should really be in a different class, since adsl wont be part of the main app
|
|
|
|
*/
|
|
|
|
public function action_listadslbilling($id) {
|
|
|
|
$aso = ORM::factory('adsl_supplier',$id);
|
|
|
|
|
|
|
|
// Process upload
|
|
|
|
// @todo This should be separated out by supplier in case each supplier has a different format
|
2011-07-13 22:59:32 +00:00
|
|
|
if ($_FILES) {
|
|
|
|
$files = Validation::factory($_FILES)
|
|
|
|
->rule('csv','Upload::valid')
|
|
|
|
->rule('csv','Upload::not_empty')
|
|
|
|
->rule('csv','Upload::type',array(':value',array('csv')))
|
|
|
|
->rule('csv','Upload::size',array(':value','10M'));
|
|
|
|
|
2011-10-14 05:44:12 +00:00
|
|
|
if ($files->check())
|
2011-07-13 22:59:32 +00:00
|
|
|
foreach ($files as $file)
|
|
|
|
$csv = $this->process($file);
|
2010-11-29 22:41:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// @todo add a display if there are no items
|
|
|
|
$i = $j = 0;
|
|
|
|
$total = 0;
|
|
|
|
$summary = '';
|
2011-07-22 01:04:20 +00:00
|
|
|
$output = View::factory('service/admin/list/adslbilling_head');
|
2010-11-29 22:41:08 +00:00
|
|
|
$output .= '<table class="box-left">';
|
|
|
|
foreach ($aso->services(TRUE) as $so) {
|
2011-09-28 06:46:22 +00:00
|
|
|
$po = $so->plugin()->product();
|
|
|
|
|
2010-11-29 22:41:08 +00:00
|
|
|
// Reset our uploaded data
|
|
|
|
$uploaded = array();
|
2011-09-28 06:46:22 +00:00
|
|
|
$uploaded['excess'] = empty($csv[$so->plugin()->service_number]['excess']) ? 0 : $csv[$so->plugin()->service_number]['excess'];
|
|
|
|
|
2010-11-29 22:41:08 +00:00
|
|
|
// If our uploaded file has some cost data.
|
2011-09-28 06:46:22 +00:00
|
|
|
if (! empty($csv[$so->plugin()->service_number])) {
|
2011-10-14 05:44:12 +00:00
|
|
|
$uploaded['amount'] =
|
2011-09-28 06:46:22 +00:00
|
|
|
(empty($csv[$so->plugin()->service_number]['cost']) ? 0 : $csv[$so->plugin()->service_number]['cost']) +
|
|
|
|
(empty($csv[$so->plugin()->service_number]['credit']) ? 0 : $csv[$so->plugin()->service_number]['credit']);
|
2010-11-29 22:41:08 +00:00
|
|
|
|
|
|
|
// Record the the exception if the cost is not expected
|
2011-09-28 06:46:22 +00:00
|
|
|
if (round($po->adsl_supplier_plan->base_cost+$po->adsl_supplier_plan->tax(),2) != $uploaded['amount']) {
|
2011-07-22 01:04:20 +00:00
|
|
|
$summary .= View::factory('service/admin/list/adslbilling_summary')
|
2010-11-29 22:41:08 +00:00
|
|
|
->set('service',$so)
|
2011-09-28 06:46:22 +00:00
|
|
|
->set('plan',$po)
|
|
|
|
->set('planoverride',$so->plugin()->provided_adsl_plan_id ? TRUE : FALSE)
|
2010-11-29 22:41:08 +00:00
|
|
|
->set('amount',$uploaded['amount'])
|
|
|
|
->set('i',$j++%2);
|
|
|
|
|
|
|
|
$uploaded['checked'] = '';
|
|
|
|
} else {
|
|
|
|
$uploaded['checked'] = 'checked="checked"';
|
|
|
|
}
|
|
|
|
|
2011-09-28 06:46:22 +00:00
|
|
|
unset($csv[$so->plugin()->service_number]);
|
2010-11-29 22:41:08 +00:00
|
|
|
|
|
|
|
} else {
|
|
|
|
$uploaded['checked'] = '';
|
|
|
|
$uploaded['amount'] = 0;
|
|
|
|
}
|
2011-09-28 06:46:22 +00:00
|
|
|
|
2010-11-29 22:41:08 +00:00
|
|
|
$total += $uploaded['amount'];
|
|
|
|
|
2011-07-22 01:04:20 +00:00
|
|
|
$output .= View::factory('service/admin/list/adslbilling_body')
|
2010-11-29 22:41:08 +00:00
|
|
|
->set('service',$so)
|
2011-09-28 06:46:22 +00:00
|
|
|
->set('plan',$po)
|
|
|
|
->set('planoverride',$so->plugin()->provided_adsl_plan_id ? TRUE : FALSE)
|
2010-11-29 22:41:08 +00:00
|
|
|
->set('checked',$uploaded['checked'])
|
|
|
|
->set('amount',$uploaded['amount'])
|
2011-09-28 06:46:22 +00:00
|
|
|
->set('excess',$uploaded['excess'])
|
|
|
|
->set('adsl',$so->plugin())
|
2010-11-29 22:41:08 +00:00
|
|
|
->set('i',$i++%2);
|
|
|
|
}
|
|
|
|
|
2011-07-22 01:04:20 +00:00
|
|
|
$output .= View::factory('service/admin/list/adslbilling_foot')
|
2010-11-29 22:41:08 +00:00
|
|
|
->set('total',$total);
|
|
|
|
|
|
|
|
$output .= '</table>';
|
|
|
|
|
|
|
|
// Summary Report of remaining CSV items.
|
|
|
|
if (! empty($csv))
|
|
|
|
foreach ($csv as $service => $item) {
|
2011-07-22 01:04:20 +00:00
|
|
|
$summary .= View::factory('service/admin/list/adslbilling_summary_exception')
|
2010-11-29 22:41:08 +00:00
|
|
|
->set('service',$service)
|
|
|
|
->set('item',$item)
|
|
|
|
->set('i',$j++%2);
|
|
|
|
}
|
|
|
|
|
|
|
|
$output .= Form::open(NULL,array('enctype'=>'multipart/form-data'));
|
|
|
|
$output .= '<div>';
|
|
|
|
$output .= Form::file('csv');
|
2011-08-31 06:54:44 +00:00
|
|
|
$output .= Form::submit('submit','upload',array('class'=>'form_button'));
|
2010-11-29 22:41:08 +00:00
|
|
|
$output .= '</div>';
|
|
|
|
$output .= Form::close();
|
|
|
|
|
|
|
|
Block::add(array(
|
|
|
|
'title'=>_('ADSL Services'),
|
|
|
|
'body'=>$output,
|
2011-07-14 09:09:03 +00:00
|
|
|
));
|
2010-11-29 22:41:08 +00:00
|
|
|
|
|
|
|
if ($summary)
|
|
|
|
Block::add(array(
|
|
|
|
'title'=>_('Exception Charges'),
|
|
|
|
'body'=>'<table class="box-left">'.$summary.'</table>',
|
|
|
|
));
|
|
|
|
|
|
|
|
Style::add(array(
|
|
|
|
'type'=>'file',
|
|
|
|
'data'=>'css/list.css',
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
private function process(array $file) {
|
|
|
|
$data = file_get_contents($file['tmp_name']);
|
|
|
|
|
|
|
|
if (! $data)
|
|
|
|
return;
|
|
|
|
|
|
|
|
$start = $end = FALSE;
|
|
|
|
$return = array();
|
|
|
|
foreach (preg_split("/\n/",$data) as $line) {
|
|
|
|
// Items start after "Item ID"
|
|
|
|
if (! $start && preg_match('/^Item ID,/',$line)) {
|
|
|
|
$start = true;
|
|
|
|
continue;
|
|
|
|
// Items end after "Subtotal"
|
|
|
|
} elseif ($start && ! $end && preg_match('/^Subtotal:,/',$line)) {
|
|
|
|
$end = true;
|
|
|
|
continue;
|
|
|
|
// If we havent started or not ended, continue
|
|
|
|
} elseif (! $start || $end) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
list($id,$ref,$unknown,$linedata,$q,$cost,$total) = explode(',',$line);
|
|
|
|
|
|
|
|
// Extract the phone number from the $linedata
|
|
|
|
@list($service,$description) = explode(':',(preg_replace('/([0-9]+)\s+-\s+(.*)$/',"$1:$2",$linedata)));
|
|
|
|
|
|
|
|
// If the description says Monthly Charge, we know its the monthly fee.
|
|
|
|
if (preg_match('/^Monthly Charge/',$description))
|
|
|
|
$return[$service]['cost'] = preg_replace('/\$/','',$total);
|
|
|
|
// If the description says VISP credit, we know this is commission.
|
|
|
|
elseif (preg_match('/^VISP Credit/',$description))
|
|
|
|
$return[$service]['credit'] = preg_replace('/\$/','',$total);
|
2011-09-28 06:46:22 +00:00
|
|
|
// If the description says Excess, we know this is excess charges.
|
2010-11-29 22:41:08 +00:00
|
|
|
elseif (preg_match('/^Excess usage/',$description))
|
|
|
|
$return[$service]['excess'] = preg_replace('/\$/','',$total);
|
|
|
|
else
|
|
|
|
$return[$service]['info'] = $line;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $return;
|
|
|
|
}
|
2011-07-14 09:09:03 +00:00
|
|
|
|
2011-10-10 23:38:21 +00:00
|
|
|
/**
|
|
|
|
* List services that need to be invoiced.
|
|
|
|
*/
|
|
|
|
public function action_listinvoicesoon() {
|
|
|
|
Block::add(array(
|
|
|
|
'title'=>_('Services to Invoice'),
|
|
|
|
'body'=>Table::display(
|
|
|
|
ORM::factory('service')->list_invoicesoon(),
|
|
|
|
25,
|
|
|
|
array(
|
|
|
|
'id'=>array('label'=>'ID','url'=>'user/service/view/'),
|
|
|
|
'service_name()'=>array('label'=>'Details'),
|
|
|
|
'recur_schedule'=>array('label'=>'Billing'),
|
|
|
|
'date_next_invoice'=>array('label'=>'Next Invoice'),
|
|
|
|
'price'=>array('label'=>'Price','class'=>'right'),
|
|
|
|
'active'=>array('label'=>'Active'),
|
|
|
|
'account->accnum()'=>array('label'=>'Cust ID'),
|
|
|
|
'account->name()'=>array('label'=>'Customer'),
|
|
|
|
),
|
|
|
|
array(
|
|
|
|
'page'=>TRUE,
|
|
|
|
'type'=>'select',
|
|
|
|
'form'=>'user/service/view',
|
|
|
|
)),
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2011-12-16 23:31:35 +00:00
|
|
|
public function action_update() {
|
|
|
|
$id = $this->request->param('id');
|
2011-07-14 09:09:03 +00:00
|
|
|
$so = ORM::factory('service',$id);
|
|
|
|
|
|
|
|
if (! $so->loaded())
|
|
|
|
Request::current()->redirect('welcome/index');
|
|
|
|
|
|
|
|
if ($_POST) {
|
|
|
|
if (isset($_POST['plugin']) AND $_POST['plugin'])
|
|
|
|
if (! $so->plugin()->values($_POST['plugin'])->update()->saved())
|
|
|
|
throw new Kohana_Exception('Failed to save updates to plugin data for record :record',array(':record'=>$so->id()));
|
|
|
|
|
|
|
|
if (! $so->values($_POST)->update()->saved())
|
|
|
|
throw new Kohana_Exception('Failed to save updates to plugin data for record :record',array(':record'=>$so->id()));
|
|
|
|
}
|
|
|
|
|
|
|
|
Block::add(array(
|
|
|
|
'title'=>sprintf('%s %s:%s',_('Update Service'),$so->id(),$so->name()),
|
|
|
|
'body'=>View::factory($so->viewpath())
|
|
|
|
->set('so',$so)
|
2011-07-22 01:04:20 +00:00
|
|
|
->set('mediapath',Route::get('default/media'))
|
2011-07-14 09:09:03 +00:00
|
|
|
->set('plugin_form',$so->admin_update()),
|
|
|
|
));
|
2011-07-22 01:04:20 +00:00
|
|
|
|
|
|
|
// @todo Investigate a better way of preparing for jscalendar
|
|
|
|
Script::add(array(
|
|
|
|
'type'=>'file',
|
|
|
|
'data'=>'js/dhtml.calendar.js',
|
|
|
|
));
|
|
|
|
Script::add(array(
|
|
|
|
'type'=>'file',
|
|
|
|
'data'=>'js/dhtml.calendar-setup.js',
|
|
|
|
));
|
|
|
|
Script::add(array(
|
|
|
|
'type'=>'file',
|
|
|
|
'data'=>'js/dhtml.calendar-en.js',
|
|
|
|
));
|
|
|
|
Script::add(array(
|
|
|
|
'type'=>'file',
|
|
|
|
'data'=>'js/dhtml.date_selector.js',
|
|
|
|
));
|
|
|
|
Style::add(array(
|
|
|
|
'type'=>'file',
|
|
|
|
'data'=>'css/dhtml.calendar.css',
|
|
|
|
));
|
2011-07-14 09:09:03 +00:00
|
|
|
}
|
2010-11-29 22:41:08 +00:00
|
|
|
}
|
|
|
|
?>
|