- GCS 스텁 코드를 Cloudflare R2 기반 실제 파일 업로드로 교체 - File 모델 import를 Boards\File에서 Commons\File로 수정 - StoreEquipmentPhotoRequest FormRequest 추가 (파일 검증) - 다중 파일 업로드 지원 (최대 10장 제한) - softDeleteFile 패턴 적용 (삭제 시 soft delete) - ItemsFileController 패턴 준용 (R2 저장, 랜덤 파일명)
155 lines
3.8 KiB
PHP
155 lines
3.8 KiB
PHP
<?php
|
|
|
|
namespace App\Models\Equipment;
|
|
|
|
use App\Models\Commons\File;
|
|
use App\Traits\Auditable;
|
|
use App\Traits\BelongsToTenant;
|
|
use App\Traits\ModelTrait;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsToMany;
|
|
use Illuminate\Database\Eloquent\Relations\HasMany;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class Equipment extends Model
|
|
{
|
|
use Auditable, BelongsToTenant, ModelTrait, SoftDeletes;
|
|
|
|
protected $table = 'equipments';
|
|
|
|
protected $fillable = [
|
|
'tenant_id',
|
|
'equipment_code',
|
|
'name',
|
|
'equipment_type',
|
|
'specification',
|
|
'manufacturer',
|
|
'model_name',
|
|
'serial_no',
|
|
'location',
|
|
'production_line',
|
|
'purchase_date',
|
|
'install_date',
|
|
'purchase_price',
|
|
'useful_life',
|
|
'status',
|
|
'disposed_date',
|
|
'manager_id',
|
|
'sub_manager_id',
|
|
'photo_path',
|
|
'memo',
|
|
'options',
|
|
'is_active',
|
|
'sort_order',
|
|
'created_by',
|
|
'updated_by',
|
|
'deleted_by',
|
|
];
|
|
|
|
protected $casts = [
|
|
'purchase_date' => 'date',
|
|
'install_date' => 'date',
|
|
'disposed_date' => 'date',
|
|
'purchase_price' => 'decimal:2',
|
|
'is_active' => 'boolean',
|
|
'options' => 'array',
|
|
];
|
|
|
|
public function getOption(string $key, mixed $default = null): mixed
|
|
{
|
|
return data_get($this->options, $key, $default);
|
|
}
|
|
|
|
public function setOption(string $key, mixed $value): self
|
|
{
|
|
$options = $this->options ?? [];
|
|
data_set($options, $key, $value);
|
|
$this->options = $options;
|
|
|
|
return $this;
|
|
}
|
|
|
|
public function manager(): BelongsTo
|
|
{
|
|
return $this->belongsTo(\App\Models\User::class, 'manager_id');
|
|
}
|
|
|
|
public function subManager(): BelongsTo
|
|
{
|
|
return $this->belongsTo(\App\Models\User::class, 'sub_manager_id');
|
|
}
|
|
|
|
public function canInspect(?int $userId = null): bool
|
|
{
|
|
if (! $userId) {
|
|
return false;
|
|
}
|
|
|
|
return $this->manager_id === $userId || $this->sub_manager_id === $userId;
|
|
}
|
|
|
|
public function inspectionTemplates(): HasMany
|
|
{
|
|
return $this->hasMany(EquipmentInspectionTemplate::class, 'equipment_id')->orderBy('sort_order');
|
|
}
|
|
|
|
public function inspections(): HasMany
|
|
{
|
|
return $this->hasMany(EquipmentInspection::class, 'equipment_id');
|
|
}
|
|
|
|
public function repairs(): HasMany
|
|
{
|
|
return $this->hasMany(EquipmentRepair::class, 'equipment_id');
|
|
}
|
|
|
|
public function photos(): HasMany
|
|
{
|
|
return $this->hasMany(File::class, 'document_id')
|
|
->where('document_type', 'equipment')
|
|
->orderBy('id');
|
|
}
|
|
|
|
public function processes(): BelongsToMany
|
|
{
|
|
return $this->belongsToMany(\App\Models\Process::class, 'equipment_process')
|
|
->withPivot('is_primary')
|
|
->withTimestamps();
|
|
}
|
|
|
|
public function scopeByLine($query, string $line)
|
|
{
|
|
return $query->where('production_line', $line);
|
|
}
|
|
|
|
public function scopeByType($query, string $type)
|
|
{
|
|
return $query->where('equipment_type', $type);
|
|
}
|
|
|
|
public function scopeByStatus($query, string $status)
|
|
{
|
|
return $query->where('status', $status);
|
|
}
|
|
|
|
public static function getEquipmentTypes(): array
|
|
{
|
|
return ['포밍기', '미싱기', '샤링기', 'V컷팅기', '절곡기', '프레스', '드릴', '기타'];
|
|
}
|
|
|
|
public static function getProductionLines(): array
|
|
{
|
|
return ['스라트', '스크린', '절곡', '기타'];
|
|
}
|
|
|
|
public static function getStatuses(): array
|
|
{
|
|
return [
|
|
'active' => '가동',
|
|
'idle' => '유휴',
|
|
'disposed' => '폐기',
|
|
];
|
|
}
|
|
}
|