- EquipmentPhotoService: GCS 기반 사진 업로드/삭제/조회 (최대 10장) - EquipmentImportService: 엑셀 파싱 → 설비 일괄 등록 (한글 헤더 자동 매핑) - API: 사진 업로드/목록/삭제, Import 미리보기/실행 엔드포인트 - 뷰: create/edit에 드래그앤드롭 사진 업로드, show에 갤러리 표시 - import.blade.php: 3단계 Import UI (파일선택 → 미리보기 → 결과) - phpoffice/phpspreadsheet 패키지 추가
142 lines
3.6 KiB
PHP
142 lines
3.6 KiB
PHP
<?php
|
|
|
|
namespace App\Models\Equipment;
|
|
|
|
use App\Models\Boards\File;
|
|
use App\Traits\BelongsToTenant;
|
|
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 BelongsToTenant, 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',
|
|
'photo_path',
|
|
'memo',
|
|
'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',
|
|
];
|
|
|
|
public function manager(): BelongsTo
|
|
{
|
|
return $this->belongsTo(\App\Models\User::class, 'manager_id');
|
|
}
|
|
|
|
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 scopeActive($query)
|
|
{
|
|
return $query->where('status', 'active');
|
|
}
|
|
|
|
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 getStatusLabelAttribute(): string
|
|
{
|
|
return match ($this->status) {
|
|
'active' => '가동',
|
|
'idle' => '유휴',
|
|
'disposed' => '폐기',
|
|
default => $this->status,
|
|
};
|
|
}
|
|
|
|
public function getStatusColorAttribute(): string
|
|
{
|
|
return match ($this->status) {
|
|
'active' => 'bg-green-100 text-green-800',
|
|
'idle' => 'bg-yellow-100 text-yellow-800',
|
|
'disposed' => 'bg-gray-100 text-gray-800',
|
|
default => 'bg-gray-100 text-gray-800',
|
|
};
|
|
}
|
|
|
|
public static function getEquipmentTypes(): array
|
|
{
|
|
return ['포밍기', '미싱기', '샤링기', 'V컷팅기', '절곡기', '프레스', '드릴', '기타'];
|
|
}
|
|
|
|
public static function getProductionLines(): array
|
|
{
|
|
return ['스라트', '스크린', '절곡', '기타'];
|
|
}
|
|
|
|
public static function getStatuses(): array
|
|
{
|
|
return [
|
|
'active' => '가동',
|
|
'idle' => '유휴',
|
|
'disposed' => '폐기',
|
|
];
|
|
}
|
|
}
|