docs: items 테이블 통합 완료 내용 반영

- rules/item-policy.md: source_table 개념 제거, API 완료 상태 업데이트
- front/item-master-guide.md: source_table: 'items' 반영
- specs/database-schema.md: items 통합 테이블 구조 추가
This commit is contained in:
2025-12-16 10:01:30 +09:00
parent 3d6d7b67ea
commit e863d3762a
3 changed files with 108 additions and 71 deletions

View File

@@ -174,13 +174,15 @@ interface ItemPage {
group_id: number;
page_name: string;
item_type: 'FG' | 'PT' | 'SM' | 'RM' | 'CS';
source_table: 'products' | 'materials';
source_table: 'items'; // 통합됨 (2025-12-15)
absolute_path?: string;
is_active: boolean;
sections: ItemSection[]; // init 응답에 포함
}
```
> **통합 완료**: 기존 `products`/`materials` 분리 구조가 `items` 단일 테이블로 통합되었습니다.
### 3.2 ItemSection
```typescript
@@ -333,6 +335,7 @@ init API 응답에 `is_locked` 필드가 포함됩니다.
| 날짜 | 변경 내용 |
|------|----------|
| 2025-12-16 | items 테이블 통합 반영 (source_table: 'items') |
| 2025-12-09 | 시스템 기반 문서 전면 재작성 |
| 2025-11-27 | 잠금(Lock) 기능 추가 |
| 2025-11-26 | 독립 엔티티 아키텍처 적용 |