- 修正所有模組 Controller 的 Model 引用路徑 (App\Modules\...) - 更新 ProductionOrder 與 ProductionOrderItem 模型結構以符合新版邏輯 - 修復 resources/js/utils/format.ts 在處理空值時導致 toLocaleString 崩潰的問題 - 清除全域路徑與 Controller 遷移殘留檔案
46 lines
1.1 KiB
PHP
46 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Modules\Inventory\Models;
|
|
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use App\Modules\Core\Models\User; // Cross-module Core dependency
|
|
|
|
class InventoryTransaction extends Model
|
|
{
|
|
/** @use HasFactory<\Database\Factories\InventoryTransactionFactory> */
|
|
use HasFactory;
|
|
|
|
protected $fillable = [
|
|
'inventory_id',
|
|
'type',
|
|
'quantity',
|
|
'balance_before',
|
|
'balance_after',
|
|
'reason',
|
|
'reference_type',
|
|
'reference_id',
|
|
'user_id',
|
|
'actual_time',
|
|
];
|
|
|
|
protected $casts = [
|
|
'actual_time' => 'datetime',
|
|
];
|
|
|
|
public function inventory(): \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
{
|
|
return $this->belongsTo(Inventory::class);
|
|
}
|
|
|
|
public function user(): \Illuminate\Database\Eloquent\Relations\BelongsTo
|
|
{
|
|
return $this->belongsTo(User::class);
|
|
}
|
|
|
|
public function reference(): \Illuminate\Database\Eloquent\Relations\MorphTo
|
|
{
|
|
return $this->morphTo();
|
|
}
|
|
}
|