2013-10-10 02:44:53 +00:00
|
|
|
<?php defined('SYSPATH') or die('No direct access allowed.');
|
|
|
|
|
|
|
|
/**
|
|
|
|
* This class supports ADSL Suppliers
|
|
|
|
*
|
|
|
|
* @package ADSL
|
|
|
|
* @category Models
|
|
|
|
* @author Deon George
|
|
|
|
* @copyright (c) 2009-2013 Open Source Billing
|
|
|
|
* @license http://dev.osbill.net/license.html
|
|
|
|
*/
|
|
|
|
class Model_ADSL_Supplier extends ORM_OSB {
|
2013-06-01 13:43:31 +00:00
|
|
|
protected $_updated_column = FALSE;
|
|
|
|
|
2013-10-10 02:44:53 +00:00
|
|
|
// Relationships
|
|
|
|
protected $_has_many = array(
|
|
|
|
'adsl_supplier_plan'=>array('model'=>'ADSL_Supplier_Plan','foreign_key'=>'supplier_id','far_key'=>'id'),
|
|
|
|
);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a list of plans that this supplier makes available
|
|
|
|
*/
|
|
|
|
public function plans($active=TRUE) {
|
2013-06-01 13:43:31 +00:00
|
|
|
return $active ? $this->adsl_supplier_plan->where_active() : $this->adsl_supplier_plan;
|
2013-10-10 02:44:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a list of plans that we provide by this supplier
|
2013-06-01 13:43:31 +00:00
|
|
|
* @deprecated
|
2013-10-10 02:44:53 +00:00
|
|
|
*/
|
|
|
|
public function adsl_plans($active=TRUE) {
|
|
|
|
$result = array();
|
|
|
|
|
|
|
|
foreach ($this->plans($active)->find_all() as $po)
|
|
|
|
foreach ($po->adsl_plan->find_all() as $apo)
|
|
|
|
$result[$apo->id] = $apo;
|
|
|
|
|
|
|
|
return $result;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return a list of services for this supplier
|
|
|
|
*
|
|
|
|
* @param boolean $active TRUE List only active Services|False List all services
|
|
|
|
*/
|
|
|
|
public function services($active=TRUE) {
|
2013-06-01 13:43:31 +00:00
|
|
|
$result = array();
|
2013-10-10 02:44:53 +00:00
|
|
|
|
2013-06-01 13:43:31 +00:00
|
|
|
foreach ($this->plans(FALSE)->find_all() as $aspo) {
|
|
|
|
foreach ($aspo->adsl_plan->find_all() as $apo) {
|
|
|
|
foreach ($apo->products(FALSE)->find_all() as $po) {
|
|
|
|
foreach ($po->services($active)->find_all() as $so) {
|
|
|
|
array_push($result,$so);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2013-10-10 02:44:53 +00:00
|
|
|
|
2013-06-01 13:43:31 +00:00
|
|
|
return $result;
|
2013-10-10 02:44:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
?>
|