2025-12-30 15:03:19 +08:00
|
|
|
|
<?php
|
|
|
|
|
|
|
2026-01-26 10:37:47 +08:00
|
|
|
|
namespace App\Modules\Inventory\Models;
|
2025-12-30 15:03:19 +08:00
|
|
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
2026-01-27 09:09:55 +08:00
|
|
|
|
|
2025-12-30 15:03:19 +08:00
|
|
|
|
|
|
|
|
|
|
class InventoryTransaction extends Model
|
|
|
|
|
|
{
|
|
|
|
|
|
/** @use HasFactory<\Database\Factories\InventoryTransactionFactory> */
|
|
|
|
|
|
use HasFactory;
|
|
|
|
|
|
|
|
|
|
|
|
protected $fillable = [
|
|
|
|
|
|
'inventory_id',
|
|
|
|
|
|
'type',
|
|
|
|
|
|
'quantity',
|
2026-01-26 17:27:34 +08:00
|
|
|
|
'unit_cost',
|
2025-12-30 15:03:19 +08:00
|
|
|
|
'balance_before',
|
|
|
|
|
|
'balance_after',
|
|
|
|
|
|
'reason',
|
|
|
|
|
|
'reference_type',
|
|
|
|
|
|
'reference_id',
|
|
|
|
|
|
'user_id',
|
|
|
|
|
|
'actual_time',
|
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
protected $casts = [
|
2026-02-10 16:07:31 +08:00
|
|
|
|
// actual_time 不做時區轉換,保留原始字串格式(台北時間)
|
|
|
|
|
|
// 原因:資料庫儲存的是台北時間,但 MySQL 時區為 UTC
|
|
|
|
|
|
// 若使用 datetime cast,Laravel 會誤當作 UTC 再轉回台北時間,造成偏移
|
2026-01-26 17:27:34 +08:00
|
|
|
|
'unit_cost' => 'decimal:4',
|
2025-12-30 15:03:19 +08:00
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
public function inventory(): \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
|
|
|
|
{
|
|
|
|
|
|
return $this->belongsTo(Inventory::class);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public function reference(): \Illuminate\Database\Eloquent\Relations\MorphTo
|
|
|
|
|
|
{
|
|
|
|
|
|
return $this->morphTo();
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|