osb/app/Models/Service.php

882 lines
20 KiB
PHP
Raw Normal View History

2018-05-20 12:53:14 +00:00
<?php
namespace App\Models;
use Exception;
use Illuminate\Database\Eloquent\Collection as DatabaseCollection;
2018-05-20 12:53:14 +00:00
use Illuminate\Database\Eloquent\Model;
2020-02-05 04:47:24 +00:00
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\Relations\HasOne;
use Illuminate\Database\Eloquent\Relations\MorphTo;
use Illuminate\Support\Arr;
use Illuminate\Support\Collection;
2018-08-11 05:09:41 +00:00
use App\Traits\NextKey;
use Leenooks\Carbon;
2018-05-20 12:53:14 +00:00
class Service extends Model
{
2018-08-11 05:09:41 +00:00
use NextKey;
const RECORD_ID = 'service';
2020-02-05 04:47:24 +00:00
public $incrementing = FALSE;
const CREATED_AT = 'date_orig';
const UPDATED_AT = 'date_last';
2018-08-11 05:09:41 +00:00
2020-02-05 04:47:24 +00:00
protected $dates = [
'date_last_invoice',
'date_next_invoice'.
'date_start',
'date_end',
2020-02-05 04:47:24 +00:00
];
public $dateFormat = 'U';
2020-02-05 04:47:24 +00:00
protected $table = 'ab_service';
2018-08-11 05:09:41 +00:00
protected $casts = [
'order_info'=>'array',
];
protected $appends = [
2018-08-11 05:09:41 +00:00
'account_name',
2018-08-23 05:17:26 +00:00
'admin_service_id_url',
'billing_price',
'name_short',
'next_invoice',
'product_category',
'product_name',
'service_id',
'service_id_url',
'status',
];
2018-08-11 05:09:41 +00:00
protected $visible = [
2018-08-11 05:09:41 +00:00
'account_name',
2018-08-23 05:17:26 +00:00
'admin_service_id_url',
'active',
'billing_price',
'data_orig',
'id',
'name_short',
'next_invoice',
'product_category',
'product_name',
'service_id',
'service_id_url',
'status',
];
2018-05-20 12:53:14 +00:00
2018-08-11 05:09:41 +00:00
private $inactive_status = [
2019-01-24 10:49:56 +00:00
'CANCELLED',
2018-11-21 02:46:16 +00:00
'ORDER-REJECTED',
2019-01-24 03:40:33 +00:00
'ORDER-CANCELLED',
];
/**
* Valid status shows the applicable next status for an action on a service
* Each status can be
* + Approved, to proceed to the next valid status'
* + Held, to a holding pattern status
* + Rejected, reverted to an different status
* + Cancel, to progress down a decomission route
* + Updated, stay on the current status with new information
*
* @var array
*/
2019-01-24 03:40:33 +00:00
private $valid_status = [
2019-01-24 10:49:56 +00:00
// Order Submitted
'ORDER-SUBMIT' => ['approve'=>'ORDER-SENT','hold'=>'ORDER-HOLD','reject'=>'ORDER-REJECTED','cancel'=>'ORDER-CANCELLED'],
// Order On Hold (Reason)
2019-01-24 11:03:43 +00:00
'ORDER-HOLD' => ['release'=>'ORDER-SUBMIT','update_reference'=>'ORDER-SENT'],
2019-01-24 10:49:56 +00:00
// Order Rejected (Reason)
'ORDER-REJECTED' => [],
// Order Cancelled
'ORDER-CANCELLED' => [],
// Order Sent to Supplier
2019-01-24 10:55:43 +00:00
'ORDER-SENT' => ['update_reference'=>'ORDER-SENT','confirm'=>'ORDERED'],
// Order Confirmed by Supplier
'ORDERED' => ['update_reference'=>'ORDER-SENT'],
2018-08-11 05:09:41 +00:00
];
2019-01-24 10:49:56 +00:00
/**
* Account the service belongs to
*
2020-02-05 04:47:24 +00:00
* @return BelongsTo
2019-01-24 10:49:56 +00:00
*/
2018-05-20 12:53:14 +00:00
public function account()
{
2018-07-13 04:53:44 +00:00
return $this->belongsTo(Account::class);
2018-05-20 12:53:14 +00:00
}
2020-02-05 04:47:24 +00:00
/**
* Return automatic billing details
*
* @return HasOne
*/
public function billing()
{
return $this->hasOne(AccountBilling::class);
}
2019-07-02 05:28:27 +00:00
/**
* Return Charges associated with this Service
*
2020-02-05 04:47:24 +00:00
* @return HasMany
2019-07-02 05:28:27 +00:00
*/
public function charges()
{
return $this->hasMany(Charge::class)
->where('active','=',TRUE)
->orderBy('date_orig');
}
// @todo changed to invoiced_items
2019-06-29 00:14:12 +00:00
public function invoice_items($active=TRUE)
{
$query = $this->hasMany(InvoiceItem::class)
2019-07-02 05:28:27 +00:00
->where('item_type','=',0)
2019-06-29 00:14:12 +00:00
->orderBy('date_orig');
if ($active)
$query->where('active','=',TRUE);
return $query;
}
/**
* Invoices for this service
*
*/
public function invoices($active=TRUE)
{
$query = $this->hasManyThrough(Invoice::class,InvoiceItem::class,NULL,'id',NULL,'invoice_id')
->distinct('id')
->where('ab_invoice.site_id','=',$this->site_id)
->where('ab_invoice_item.site_id','=',$this->site_id)
->orderBy('date_orig')
->orderBy('due_date');
if ($active)
$query->where('ab_invoice_item.active','=',TRUE)
->where('ab_invoice.active','=',TRUE);
return $query;
}
2019-01-24 10:49:56 +00:00
/**
* Account that ordered the service
*
2020-02-05 04:47:24 +00:00
* @return BelongsTo
2019-01-24 10:49:56 +00:00
*/
2020-02-05 04:47:24 +00:00
public function orderedby()
{
return $this->belongsTo(Account::class);
}
2019-01-24 10:49:56 +00:00
/**
2019-06-29 00:14:12 +00:00
* Product of the service
2019-01-24 10:49:56 +00:00
*
2020-02-05 04:47:24 +00:00
* @return BelongsTo
2019-01-24 10:49:56 +00:00
*/
2019-06-29 00:14:12 +00:00
public function product()
{
2019-06-29 00:14:12 +00:00
return $this->belongsTo(Product::class);
}
/**
* The site this service is configured for
*
* @todo It may be more appropriate to get this from the account->user attribute (ie: for mail actions)
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
*/
public function site()
{
return $this->belongsTo(Site::class);
}
/**
* Return a child model with details of the service
*
2020-02-05 04:47:24 +00:00
* @return MorphTo
*/
public function type()
{
return $this->morphTo(null,'model','id','service_id');
}
/** SCOPES **/
2019-01-24 10:49:56 +00:00
/**
* Only query active categories
2019-01-24 10:49:56 +00:00
*/
public function scopeActive($query)
2018-05-20 12:53:14 +00:00
{
return $query->where(function () use ($query) {
2020-02-05 04:47:24 +00:00
$query->where('active',TRUE)
->orWhereNotIn('order_status',$this->inactive_status);
});
2018-05-20 12:53:14 +00:00
}
2018-11-21 02:46:16 +00:00
/**
* Find inactive services.
*
* @param $query
* @return mixed
*/
public function scopeInActive($query)
{
return $query->where(function () use ($query) {
2020-02-05 04:47:24 +00:00
$query->where('active',FALSE)
->orWhereIn('order_status',$this->inactive_status);
2018-11-21 02:46:16 +00:00
});
}
/**
* Enable to perform queries without eager loading
*
* @param $query
* @return mixed
*/
public function scopeNoEagerLoads($query){
return $query->setEagerLoads([]);
}
/**
* Search for a record
*
* @param $query
* @param string $term
* @return
*/
public function scopeSearch($query,string $term)
{
return $query->where('id','like','%'.$term.'%');
}
/** ATTRIBUTES **/
/**
* Name of the account for this service
*
* @return mixed
*/
public function getAccountNameAttribute(): string
2018-08-11 05:09:41 +00:00
{
return $this->account->name;
}
/**
* @deprecated Use getUrlAdminAttribute()
*/
public function getAdminServiceIdUrlAttribute()
2018-08-23 05:17:26 +00:00
{
return $this->getUrlAdminAttribute();
2018-08-23 05:17:26 +00:00
}
2020-02-05 04:47:24 +00:00
/**
* Return the auto billing details
*
* @return mixed
*/
public function getAutoPayAttribute()
{
return $this->billing;
}
2019-06-29 00:14:12 +00:00
public function getBillingPriceAttribute(): float
{
// @todo Temporary for services that dont have recur_schedule set.
if (is_null($this->recur_schedule) OR is_null($this->product->price($this->recur_schedule)))
$this->price=0;
return $this->addTax(is_null($this->price) ? $this->product->price($this->recur_schedule) : $this->price);
2019-06-29 00:14:12 +00:00
}
/**
2019-06-29 00:14:12 +00:00
* Return the service billing period
*
* @return string
*/
2019-06-29 00:14:12 +00:00
public function getBillingPeriodAttribute(): string
2018-06-05 11:13:57 +00:00
{
2019-06-29 00:14:12 +00:00
return Arr::get($this->product->PricePeriods(),$this->recur_schedule,'Unknown');
2018-06-05 11:13:57 +00:00
}
/**
2019-06-29 00:14:12 +00:00
* Date the service expires, also represents when it is paid up to
*
* @return string
*/
2019-06-29 00:14:12 +00:00
public function getExpiresAttribute(): string
2018-08-01 07:09:38 +00:00
{
2019-06-29 00:14:12 +00:00
return 'TBA';
2018-08-01 07:09:38 +00:00
}
/**
* Return the date for the next invoice
*
2019-06-29 00:14:12 +00:00
* @todo This function negates the need for date_next_invoice
* @return Carbon|string
*/
2019-07-02 05:28:27 +00:00
public function getInvoiceNextAttribute()
2018-11-21 03:37:17 +00:00
{
2019-06-29 00:14:12 +00:00
$last = $this->getInvoiceToAttribute();
$date = $last ? $last->addDay() : Carbon::now();
2019-07-02 05:28:27 +00:00
return request()->wantsJson() ? $date->format('Y-m-d') : $date;
}
/**
* Return the end date for the next invoice
*
* @return mixed
* @throws Exception
*/
2019-07-02 05:28:27 +00:00
public function getInvoiceNextEndAttribute()
{
switch ($this->recur_schedule) {
2019-07-02 05:28:27 +00:00
// Weekly
case 0: $date = $this->product->price_recurr_strict
? $this->getInvoiceNextAttribute()->endOfWeek()
: $this->getInvoiceNextAttribute()->addWeek()->subDay();
break;
// Monthly
case 1:
$date = $this->product->price_recurr_strict
? $this->getInvoiceNextAttribute()->endOfMonth()
: $this->getInvoiceNextAttribute()->addMonth()->subDay();
break;
// Quarterly
case 2:
$date = $this->product->price_recurr_strict
? $this->getInvoiceNextAttribute()->endOfQuarter()
: $this->getInvoiceNextAttribute()->addQuarter()->subDay();
break;
// Half Yearly
case 3:
$date = $this->product->price_recurr_strict
? $this->getInvoiceNextAttribute()->endOfHalf()
: $this->getInvoiceNextAttribute()->addQuarter(2)->subDay();
break;
// Yearly
case 4:
$date = $this->product->price_recurr_strict
? $this->getInvoiceNextAttribute()->endOfYear()
: $this->getInvoiceNextAttribute()->addYear()->subDay();
break;
// Two Yearly
// NOTE: price_recurr_strict ignored
case 5: $date = $this->getInvoiceNextAttribute()->addYear(2)->subDay(); break;
// Three Yearly
// NOTE: price_recurr_strict ignored
case 6: $date = $this->getInvoiceNextAttribute()->addYear(3)->subDay(); break;
default: throw new Exception('Unknown recur_schedule');
}
return $date;
}
public function getInvoiceNextQuantityAttribute()
{
// If we are not rounding to the first day of the cycle, then it is always a full cycle
if (! $this->product->price_recurr_strict)
return 1;
$n = $this->invoice_next->diff($this->invoice_next_end)->days+1;
switch ($this->recur_schedule) {
// Weekly
case 0:
$d = $this->invoice_next_end->diff($this->invoice_next_end->startOfWeek())->days;
break;
2019-07-02 05:28:27 +00:00
// Monthly
case 1:
$d = $this->invoice_next_end->diff($this->invoice_next_end->startOfMonth())->days;
break;
2019-07-02 05:28:27 +00:00
// Quarterly
case 2:
$d = $this->invoice_next_end->diff($this->invoice_next_end->startOfQuarter())->days;
break;
2019-07-02 05:28:27 +00:00
// Half Yearly
case 3:
$d = $this->invoice_next_end->diff($this->invoice_next_end->startOfHalf())->days;
break;
2019-07-02 05:28:27 +00:00
// Yearly
case 4:
$d = $this->invoice_next_end->diff($this->invoice_next_end->startOfYear())->days;
break;
2019-07-02 05:28:27 +00:00
// Two Yearly
case 5:
$d = $this->invoice_next_end->diff($this->invoice_next_end->subyear(2))->days-1;
break;
2019-07-02 05:28:27 +00:00
// Three Yearly
case 6:
$d = $this->invoice_next_end->diff($this->invoice_next_end->subyear(3))->days-1;
break;
default: throw new Exception('Unknown recur_schedule');
2019-07-02 05:28:27 +00:00
}
2019-06-29 00:14:12 +00:00
// Include the start date and end date.
$d += 1;
return round($n/$d,2);
2019-06-29 00:14:12 +00:00
}
/**
* Get the date that the service has been invoiced to
*/
public function getInvoiceToAttribute()
{
return $this->invoice_items->count() ? $this->invoice_items->last()->date_stop : NULL;
2018-11-21 03:37:17 +00:00
}
2019-07-02 05:28:27 +00:00
public function getNameAttribute(): string
{
return $this->product->name_short.': '.$this->getNameShortAttribute();
}
/**
* Return the short name for the service.
*
* EG:
* For ADSL, this would be the phone number,
* For Hosting, this would be the domain name, etc
2020-02-05 04:47:24 +00:00
* @deprecated
*/
public function getNameShortAttribute()
{
return $this->model ? $this->type->name : 'NAME UNKNOWN';
}
/**
* @deprecated see getInvoiceNextAttribute()
*/
public function getNextInvoiceAttribute()
2018-06-05 11:13:57 +00:00
{
return $this->getInvoiceNextAttribute();
}
2019-01-24 03:40:33 +00:00
/**
* This function will present the Order Info Details
*/
2019-01-24 06:16:51 +00:00
public function getOrderInfoDetailsAttribute(): string
2019-01-24 03:40:33 +00:00
{
2019-01-24 06:16:51 +00:00
if (! $this->order_info)
return '';
2019-01-24 03:40:33 +00:00
$result = '';
2019-01-24 06:16:51 +00:00
2019-01-24 03:40:33 +00:00
foreach ($this->order_info as $k=>$v)
{
if (in_array($k,['order_reference']))
continue;
2019-01-24 03:40:33 +00:00
$result .= sprintf('%s: <b>%s</b><br>',ucfirst($k),$v);
}
2019-01-24 03:40:33 +00:00
return $result;
}
2020-02-05 04:47:24 +00:00
/**
* Work out when this service has been paid to.
*
* @todo This might need to be optimised
*/
public function getPaidToAttribute()
{
foreach ($this->invoices->reverse() as $o) {
if ($o->due == 0) {
return $o->items
->filter(function($item) {
return $item->item_type === 0;
})
->last()
->date_stop;
}
}
}
/**
* Get the Product's Category for this service
*
*/
public function getProductCategoryAttribute(): string
2018-05-20 12:53:14 +00:00
{
return $this->product->category;
2018-05-20 12:53:14 +00:00
}
/**
* Get the Product's Short Name for the service
*
* @return string
*/
public function getProductNameAttribute(): string
{
return $this->product->name($this->account->language);
}
public function getRecurScheduleAttribute($value): int
{
// If recur_schedule not set, default to 2
return $value ?? 2;
}
/**
2020-02-05 04:47:24 +00:00
* @deprecated see getSIDAttribute()
*/
2020-02-05 04:47:24 +00:00
public function getServiceIdAttribute(): string
{
return $this->getSIDAttribute();
}
/**
* @deprecated see getUrlUserAttribute()
*/
public function getServiceIdUrlAttribute()
{
return $this->getUrlUserAttribute();
}
/**
* @deprecated see getServiceIdAttribute()
*/
2018-05-20 12:53:14 +00:00
public function getServiceNumberAttribute()
{
return $this->getSIDAttribute();
2018-05-20 12:53:14 +00:00
}
2018-08-11 05:09:41 +00:00
2019-06-29 00:14:12 +00:00
/**
* Services Unique Identifier
*
* @return string
*/
public function getSIDAttribute(): string
{
return sprintf('%02s-%04s.%05s',$this->site_id,$this->account_id,$this->id);
}
2020-02-05 04:47:24 +00:00
/**
* Return the service description.
* For:
* + Broadband, this is the service address
* + Domains, blank
* + Hosting, blank
* + SSL, blank
*
* @return string
*/
public function getSDescAttribute(): string
{
return $this->type->service_description ?: 'Service Description NOT Defined for :'.$this->type->type;
2020-02-05 04:47:24 +00:00
}
/**
* Return the service name.
* For:
* + Broadband, this is the service number
* + Domains, this is the full domain name
* + Hosting, this is the full domain name
* + SSL, this is the DN
*
* @return string
*/
public function getSNameAttribute(): string
{
return $this->type->service_name ?: 'Service Name NOT Defined for :'.$this->type->type;
2020-02-05 04:47:24 +00:00
}
/**
* Return the service product type
* This is used for view specific details
*
* @return string
*/
public function getSTypeAttribute(): string
{
switch($this->product->model) {
case 'App\Models\Product\Adsl': return 'broadband';
default: return $this->type->type;
2020-02-05 04:47:24 +00:00
}
}
/**
* Return the Service Status
*
* @return string
*/
public function getStatusAttribute(): string
2018-08-11 05:09:41 +00:00
{
if (! $this->order_status)
return $this->active ? 'ACTIVE' : 'INACTIVE';
else
return $this->order_status;
}
/**
* Return the detailed order Status, with order reference numbers.
*
* @return string
*/
public function getStatusDetailAttribute(): string
{
2019-01-24 10:55:43 +00:00
return in_array($this->order_status,['ORDER-SENT','ORDER-HOLD','ORDERED'])
? sprintf('%s: <span class="white-space: nowrap"><small><b>#%s</b></small></span>',$this->order_status,Arr::get($this->order_info,'order_reference','Unknown'))
: '';
2018-08-11 05:09:41 +00:00
}
2019-06-29 00:14:12 +00:00
/**
* Return a HTML status box
*
* @return string
*/
public function getStatusHTMLAttribute(): string
{
$class = NULL;
if ($this->isPending())
$class = 'badge-warning';
else
switch ($this->status)
{
case 'ACTIVE':
$class = 'badge-success';
break;
case 'INACTIVE':
$class = 'badge-danger';
break;
}
return $class
? sprintf('<span class="badge %s">%s</span>',$class,$this->status)
: $this->status;
2019-06-29 00:14:12 +00:00
}
/**
* URL used by an admin to administer the record
*
* @return string
*/
public function getUrlAdminAttribute(): string
{
return sprintf('<a href="/a/service/%s">%s</a>',$this->id,$this->service_id);
}
/**
* URL used by an user to see the record
*
* @return string
*/
public function getUrlUserAttribute(): string
{
return sprintf('<a href="/u/service/%s">%s</a>',$this->id,$this->service_id);
}
/** SETTERS **/
2018-08-11 05:09:41 +00:00
public function setDateOrigAttribute($value)
{
$this->attributes['date_orig'] = $value->timestamp;
}
public function setDateLastAttribute($value)
{
$this->attributes['date_last'] = $value->timestamp;
}
/** FUNCTIONS **/
2019-06-29 00:14:12 +00:00
/**
* Add applicable tax to the cost
*
* @todo This needs to be calculated, not fixed at 1.1
* @param float $value
* @return float
*/
private function addTax(float $value): float
2019-06-29 00:14:12 +00:00
{
return round($value*1.1,2);
}
public function invoices_due(): DatabaseCollection
2019-06-29 00:14:12 +00:00
{
2019-07-02 05:28:27 +00:00
$this->load('invoice_items.invoice');
2019-06-29 00:14:12 +00:00
return $this->invoice_items->filter(function($item) {
return $item->invoice->due > 0;
});
}
/**
* Determine if a service is active. It is active, if active=1, or the order_status is not in inactive_status[]
*
* @return bool
* @todo Remove active and have order_status reflect whether active or not
*/
public function isActive(): bool
2018-08-11 05:09:41 +00:00
{
return $this->active OR ($this->order_status AND ! in_array($this->order_status,$this->inactive_status));
}
/**
* Should this service be invoiced soon
*
* @todo get the number of days from account setup
* @return bool
*/
public function isInvoiceDueSoon($days=30): bool
2019-07-02 05:28:27 +00:00
{
return (! $this->external_billing) AND (! $this->suspend_billing) AND $this->getInvoiceNextAttribute()->lessThan(now()->addDays($days));
}
2019-07-02 05:28:27 +00:00
2020-02-05 04:47:24 +00:00
/**
* Identify if a service is being ordered
*
* @return bool
*/
public function isPending(): bool
{
return ! $this->active
AND ! is_null($this->order_status)
AND ! in_array($this->order_status,array_merge($this->inactive_status,['INACTIVE']));
2020-02-05 04:47:24 +00:00
}
/**
* Generate a collection of invoice_item objects that will be billed for the next invoice
*
* @return Collection
* @throws Exception
*/
public function next_invoice_items(): Collection
{
$result = collect();
2019-07-02 05:28:27 +00:00
$o = new InvoiceItem;
// If the service is active, there will be service charges
if ($this->active or $this->isPending()) {
$o->active = TRUE;
$o->service_id = $this->id;
$o->product_id = $this->product_id;
$o->item_type = 0;
$o->price_base = $this->price ?: $this->product->price($this->recur_schedule); // @todo change to a method in this class
$o->recurring_schedule = $this->recur_schedule;
$o->date_start = $this->invoice_next;
$o->date_stop = $this->invoice_next_end;
$o->quantity = $this->invoice_next_quantity;
2020-02-08 11:51:50 +00:00
$o->addTaxes($this->account->country->taxes);
$result->push($o);
}
// If pending, add any connection charges
if ($this->isPending()) {
$o = new InvoiceItem;
$o->active = TRUE;
$o->service_id = $this->id;
$o->product_id = $this->product_id;
$o->item_type = 4;
$o->price_base = $this->price ?: $this->product->price($this->recur_schedule,'price_setup'); // @todo change to a method in this class
//$o->recurring_schedule = $this->recur_schedule;
$o->date_start = $this->invoice_next;
$o->date_stop = $this->invoice_next;
$o->quantity = 1;
2020-02-08 11:51:50 +00:00
$o->addTaxes($this->account->country->taxes);
$result->push($o);
}
// Add additional charges
foreach ($this->charges->filter(function($item) { return ! $item->processed; }) as $oo) {
$o = new InvoiceItem;
$o->active = TRUE;
$o->service_id = $oo->service_id;
$o->product_id = $this->product_id;
$o->quantity = $oo->quantity;
$o->item_type = $oo->type;
$o->price_base = $oo->amount;
$o->date_start = $oo->date_charge;
$o->date_stop = $oo->date_charge;
$o->module_id = 30; // @todo This shouldnt be hard coded
$o->module_ref = $oo->id;
2020-02-08 11:51:50 +00:00
$o->addTaxes($this->account->country->taxes);
$result->push($o);
2019-07-02 05:28:27 +00:00
}
return $result;
}
/**
* @todo
* @param string $status
* @return $this
*/
2019-01-24 06:16:51 +00:00
public function nextStatus(string $status) {
if ($x=$this->validStatus($status))
2018-08-23 05:17:26 +00:00
{
2019-01-24 06:16:51 +00:00
$this->order_status = $x;
$this->save();
2018-08-23 05:17:26 +00:00
2019-01-24 06:16:51 +00:00
return $this;
2018-08-23 05:17:26 +00:00
}
2019-01-24 06:16:51 +00:00
abort(500,'Next Status not set up for:'.$this->order_status);
2018-08-23 05:17:26 +00:00
}
2018-08-11 05:09:41 +00:00
/**
* This function will return the associated service model for the product type
* @deprecated use $this->type
2018-08-11 05:09:41 +00:00
*/
private function ServicePlugin()
{
2018-11-21 02:46:16 +00:00
// @todo: All services should be linked to a product. This might require data cleaning for old services not linked to a product.
if (! is_object($this->product))
return NULL;
2018-08-11 05:09:41 +00:00
switch ($this->product->prod_plugin_file)
{
case 'ADSL': return $this->service_adsl;
case 'DOMAIN': return $this->service_domain;
case 'HOST': return $this->service_host;
case 'SSL': return $this->service_ssl;
case 'VOIP': return $this->service_voip;
default: return NULL;
}
}
2019-01-24 03:40:33 +00:00
/**
* Return if the proposed status is valid.
*
* @param string $status
* @return string | NULL
*/
private function testNextStatusValid(string $status)
{
return Arr::get(Arr::get($this->valid_status,$this->order_status,[]),$status,NULL);
}
/**
* @deprecated use testNextStatusValid()
*/
2019-01-24 03:40:33 +00:00
public function validStatus(string $status)
{
return $this->testNextStatusValid($status);
2019-01-24 03:40:33 +00:00
}
2018-05-20 12:53:14 +00:00
}