- process_steps 테이블 마이그레이션 생성 (step_code, sort_order, boolean 플래그 등)
- ProcessStep 모델 생성 (child entity 패턴, HasFactory만 사용)
- ProcessStepService: CRUD + reorder + STP-001 자동채번
- ProcessStepController: DI + ApiResponse::handle 패턴
- FormRequest 3개: Store, Update, Reorder
- Process 모델에 steps() HasMany 관계 추가
- ProcessService eager-load에 steps 추가 (5곳)
- Nested routes: /processes/{processId}/steps
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
88 lines
2.0 KiB
PHP
88 lines
2.0 KiB
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
use App\Traits\Auditable;
|
|
use App\Traits\BelongsToTenant;
|
|
use App\Traits\ModelTrait;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class Process extends Model
|
|
{
|
|
use Auditable, BelongsToTenant;
|
|
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',
|
|
];
|
|
|
|
/**
|
|
* 공정 자동 분류 규칙 (패턴 규칙)
|
|
*/
|
|
public function classificationRules(): HasMany
|
|
{
|
|
return $this->hasMany(ProcessClassificationRule::class)->orderBy('priority');
|
|
}
|
|
|
|
/**
|
|
* 공정-품목 연결 (중간 테이블)
|
|
*/
|
|
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');
|
|
}
|
|
|
|
/**
|
|
* 공정 단계
|
|
*/
|
|
public function steps(): HasMany
|
|
{
|
|
return $this->hasMany(ProcessStep::class)->orderBy('sort_order');
|
|
}
|
|
|
|
/**
|
|
* 작업지시들
|
|
*/
|
|
public function workOrders(): HasMany
|
|
{
|
|
return $this->hasMany(Production\WorkOrder::class);
|
|
}
|
|
}
|