mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
142 lines
4.2 KiB
PHP
142 lines
4.2 KiB
PHP
<?php
|
|
namespace Laraspace;
|
|
|
|
use Laraspace\User;
|
|
use Laraspace\Invoice;
|
|
use Carbon\Carbon;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
class Payment extends Model
|
|
{
|
|
const PAYMENT_MODE_CHECK = 'CHECK';
|
|
const PAYMENT_MODE_OTHER = 'OTHER';
|
|
const PAYMENT_MODE_CASH = 'CASH';
|
|
const PAYMENT_MODE_CREDIT_CARD = 'CREDIT_CARD';
|
|
const PAYMENT_MODE_BANK_TRANSFER = 'BANK_TRANSFER';
|
|
|
|
protected $dates = ['created_at', 'updated_at', 'payment_date'];
|
|
|
|
protected $fillable = [
|
|
'user_id',
|
|
'invoice_id',
|
|
'payment_date',
|
|
'company_id',
|
|
'notes',
|
|
'payment_number',
|
|
'payment_mode',
|
|
'amount'
|
|
];
|
|
|
|
protected $appends = [
|
|
'formattedCreatedAt',
|
|
'formattedPaymentDate'
|
|
];
|
|
|
|
public static function getNextPaymentNumber()
|
|
{
|
|
// Get the last created order
|
|
$payment = Payment::orderBy('created_at', 'desc')->first();
|
|
if (!$payment) {
|
|
// We get here if there is no order at all
|
|
// If there is no number set it to 0, which will be 1 at the end.
|
|
$number = 0;
|
|
} else {
|
|
$number = explode("-",$payment->payment_number);
|
|
$number = $number[1];
|
|
}
|
|
// If we have ORD000001 in the database then we only want the number
|
|
// So the substr returns this 000001
|
|
|
|
// Add the string in front and higher up the number.
|
|
// the %05d part makes sure that there are always 6 numbers in the string.
|
|
// so it adds the missing zero's when needed.
|
|
|
|
return sprintf('%06d', intval($number) + 1);
|
|
}
|
|
|
|
public function invoice()
|
|
{
|
|
return $this->belongsTo(Invoice::class);
|
|
}
|
|
|
|
public function user()
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
|
|
public function getFormattedCreatedAtAttribute($value)
|
|
{
|
|
$dateFormat = CompanySetting::getSetting('carbon_date_format', $this->company_id);
|
|
return Carbon::parse($this->created_at)->format($dateFormat);
|
|
}
|
|
|
|
public function getFormattedPaymentDateAttribute($value)
|
|
{
|
|
$dateFormat = CompanySetting::getSetting('carbon_date_format', $this->company_id);
|
|
return Carbon::parse($this->payment_date)->format($dateFormat);
|
|
}
|
|
|
|
public function scopeWhereSearch($query, $search)
|
|
{
|
|
foreach (explode(' ', $search) as $term) {
|
|
$query->whereHas('user', function ($query) use ($term) {
|
|
$query->where('name', 'LIKE', '%'.$term.'%')
|
|
->orWhere('contact_name', 'LIKE', '%'.$term.'%')
|
|
->orWhere('company_name', 'LIKE', '%'.$term.'%');
|
|
});
|
|
}
|
|
}
|
|
|
|
public function scopePaymentNumber($query, $paymentNumber)
|
|
{
|
|
return $query->where('payments.payment_number', 'LIKE', '%'.$paymentNumber.'%');
|
|
}
|
|
|
|
public function scopePaymentMode($query, $paymentMode)
|
|
{
|
|
return $query->where('payments.payment_mode', $paymentMode);
|
|
}
|
|
|
|
public function scopeApplyFilters($query, array $filters)
|
|
{
|
|
$filters = collect($filters);
|
|
|
|
if ($filters->get('search')) {
|
|
$query->whereSearch($filters->get('search'));
|
|
}
|
|
|
|
if ($filters->get('payment_number')) {
|
|
$query->paymentNumber($filters->get('payment_number'));
|
|
}
|
|
|
|
if ($filters->get('payment_mode')) {
|
|
$query->paymentMode($filters->get('payment_mode'));
|
|
}
|
|
|
|
if ($filters->get('customer_id')) {
|
|
$query->whereCustomer($filters->get('customer_id'));
|
|
}
|
|
|
|
if ($filters->get('orderByField') || $filters->get('orderBy')) {
|
|
$field = $filters->get('orderByField') ? $filters->get('orderByField') : 'payment_number';
|
|
$orderBy = $filters->get('orderBy') ? $filters->get('orderBy') : 'asc';
|
|
$query->whereOrder($field, $orderBy);
|
|
}
|
|
}
|
|
|
|
public function scopeWhereOrder($query, $orderByField, $orderBy)
|
|
{
|
|
$query->orderBy($orderByField, $orderBy);
|
|
}
|
|
|
|
public function scopeWhereCompany($query, $company_id)
|
|
{
|
|
$query->where('payments.company_id', $company_id);
|
|
}
|
|
|
|
public function scopeWhereCustomer($query, $customer_id)
|
|
{
|
|
$query->where('payments.user_id', $customer_id);
|
|
}
|
|
}
|