osb/app/Models/Invoice.php

163 lines
3.2 KiB
PHP
Raw Normal View History

2018-05-20 12:53:14 +00:00
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class Invoice extends Model
{
protected $table = 'ab_invoice';
2018-08-01 07:09:38 +00:00
protected $dates = ['date_orig','due_date'];
2019-07-02 05:28:27 +00:00
protected $with = ['account.country.currency','items','paymentitems'];
protected $appends = [
'date_due',
'due',
'invoice_id_url',
'total',
];
protected $visible = [
'date_due',
'due',
'id',
'invoice_id_url',
'total',
];
2018-05-20 12:53:14 +00:00
private $_total = 0;
2018-08-01 07:09:38 +00:00
private $_total_tax = 0;
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
}
public function items()
2018-05-20 12:53:14 +00:00
{
return $this->hasMany(InvoiceItem::class);
}
public function paymentitems()
{
return $this->hasMany(PaymentItem::class);
}
public function getDueAttribute()
{
return sprintf('%3.'.$this->currency()->rounding.'f',$this->total - $this->paid);
2018-05-20 12:53:14 +00:00
}
public function getDateDueAttribute()
{
return $this->due_date->format('Y-m-d');
}
2018-08-01 07:09:38 +00:00
public function getInvoiceDateAttribute()
{
return $this->date_orig->format('Y-m-d');
}
public function getInvoiceIdAttribute()
2018-05-20 12:53:14 +00:00
{
2018-08-01 07:09:38 +00:00
return sprintf('%06s',$this->id);
}
public function getInvoiceAccountIdAttribute()
{
return sprintf('%02s-%04s-%06s',$this->site_id,$this->account_id,$this->invoice_id);
2018-05-20 12:53:14 +00:00
}
public function getInvoiceIdUrlAttribute()
{
2018-08-01 07:09:38 +00:00
return sprintf('<a href="/u/invoice/%s">%s</a>',$this->id,$this->invoice_account_id);
}
public function getInvoiceTextAttribute()
{
return sprintf('Thank you for using %s for your Internet Services.',config('SITE_SETUP')->site_name);
}
2018-05-20 12:53:14 +00:00
public function getPaidAttribute()
{
return $this->currency()->round($this->paymentitems->sum('alloc_amt'));
}
2018-08-01 07:09:38 +00:00
public function getSubTotalAttribute()
{
return sprintf('%3.'.$this->currency()->rounding.'f',$this->total-$this->tax_total);
}
public function getTaxTotalAttribute()
{
if (! $this->_total_tax)
{
foreach ($this->items as $o)
{
if ($o->active)
$this->_total_tax += $this->currency()->round($o->tax);
}
}
return sprintf('%3.'.$this->currency()->rounding.'f',$this->_total_tax);
}
2018-05-20 12:53:14 +00:00
public function getTotalAttribute()
{
if (! $this->_total)
{
foreach ($this->items as $o)
2018-05-20 12:53:14 +00:00
{
if ($o->active)
2018-05-20 12:53:14 +00:00
$this->_total += $this->currency()->round($o->total);
}
}
return sprintf('%3.'.$this->currency()->rounding.'f',$this->_total);
2018-05-20 12:53:14 +00:00
}
public function currency()
{
return $this->account->country->currency;
}
2018-08-01 07:09:38 +00:00
public function products()
{
$return = collect();
foreach ($this->items->groupBy('product_id') as $o)
{
$po = $o->first()->product;
$po->count = count($o->pluck('service_id')->unique());
$return->push($po);
}
$lo = $this->account->user->language;
return $return->sortBy(function ($item) use ($lo) {
return $item->name($lo);
});
}
public function product_services(Product $po)
{
$return = collect();
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');
}
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');
}
2018-05-20 12:53:14 +00:00
}