2025-12-26 18:56:24 +09:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Models;
|
|
|
|
|
|
2026-01-29 15:33:54 +09:00
|
|
|
use App\Traits\Auditable;
|
2025-12-29 15:31:00 +09:00
|
|
|
use App\Traits\BelongsToTenant;
|
|
|
|
|
use App\Traits\ModelTrait;
|
2025-12-26 18:56:24 +09:00
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2026-01-08 20:23:52 +09:00
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
2025-12-26 18:56:24 +09:00
|
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
|
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
|
|
|
|
|
|
class Process extends Model
|
|
|
|
|
{
|
2026-01-29 15:33:54 +09:00
|
|
|
use Auditable, BelongsToTenant;
|
2025-12-26 18:56:24 +09:00
|
|
|
use HasFactory;
|
|
|
|
|
use ModelTrait;
|
|
|
|
|
use SoftDeletes;
|
|
|
|
|
|
|
|
|
|
protected $fillable = [
|
|
|
|
|
'tenant_id',
|
|
|
|
|
'process_code',
|
|
|
|
|
'process_name',
|
|
|
|
|
'description',
|
|
|
|
|
'process_type',
|
|
|
|
|
'department',
|
|
|
|
|
'work_log_template',
|
|
|
|
|
'required_workers',
|
|
|
|
|
'equipment_info',
|
|
|
|
|
'work_steps',
|
|
|
|
|
'note',
|
|
|
|
|
'is_active',
|
|
|
|
|
'created_by',
|
|
|
|
|
'updated_by',
|
|
|
|
|
'deleted_by',
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
protected $casts = [
|
|
|
|
|
'work_steps' => 'array',
|
|
|
|
|
'is_active' => 'boolean',
|
|
|
|
|
'required_workers' => 'integer',
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
/**
|
2026-01-08 20:23:52 +09:00
|
|
|
* 공정 자동 분류 규칙 (패턴 규칙)
|
2025-12-26 18:56:24 +09:00
|
|
|
*/
|
|
|
|
|
public function classificationRules(): HasMany
|
|
|
|
|
{
|
|
|
|
|
return $this->hasMany(ProcessClassificationRule::class)->orderBy('priority');
|
|
|
|
|
}
|
2026-01-08 20:23:52 +09:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 공정-품목 연결 (중간 테이블)
|
|
|
|
|
*/
|
|
|
|
|
public function processItems(): HasMany
|
|
|
|
|
{
|
|
|
|
|
return $this->hasMany(ProcessItem::class)->orderBy('priority');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 연결된 품목 (다대다)
|
|
|
|
|
*/
|
|
|
|
|
public function items(): BelongsToMany
|
|
|
|
|
{
|
|
|
|
|
return $this->belongsToMany(Items\Item::class, 'process_items')
|
|
|
|
|
->withPivot(['priority', 'is_active'])
|
|
|
|
|
->withTimestamps()
|
|
|
|
|
->orderByPivot('priority');
|
|
|
|
|
}
|
2026-01-13 19:48:48 +09:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* 작업지시들
|
|
|
|
|
*/
|
|
|
|
|
public function workOrders(): HasMany
|
|
|
|
|
{
|
|
|
|
|
return $this->hasMany(Production\WorkOrder::class);
|
|
|
|
|
}
|
2025-12-26 18:56:24 +09:00
|
|
|
}
|