2018-05-20 12:53:14 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
2020-04-01 12:35:06 +00:00
|
|
|
use Carbon\Carbon;
|
2020-05-25 07:45:17 +00:00
|
|
|
use Clarkeash\Doorman\Facades\Doorman;
|
|
|
|
use Clarkeash\Doorman\Models\Invite;
|
2018-05-20 12:53:14 +00:00
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2020-05-25 07:45:17 +00:00
|
|
|
use Illuminate\Support\Arr;
|
2021-06-29 06:36:34 +00:00
|
|
|
use Leenooks\Traits\ScopeActive;
|
|
|
|
|
|
|
|
use App\Interfaces\IDs;
|
2024-07-05 02:04:08 +00:00
|
|
|
use App\Traits\PushNew;
|
2020-04-01 12:35:06 +00:00
|
|
|
|
2021-06-29 06:36:34 +00:00
|
|
|
/**
|
|
|
|
* Class Invoice
|
|
|
|
* Invoices that belong to an Account
|
|
|
|
*
|
|
|
|
* Attributes for services:
|
|
|
|
* + due : Balance due on an invoice
|
|
|
|
* + due_date : Date the invoice is due
|
|
|
|
* + invoice_date : Date the invoice was created
|
|
|
|
* + lid : Local ID for invoice
|
|
|
|
* + paid : Total of payments received (excluding pending)
|
|
|
|
* + paid_date : Date the invoice was paid in full
|
|
|
|
* + paid_pending : Total of pending payments received
|
|
|
|
* + sid : System ID for invoice
|
2022-04-22 04:41:18 +00:00
|
|
|
* + sub_total : Invoice sub-total before taxes
|
2021-06-29 06:36:34 +00:00
|
|
|
* + total_tax : Invoices total of taxes
|
|
|
|
* + total : Invoice total
|
|
|
|
*
|
|
|
|
* @package App\Models
|
|
|
|
*/
|
|
|
|
class Invoice extends Model implements IDs
|
2018-05-20 12:53:14 +00:00
|
|
|
{
|
2024-07-05 02:04:08 +00:00
|
|
|
use PushNew,ScopeActive;
|
2021-06-29 06:36:34 +00:00
|
|
|
|
2022-06-13 09:58:53 +00:00
|
|
|
protected $casts = [
|
2024-07-05 06:38:31 +00:00
|
|
|
'created_at' => 'datetime:Y-m-d',
|
|
|
|
'due_at' => 'datetime:Y-m-d',
|
2022-06-13 09:58:53 +00:00
|
|
|
'reminders'=>'json',
|
2024-07-05 06:38:31 +00:00
|
|
|
'_paid_at' => 'datetime:Y-m-d',
|
2022-04-22 04:41:18 +00:00
|
|
|
];
|
2018-06-19 12:31:49 +00:00
|
|
|
|
2022-04-22 00:36:41 +00:00
|
|
|
public const BILL_WEEKLY = 0;
|
|
|
|
public const BILL_MONTHLY = 1;
|
|
|
|
public const BILL_QUARTERLY = 2;
|
|
|
|
public const BILL_SEMI_YEARLY = 3;
|
|
|
|
public const BILL_YEARLY = 4;
|
|
|
|
public const BILL_TWOYEARS = 5;
|
|
|
|
public const BILL_THREEYEARS = 6;
|
|
|
|
public const BILL_FOURYEARS = 7;
|
|
|
|
public const BILL_FIVEYEARS = 8;
|
|
|
|
|
2021-12-24 01:14:01 +00:00
|
|
|
/* Our available billing periods */
|
|
|
|
public const billing_periods = [
|
2022-04-22 04:41:18 +00:00
|
|
|
self::BILL_WEEKLY => [
|
|
|
|
'name' => 'Weekly',
|
|
|
|
'interval' => 0.25,
|
|
|
|
],
|
|
|
|
self::BILL_MONTHLY => [
|
|
|
|
'name' => 'Monthly',
|
|
|
|
'interval' => 1,
|
|
|
|
],
|
|
|
|
self::BILL_QUARTERLY => [
|
|
|
|
'name' => 'Quarterly',
|
|
|
|
'interval' => 3,
|
|
|
|
],
|
|
|
|
self::BILL_SEMI_YEARLY => [
|
|
|
|
'name' => 'Semi-Annually',
|
|
|
|
'interval' => 6,
|
|
|
|
],
|
|
|
|
self::BILL_YEARLY => [
|
|
|
|
'name' => 'Annually',
|
|
|
|
'interval' => 12,
|
|
|
|
],
|
|
|
|
self::BILL_TWOYEARS => [
|
|
|
|
'name' => 'Two years',
|
|
|
|
'interval' => 24,
|
|
|
|
],
|
|
|
|
self::BILL_THREEYEARS => [
|
|
|
|
'name' => 'Three Years',
|
|
|
|
'interval' => 36,
|
|
|
|
],
|
|
|
|
self::BILL_FOURYEARS => [
|
|
|
|
'name' => 'Four Years',
|
|
|
|
'interval' => 48,
|
|
|
|
],
|
|
|
|
SELF::BILL_FIVEYEARS => [
|
|
|
|
'name' => 'Five Years',
|
|
|
|
'interval' => 60,
|
|
|
|
],
|
|
|
|
];
|
2021-12-24 01:14:01 +00:00
|
|
|
|
2020-07-06 06:02:59 +00:00
|
|
|
// Array of items that can be updated with PushNew
|
|
|
|
protected $pushable = ['items'];
|
|
|
|
|
2021-07-02 04:35:43 +00:00
|
|
|
/*
|
2020-02-10 11:07:46 +00:00
|
|
|
protected $with = [
|
|
|
|
'account.country.currency',
|
|
|
|
'items.taxes',
|
|
|
|
'paymentitems'
|
|
|
|
];
|
2021-07-02 04:35:43 +00:00
|
|
|
*/
|
2020-02-10 11:07:46 +00:00
|
|
|
|
2022-07-29 06:06:19 +00:00
|
|
|
/* STATIC METHODS */
|
2021-12-24 01:14:01 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* This works out what multiplier to use to change billing periods
|
|
|
|
*
|
|
|
|
* @param int $source
|
|
|
|
* @param int $target
|
|
|
|
* @return float
|
|
|
|
*/
|
|
|
|
public static function billing_change(int $source,int $target): float
|
|
|
|
{
|
|
|
|
return Arr::get(self::billing_periods,$target.'.interval')/Arr::get(self::billing_periods,$source.'.interval');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the name for the billing interval
|
|
|
|
*
|
|
|
|
* @param int $interval
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public static function billing_name(int $interval): string
|
|
|
|
{
|
|
|
|
$interval = collect(self::billing_periods)->get($interval);
|
|
|
|
|
|
|
|
return Arr::get($interval,'name','Unknown');
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Return the number of months in the billing interval
|
|
|
|
*
|
|
|
|
* @param int $interval
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public static function billing_period(int $interval): int
|
|
|
|
{
|
|
|
|
$interval = collect(self::billing_periods)->get($interval);
|
|
|
|
|
|
|
|
return Arr::get($interval,'interval',0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Given a contract in months, this will calculate the number of billing intervals required
|
|
|
|
*
|
|
|
|
* @param int $contract_term
|
|
|
|
* @param int $source
|
|
|
|
* @return int
|
|
|
|
*/
|
|
|
|
public static function billing_term(int $contract_term,int $source): int
|
|
|
|
{
|
|
|
|
return ceil(($contract_term ?: 1)/(Arr::get(self::billing_periods,$source.'.interval') ?: 1));
|
|
|
|
}
|
|
|
|
|
2022-04-22 04:41:18 +00:00
|
|
|
/* INTERFACES */
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invoice Local ID
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getLIDAttribute(): string
|
|
|
|
{
|
|
|
|
return sprintf('%06s',$this->id);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invoice System ID
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getSIDAttribute(): string
|
|
|
|
{
|
|
|
|
return sprintf('%02s-%04s-%s',$this->site_id,$this->account_id,$this->getLIDAttribute());
|
|
|
|
}
|
|
|
|
|
2021-06-29 06:36:34 +00:00
|
|
|
/* RELATIONS */
|
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
|
|
|
}
|
|
|
|
|
2018-06-19 12:31:49 +00:00
|
|
|
public function items()
|
2018-05-20 12:53:14 +00:00
|
|
|
{
|
2021-06-29 06:36:34 +00:00
|
|
|
return $this->hasMany(InvoiceItem::class)
|
2022-04-19 07:07:39 +00:00
|
|
|
->where('active',TRUE)
|
|
|
|
->with(['taxes','product']);
|
2021-06-29 06:36:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function payments()
|
|
|
|
{
|
2022-06-13 07:24:43 +00:00
|
|
|
return $this->hasManyThrough(Payment::class,PaymentItem::class,NULL,'id',NULL,'payment_id')
|
|
|
|
->active();
|
2018-05-20 12:53:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function paymentitems()
|
|
|
|
{
|
|
|
|
return $this->hasMany(PaymentItem::class);
|
|
|
|
}
|
|
|
|
|
2023-05-12 10:09:51 +00:00
|
|
|
public function providers()
|
|
|
|
{
|
|
|
|
return $this->belongsToMany(ProviderOauth::class,'invoice__provider')
|
|
|
|
->where('invoice__provider.site_id',$this->site_id)
|
|
|
|
->withPivot('ref','synctoken','created_at','updated_at');
|
|
|
|
}
|
|
|
|
|
2021-06-29 06:36:34 +00:00
|
|
|
/* SCOPES */
|
2020-01-12 12:42:32 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Search for a record
|
|
|
|
*
|
|
|
|
* @param $query
|
|
|
|
* @param string $term
|
2021-06-29 06:36:34 +00:00
|
|
|
* @return mixed
|
2020-01-12 12:42:32 +00:00
|
|
|
*/
|
|
|
|
public function scopeSearch($query,string $term)
|
|
|
|
{
|
|
|
|
return $query->where('id','like','%'.$term.'%');
|
|
|
|
}
|
|
|
|
|
2021-06-29 06:36:34 +00:00
|
|
|
/* ATTRIBUTES */
|
2020-01-12 12:42:32 +00:00
|
|
|
|
2021-06-29 06:36:34 +00:00
|
|
|
/**
|
|
|
|
* Balance due on an invoice
|
2022-04-22 04:41:18 +00:00
|
|
|
* @return float
|
2021-06-29 06:36:34 +00:00
|
|
|
*/
|
|
|
|
public function getDueAttribute(): float
|
2018-05-20 12:53:14 +00:00
|
|
|
{
|
2021-07-23 07:25:26 +00:00
|
|
|
return sprintf('%3.2f',$this->getTotalAttribute()-$this->getPaidAttribute());
|
2018-05-20 12:53:14 +00:00
|
|
|
}
|
|
|
|
|
2021-06-29 06:36:34 +00:00
|
|
|
/**
|
|
|
|
* @return mixed
|
2022-04-22 04:41:18 +00:00
|
|
|
* @todo Change references to due_at to use due_date
|
2021-06-29 06:36:34 +00:00
|
|
|
*/
|
2022-04-22 04:41:18 +00:00
|
|
|
public function getDueDateAttribute(): Carbon
|
2018-05-20 12:53:14 +00:00
|
|
|
{
|
2022-04-22 04:41:18 +00:00
|
|
|
return $this->due_at;
|
2018-05-20 12:53:14 +00:00
|
|
|
}
|
|
|
|
|
2021-06-29 06:36:34 +00:00
|
|
|
/**
|
|
|
|
* Date the invoices was created
|
|
|
|
*
|
|
|
|
* @return Carbon
|
|
|
|
*/
|
|
|
|
public function getInvoiceDateAttribute(): Carbon
|
2018-08-01 07:09:38 +00:00
|
|
|
{
|
2022-04-22 04:41:18 +00:00
|
|
|
return $this->created_at;
|
2018-05-20 12:53:14 +00:00
|
|
|
}
|
|
|
|
|
2021-06-29 06:36:34 +00:00
|
|
|
// @todo Move this to a site configuration
|
2018-08-01 07:09:38 +00:00
|
|
|
public function getInvoiceTextAttribute()
|
|
|
|
{
|
2021-12-17 05:09:03 +00:00
|
|
|
return sprintf('Thank you for using %s for your Internet Services.',config('site')->site_name);
|
2018-06-19 12:31:49 +00:00
|
|
|
}
|
|
|
|
|
2021-06-29 06:36:34 +00:00
|
|
|
/**
|
|
|
|
* Total of payments received for this invoice
|
|
|
|
* excluding pending payments
|
|
|
|
*
|
|
|
|
* @return float
|
|
|
|
*/
|
|
|
|
public function getPaidAttribute(): float
|
|
|
|
{
|
2021-07-23 07:25:26 +00:00
|
|
|
return $this->paymentitems
|
2022-06-13 07:24:43 +00:00
|
|
|
->filter(function($item) { return ! $item->payment->pending_status && $item->payment->active; })
|
2022-04-22 05:23:08 +00:00
|
|
|
->sum('amount');
|
2021-06-29 06:36:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the date that the invoice was paid in full.
|
2021-07-23 07:25:26 +00:00
|
|
|
* We assume the last payment received pays it in full, if its fully paid.
|
2021-06-29 06:36:34 +00:00
|
|
|
*
|
|
|
|
* @return Carbon|null
|
|
|
|
*/
|
|
|
|
public function getPaidDateAttribute(): ?Carbon
|
|
|
|
{
|
2021-07-23 07:25:26 +00:00
|
|
|
if ($this->getDueAttribute())
|
|
|
|
return NULL;
|
|
|
|
|
2021-06-29 06:36:34 +00:00
|
|
|
$o = $this->payments
|
|
|
|
->filter(function($item) { return ! $item->pending_status; })
|
|
|
|
->last();
|
|
|
|
|
2022-06-13 05:46:38 +00:00
|
|
|
return $o?->paid_at;
|
2021-06-29 06:36:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Total of pending payments received for this invoice
|
|
|
|
*
|
|
|
|
* @return mixed
|
|
|
|
*/
|
|
|
|
public function getPaidPendingAttribute(): float
|
2020-07-27 04:49:59 +00:00
|
|
|
{
|
2021-07-23 07:25:26 +00:00
|
|
|
return $this->paymentitems
|
|
|
|
->filter(function($item) { return $item->payment->pending_status; })
|
2022-04-22 05:23:08 +00:00
|
|
|
->sum('amount');
|
2018-05-20 12:53:14 +00:00
|
|
|
}
|
|
|
|
|
2021-06-29 06:36:34 +00:00
|
|
|
/**
|
|
|
|
* Get invoice subtotal before taxes
|
|
|
|
*
|
|
|
|
* @return float
|
|
|
|
*/
|
|
|
|
public function getSubTotalAttribute(): float
|
2018-08-01 07:09:38 +00:00
|
|
|
{
|
2021-07-23 07:25:26 +00:00
|
|
|
return $this->items->where('active',TRUE)->sum('sub_total');
|
2018-08-01 07:09:38 +00:00
|
|
|
}
|
|
|
|
|
2021-06-29 06:36:34 +00:00
|
|
|
/**
|
|
|
|
* Get the invoices taxes total
|
|
|
|
*
|
|
|
|
* @return float
|
|
|
|
* @deprecated use getTotalTaxAttribute();
|
|
|
|
*/
|
|
|
|
public function getTaxTotalAttribute(): float
|
|
|
|
{
|
|
|
|
return $this->getTotalTaxAttribute();
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the invoices taxes total
|
|
|
|
*
|
|
|
|
* @return float
|
|
|
|
*/
|
|
|
|
public function getTotalTaxAttribute(): float
|
2018-08-01 07:09:38 +00:00
|
|
|
{
|
2021-07-23 07:25:26 +00:00
|
|
|
return $this->items->where('active',TRUE)->sum('tax');
|
2018-08-01 07:09:38 +00:00
|
|
|
}
|
|
|
|
|
2021-06-29 06:36:34 +00:00
|
|
|
/**
|
|
|
|
* Invoice total due
|
|
|
|
*
|
2021-07-23 07:25:26 +00:00
|
|
|
* @return float
|
2021-06-29 06:36:34 +00:00
|
|
|
*/
|
|
|
|
public function getTotalAttribute(): float
|
2018-05-20 12:53:14 +00:00
|
|
|
{
|
2022-04-22 04:41:18 +00:00
|
|
|
return $this->getSubTotalAttribute()+$this->getTotalTaxAttribute();
|
2018-05-20 12:53:14 +00:00
|
|
|
}
|
|
|
|
|
2022-04-22 04:41:18 +00:00
|
|
|
/* METHODS */
|
|
|
|
|
|
|
|
// @todo This shouldnt be here - current should be handled at an account level.
|
2018-05-20 12:53:14 +00:00
|
|
|
public function currency()
|
|
|
|
{
|
|
|
|
return $this->account->country->currency;
|
|
|
|
}
|
2018-08-01 07:09:38 +00:00
|
|
|
|
2020-05-25 07:45:17 +00:00
|
|
|
/**
|
|
|
|
* Return a download link for non-auth downloads
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function download_link(): string
|
|
|
|
{
|
|
|
|
// Re-use an existing code
|
|
|
|
$io = Invite::where('for',$this->account->user->email)->first();
|
|
|
|
|
2022-04-22 04:41:18 +00:00
|
|
|
$tokendate = ($x=Carbon::now()->addDays(21)) > ($y=$this->due_at->addDays(21)) ? $x : $y;
|
2020-05-25 07:45:17 +00:00
|
|
|
|
|
|
|
// Extend the expire date
|
|
|
|
if ($io AND ($tokendate > $io->valid_until)) {
|
|
|
|
$io->valid_until = $tokendate;
|
|
|
|
$io->save();
|
|
|
|
}
|
|
|
|
|
2020-06-02 07:19:24 +00:00
|
|
|
$code = (! $io) ? Doorman::generate()->for($this->account->user->email)->uses(0)->expiresOn($tokendate)->make()->first()->code : $io->code;
|
2020-05-25 07:45:17 +00:00
|
|
|
|
|
|
|
return url('u/invoice',[$this->id,'email',$code]);
|
|
|
|
}
|
|
|
|
|
2022-04-22 04:41:18 +00:00
|
|
|
// @todo document
|
2018-08-01 07:09:38 +00:00
|
|
|
public function products()
|
|
|
|
{
|
|
|
|
$return = collect();
|
|
|
|
|
2022-04-22 04:41:18 +00:00
|
|
|
foreach ($this->items->groupBy('product_id') as $o) {
|
2018-08-01 07:09:38 +00:00
|
|
|
$po = $o->first()->product;
|
|
|
|
$po->count = count($o->pluck('service_id')->unique());
|
|
|
|
|
|
|
|
$return->push($po);
|
|
|
|
}
|
|
|
|
|
2022-04-19 07:07:39 +00:00
|
|
|
return $return->sortBy(function ($item) {
|
2021-12-24 01:14:01 +00:00
|
|
|
return $item->name;
|
2018-08-01 07:09:38 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-04-22 04:41:18 +00:00
|
|
|
// @todo document
|
2018-08-01 07:09:38 +00:00
|
|
|
public function product_services(Product $po)
|
|
|
|
{
|
|
|
|
$return = collect();
|
|
|
|
|
2019-07-04 04:55:05 +00:00
|
|
|
$this->items->load(['service']);
|
|
|
|
|
2018-08-01 07:09:38 +00:00
|
|
|
foreach ($this->items->filter(function ($item) use ($po) {
|
|
|
|
return $item->product_id == $po->id;
|
|
|
|
}) as $o)
|
|
|
|
{
|
|
|
|
$so = $o->service;
|
|
|
|
$return->push($so);
|
|
|
|
};
|
|
|
|
|
|
|
|
return $return->unique()->sortBy('name');
|
|
|
|
}
|
|
|
|
|
2022-04-22 04:41:18 +00:00
|
|
|
// @todo document
|
2018-08-01 07:09:38 +00:00
|
|
|
public function product_service_items(Product $po,Service $so)
|
|
|
|
{
|
|
|
|
return $this->items->filter(function ($item) use ($po,$so) {
|
|
|
|
return $item->product_id == $po->id AND $item->service_id == $so->id;
|
|
|
|
})->filter()->sortBy('item_type');
|
|
|
|
}
|
2020-04-01 12:35:06 +00:00
|
|
|
|
2020-05-25 07:45:17 +00:00
|
|
|
/**
|
|
|
|
* @param string $key
|
2022-06-13 09:58:53 +00:00
|
|
|
* @return array
|
2020-05-25 07:45:17 +00:00
|
|
|
* @todo Ugly hack to update reminders
|
|
|
|
*/
|
2022-06-13 09:58:53 +00:00
|
|
|
public function reminders(string $key): array
|
|
|
|
{
|
|
|
|
$r = $this->reminders;
|
2020-05-25 07:45:17 +00:00
|
|
|
if (! Arr::get($r,$key)) {
|
|
|
|
$r[$key] = time();
|
|
|
|
}
|
2022-06-13 09:58:53 +00:00
|
|
|
|
|
|
|
return $r;
|
2020-05-25 07:45:17 +00:00
|
|
|
}
|
|
|
|
|
2020-04-01 12:35:06 +00:00
|
|
|
/**
|
2022-04-22 04:41:18 +00:00
|
|
|
* Automatically set our due_at at save time.
|
2020-04-01 12:35:06 +00:00
|
|
|
*
|
|
|
|
* @param array $options
|
|
|
|
* @return bool
|
|
|
|
*/
|
2022-06-13 09:58:53 +00:00
|
|
|
public function save(array $options = [])
|
|
|
|
{
|
2020-04-01 12:35:06 +00:00
|
|
|
// Automatically set the date_due attribute for new records.
|
2022-04-22 04:41:18 +00:00
|
|
|
if (! $this->exists AND ! $this->due_at) {
|
|
|
|
$this->due_at = $this->items->min('start_at');
|
2020-04-01 12:35:06 +00:00
|
|
|
|
|
|
|
// @todo This 7 days should be sysetm configurable
|
2022-04-22 04:41:18 +00:00
|
|
|
if (($x=Carbon::now()->addDay(7)) > $this->due_at)
|
|
|
|
$this->due_at = $x;
|
2020-04-01 12:35:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return parent::save($options);
|
|
|
|
}
|
2018-05-20 12:53:14 +00:00
|
|
|
}
|