2018-05-20 12:53:14 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
2021-06-29 06:36:34 +00:00
|
|
|
use App\Interfaces\IDs;
|
2021-07-23 07:25:26 +00:00
|
|
|
use Illuminate\Support\Facades\DB;
|
|
|
|
use Leenooks\Traits\ScopeActive;
|
2021-06-29 06:36:34 +00:00
|
|
|
use App\Traits\{NextKey,PushNew};
|
2019-06-07 06:54:27 +00:00
|
|
|
|
2021-06-29 06:36:34 +00:00
|
|
|
/**
|
|
|
|
* Class Payment
|
|
|
|
* Payments that belong to an account
|
|
|
|
*
|
|
|
|
* Attributes for payments:
|
|
|
|
* + lid : Local ID for payment
|
|
|
|
* + payment_date : Date payment received
|
|
|
|
* + sid : System ID for payment
|
|
|
|
* + total : Payment total
|
2021-07-23 07:25:26 +00:00
|
|
|
* + balance : Remaining credit on payment
|
2021-06-29 06:36:34 +00:00
|
|
|
*
|
|
|
|
* @package App\Models
|
|
|
|
*/
|
|
|
|
class Payment extends Model implements IDs
|
2018-05-20 12:53:14 +00:00
|
|
|
{
|
2021-07-23 07:25:26 +00:00
|
|
|
use PushNew;
|
2019-06-07 06:54:27 +00:00
|
|
|
|
|
|
|
const CREATED_AT = 'date_orig';
|
|
|
|
const UPDATED_AT = 'date_last';
|
|
|
|
|
2021-07-23 07:25:26 +00:00
|
|
|
protected $dates = ['payment_date'];
|
2019-06-07 06:54:27 +00:00
|
|
|
protected $dateFormat = 'U';
|
2018-05-20 12:53:14 +00:00
|
|
|
|
2020-07-27 04:49:59 +00:00
|
|
|
// Array of items that can be updated with PushNew
|
|
|
|
protected $pushable = ['items'];
|
|
|
|
|
2021-07-23 07:25:26 +00:00
|
|
|
// Any balance below this we'll assume its all used.
|
|
|
|
private const threshold = 0.05;
|
|
|
|
|
2021-06-29 06:36:34 +00:00
|
|
|
/* RELATIONS */
|
|
|
|
|
2018-06-19 12:31:49 +00:00
|
|
|
public function account()
|
|
|
|
{
|
2018-07-13 04:53:44 +00:00
|
|
|
return $this->belongsTo(Account::class);
|
2018-06-19 12:31:49 +00:00
|
|
|
}
|
|
|
|
|
2021-07-23 07:25:26 +00:00
|
|
|
public function checkout()
|
|
|
|
{
|
|
|
|
return $this->belongsTo(Checkout::class);
|
|
|
|
}
|
|
|
|
|
2018-06-19 12:31:49 +00:00
|
|
|
public function items()
|
|
|
|
{
|
|
|
|
return $this->hasMany(PaymentItem::class);
|
|
|
|
}
|
|
|
|
|
2021-07-23 07:25:26 +00:00
|
|
|
/* SCOPES */
|
2021-06-29 06:36:34 +00:00
|
|
|
|
|
|
|
/**
|
2021-07-23 07:25:26 +00:00
|
|
|
* Search for a record
|
|
|
|
*
|
|
|
|
* @param $query
|
|
|
|
* @param string $term
|
2021-06-29 06:36:34 +00:00
|
|
|
* @return mixed
|
|
|
|
*/
|
2021-07-23 07:25:26 +00:00
|
|
|
public function scopeSearch($query,string $term)
|
|
|
|
{
|
|
|
|
// Build our where clause
|
|
|
|
$query->where('id','like','%'.$term.'%');
|
|
|
|
|
|
|
|
return $query;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function scopeUnapplied($query)
|
|
|
|
{
|
|
|
|
return $query
|
|
|
|
->select([DB::raw('payment_id AS id'),'payment_date','account_id','checkout_id','total_amt',DB::raw("SUM(alloc_amt) as allocated")])
|
|
|
|
->join('payment_items',['payment_items.payment_id'=>'payments.id'])
|
|
|
|
->groupBy(['payment_id','payment_date','total_amt','account_id','checkout_id'])
|
|
|
|
->having(DB::raw("ROUND(total_amt-allocated,2)"),'>',self::threshold);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ATTRIBUTES */
|
|
|
|
|
|
|
|
public function getBalanceAttribute(): float
|
2018-05-20 12:53:14 +00:00
|
|
|
{
|
2021-07-23 07:25:26 +00:00
|
|
|
$balance = $this->getTotalAttribute()-$this->items->sum('alloc_amt');
|
|
|
|
|
|
|
|
return ($balance < self::threshold) ? 0 : $balance;
|
2018-05-20 12:53:14 +00:00
|
|
|
}
|
2018-06-19 12:31:49 +00:00
|
|
|
|
2021-06-29 06:36:34 +00:00
|
|
|
/**
|
|
|
|
* Payment Local ID
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getLIDattribute(): string
|
|
|
|
{
|
|
|
|
return sprintf('%06s',$this->id);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Payment System ID
|
|
|
|
*
|
|
|
|
* @return string
|
|
|
|
*/
|
|
|
|
public function getSIDAttribute(): string
|
|
|
|
{
|
|
|
|
return sprintf('%02s-%04s#%s',$this->site_id,$this->account_id,$this->getLIDattribute());
|
|
|
|
}
|
|
|
|
|
2021-07-23 07:25:26 +00:00
|
|
|
public function getTotalAttribute(): float
|
2018-06-19 12:31:49 +00:00
|
|
|
{
|
2021-07-23 07:25:26 +00:00
|
|
|
return sprintf('%3.2f',$this->total_amt);
|
2018-06-19 12:31:49 +00:00
|
|
|
}
|
2018-05-20 12:53:14 +00:00
|
|
|
}
|