2026-03-02 17:43:47 +09:00
|
|
|
<?php
|
|
|
|
|
|
|
|
|
|
namespace App\Models\Rd;
|
|
|
|
|
|
|
|
|
|
use Illuminate\Database\Eloquent\Model;
|
|
|
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
|
|
|
|
|
|
class AiQuotationItem extends Model
|
|
|
|
|
{
|
|
|
|
|
protected $table = 'ai_quotation_items';
|
|
|
|
|
|
|
|
|
|
protected $fillable = [
|
|
|
|
|
'ai_quotation_id',
|
|
|
|
|
'module_id',
|
|
|
|
|
'module_code',
|
|
|
|
|
'module_name',
|
2026-03-03 15:57:31 +09:00
|
|
|
'specification',
|
|
|
|
|
'unit',
|
|
|
|
|
'quantity',
|
|
|
|
|
'unit_price',
|
|
|
|
|
'total_price',
|
|
|
|
|
'item_category',
|
|
|
|
|
'floor_code',
|
2026-03-02 17:43:47 +09:00
|
|
|
'is_required',
|
|
|
|
|
'reason',
|
|
|
|
|
'dev_cost',
|
|
|
|
|
'monthly_fee',
|
|
|
|
|
'sort_order',
|
|
|
|
|
'options',
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
protected $casts = [
|
|
|
|
|
'is_required' => 'boolean',
|
|
|
|
|
'options' => 'array',
|
|
|
|
|
'dev_cost' => 'decimal:0',
|
|
|
|
|
'monthly_fee' => 'decimal:0',
|
2026-03-03 15:57:31 +09:00
|
|
|
'quantity' => 'decimal:2',
|
|
|
|
|
'unit_price' => 'decimal:2',
|
|
|
|
|
'total_price' => 'decimal:2',
|
2026-03-02 17:43:47 +09:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
public function quotation(): BelongsTo
|
|
|
|
|
{
|
|
|
|
|
return $this->belongsTo(AiQuotation::class, 'ai_quotation_id');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function module(): BelongsTo
|
|
|
|
|
{
|
|
|
|
|
return $this->belongsTo(AiQuotationModule::class, 'module_id');
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getFormattedDevCostAttribute(): string
|
|
|
|
|
{
|
|
|
|
|
return number_format((int) $this->dev_cost).'원';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getFormattedMonthlyFeeAttribute(): string
|
|
|
|
|
{
|
|
|
|
|
return number_format((int) $this->monthly_fee).'원';
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function getOption(string $key, $default = null)
|
|
|
|
|
{
|
|
|
|
|
return data_get($this->options, $key, $default);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public function setOption(string $key, $value): void
|
|
|
|
|
{
|
|
|
|
|
$options = $this->options ?? [];
|
|
|
|
|
data_set($options, $key, $value);
|
|
|
|
|
$this->options = $options;
|
|
|
|
|
$this->save();
|
|
|
|
|
}
|
|
|
|
|
}
|