feat:테넌트설정 API 및 다수 서비스 개선

- TenantSetting CRUD API 추가
- Calendar, Entertainment, VAT 서비스 개선
- 5130 BOM 계산 로직 수정
- quote_items에 item_type 컬럼 추가
- tenant_settings 테이블 마이그레이션
- Swagger 문서 업데이트
This commit is contained in:
2026-01-26 20:29:22 +09:00
parent f2da990771
commit 6d05ab815f
54 changed files with 2090 additions and 110 deletions

View File

@@ -15,6 +15,7 @@ class ShipmentItem extends Model
'tenant_id',
'shipment_id',
'seq',
'item_id',
'item_code',
'item_name',
'floor_unit',
@@ -28,6 +29,7 @@ class ShipmentItem extends Model
protected $casts = [
'seq' => 'integer',
'item_id' => 'integer',
'quantity' => 'decimal:2',
'shipment_id' => 'integer',
'stock_lot_id' => 'integer',