- Auditable 트레이트 신규 생성 (bootAuditable 패턴) - creating: created_by/updated_by 자동 채우기 - updating: updated_by 자동 채우기 - deleting: deleted_by 채우기 + saveQuietly() - created/updated/deleted: audit_logs 자동 기록 - 기존 AuditLogger 패턴과 동일한 try/catch 조용한 실패 - 변경된 필드만 before/after 기록 (updated 이벤트) - auditExclude 프로퍼티로 모델별 제외 필드 설정 가능 - 제외 대상: Attendance, StockTransaction, TodayIssue 등 고빈도/시스템 모델 Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
113 lines
2.4 KiB
PHP
113 lines
2.4 KiB
PHP
<?php
|
|
|
|
namespace App\Models\Tenants;
|
|
|
|
use App\Traits\Auditable;
|
|
use App\Traits\BelongsToTenant;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
use Illuminate\Database\Eloquent\SoftDeletes;
|
|
|
|
class StockLot extends Model
|
|
{
|
|
use Auditable, BelongsToTenant, SoftDeletes;
|
|
|
|
protected $fillable = [
|
|
'tenant_id',
|
|
'stock_id',
|
|
'lot_no',
|
|
'fifo_order',
|
|
'receipt_date',
|
|
'qty',
|
|
'reserved_qty',
|
|
'available_qty',
|
|
'unit',
|
|
'supplier',
|
|
'supplier_lot',
|
|
'po_number',
|
|
'location',
|
|
'status',
|
|
'receiving_id',
|
|
'created_by',
|
|
'updated_by',
|
|
'deleted_by',
|
|
];
|
|
|
|
protected $casts = [
|
|
'fifo_order' => 'integer',
|
|
'receipt_date' => 'date',
|
|
'qty' => 'decimal:3',
|
|
'reserved_qty' => 'decimal:3',
|
|
'available_qty' => 'decimal:3',
|
|
'stock_id' => 'integer',
|
|
'receiving_id' => 'integer',
|
|
];
|
|
|
|
/**
|
|
* LOT 상태 목록
|
|
*/
|
|
public const STATUSES = [
|
|
'available' => '사용가능',
|
|
'reserved' => '예약됨',
|
|
'used' => '사용완료',
|
|
];
|
|
|
|
/**
|
|
* 재고 관계
|
|
*/
|
|
public function stock(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Stock::class);
|
|
}
|
|
|
|
/**
|
|
* 입고 관계
|
|
*/
|
|
public function receiving(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Receiving::class);
|
|
}
|
|
|
|
/**
|
|
* 생성자 관계
|
|
*/
|
|
public function creator(): BelongsTo
|
|
{
|
|
return $this->belongsTo(\App\Models\Members\User::class, 'created_by');
|
|
}
|
|
|
|
/**
|
|
* 상태 라벨
|
|
*/
|
|
public function getStatusLabelAttribute(): string
|
|
{
|
|
return self::STATUSES[$this->status] ?? $this->status;
|
|
}
|
|
|
|
/**
|
|
* 경과일
|
|
*/
|
|
public function getDaysElapsedAttribute(): int
|
|
{
|
|
return $this->receipt_date->diffInDays(now());
|
|
}
|
|
|
|
/**
|
|
* 가용 수량 업데이트
|
|
*/
|
|
public function updateAvailableQty(): void
|
|
{
|
|
$this->available_qty = $this->qty - $this->reserved_qty;
|
|
|
|
if ($this->available_qty <= 0 && $this->qty <= 0) {
|
|
$this->status = 'used';
|
|
} elseif ($this->reserved_qty > 0) {
|
|
$this->status = 'reserved';
|
|
} else {
|
|
$this->status = 'available';
|
|
}
|
|
|
|
$this->save();
|
|
}
|
|
}
|