You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
topnotch_website/app/Models/Order.php

113 lines
2.4 KiB
PHP

<?php
namespace App\Models;
use App\Enums\OrderStatus;
use DateTimeInterface;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
use Illuminate\Database\Eloquent\Relations\HasMany;
use Illuminate\Database\Eloquent\SoftDeletes;
class Order extends Model
{
use HasFactory, SoftDeletes;
protected $fillable = [
'customer_id',
'contact_id',
'internal_po',
'customer_po',
'order_date',
'order_type',
'status',
'due_date',
'rush',
'new_art',
'digitizing',
'repeat',
'purchased_garments',
'customer_supplied_file',
'notes',
];
protected $appends = [
'active',
];
public static function boot()
{
parent::boot();
static::created(function ($model) {
$model->attributes['internal_po'] = $model->generateInternalPo($model->id);
$model->save();
});
}
public function generateInternalPo($id): string
{
$po = str_pad($id, 4, '0', STR_PAD_LEFT);
$year = date('y');
return 'TN'.$year.'-'.$po;
}
public function active(): bool
{
if ($this->status == OrderStatus::APPROVED
|| $this->status == OrderStatus::PRODUCTION) {
return true;
}
return false;
}
public function scopeActive($query)
{
return $query->where('status', 'approved')
->orWhere('status', 'production');
}
public function scopeFinished($query)
{
return $query->where('status', 'shipped')
->orWhere('status', 'completed');
}
public function scopeInvoiced($query)
{
return $query->where('status', 'invoiced');
}
public function scopeRush($query)
{
return $query->where('rush', true);
}
public function customer(): BelongsTo
{
return $this->belongsTo(Customer::class);
}
public function orderProducts(): HasMany
{
return $this->hasMany(OrderProduct::class);
}
public function productServices(): HasMany
{
return $this->hasMany(ProductService::class);
}
protected function serializeDate(DateTimeInterface $date): string
{
return $date->format('Y-m-d');
}
protected $casts = [
'status' => OrderStatus::class,
];
}