feat: Price, PriceRevision 모델 생성 및 서비스 정리

- Price 모델 생성 (prices 테이블)
- PriceRevision 모델 생성 (price_revisions 테이블)
- 레거시 Pricing/PricingService 삭제 (PriceHistory 사용)
- pricing 에러/메시지 추가
This commit is contained in:
2025-12-17 20:57:38 +09:00
parent 0cf02550f0
commit a1980adb20
5 changed files with 296 additions and 285 deletions

View File

@@ -131,6 +131,13 @@
'self_reference_bom' => 'BOM에 자기 자신을 포함할 수 없습니다.',
],
// 단가 관리 관련
'pricing' => [
'finalized_cannot_edit' => '확정된 단가는 수정할 수 없습니다.',
'finalized_cannot_delete' => '확정된 단가는 삭제할 수 없습니다.',
'cannot_finalize' => '확정할 수 없는 상태입니다.',
],
// 잠금 관련
'relationship_locked' => '잠금된 연결은 해제할 수 없습니다.',
'has_locked_relationships' => '잠금된 연결이 포함되어 있어 처리할 수 없습니다.',