- Added ValidityTime model and migration to manage ticket validity periods. - Updated TicketGeneratorService to resolve and assign validity times to tickets. - Refactored ticket generation logic to remove legacy date fields and use validity time. - Introduced timezone support for tenants to handle service dates correctly. - Updated migrations to remove deprecated columns and add foreign keys for validity times. - Modified seeders and tests to accommodate new validity time structure. - Enhanced tests to validate ticket generation and validity time behavior.
51 lines
1.1 KiB
PHP
51 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Domains\Catalog\Models;
|
|
|
|
use App\Domains\Ticket\Models\ValidityTime;
|
|
use Illuminate\Database\Eloquent\Attributes\Fillable;
|
|
use Illuminate\Database\Eloquent\Factories\HasFactory;
|
|
use Illuminate\Database\Eloquent\Model;
|
|
use Illuminate\Database\Eloquent\Relations\BelongsTo;
|
|
|
|
#[Fillable([
|
|
'attribute_id',
|
|
'validity_time_id',
|
|
'value',
|
|
'label',
|
|
'sort_order',
|
|
'metadata',
|
|
])]
|
|
class AttributeOption extends Model
|
|
{
|
|
use HasFactory;
|
|
|
|
protected $table = 'attribute_options';
|
|
|
|
/**
|
|
* @return array<string, string>
|
|
*/
|
|
protected function casts(): array
|
|
{
|
|
return [
|
|
'validity_time_id' => 'integer',
|
|
'sort_order' => 'integer',
|
|
'metadata' => 'array',
|
|
];
|
|
}
|
|
|
|
/**
|
|
* @return BelongsTo<Attribute, $this>
|
|
*/
|
|
public function attribute(): BelongsTo
|
|
{
|
|
return $this->belongsTo(Attribute::class, 'attribute_id');
|
|
}
|
|
|
|
/** @return BelongsTo<ValidityTime, $this> */
|
|
public function validityTime(): BelongsTo
|
|
{
|
|
return $this->belongsTo(ValidityTime::class);
|
|
}
|
|
}
|