Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2단계 - 요구 사항 정리 #854

Open
wants to merge 2 commits into
base: sunggyun-jo
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
27 changes: 27 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,33 @@ docker compose -p kitchenpos up -d

## 요구 사항

- 간단한 키친포스를 구현한다.
- 상품
- [ ] 상품을 등록 할 수 있다.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

상품 등록 시 어떤 제약이 있을까요?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

제약 조건들 추가해보았습니다.

- [ ] 등록한 상품의 가격을 수정 할 수 있다.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

수정 시에 어떤 조건들이 있을 수 있을까요?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

수정시 예외 발생 조건들 추가 하였습니다.

- [ ] 등록한 상품 목록을 조회 할 수 있다.
- 메뉴

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

메뉴에 어떤 상태 값들이 있을까요?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

메뉴 등록 조건과 상태 변경 시 예외 조건들 추가 하였습니다.

- [ ] 메뉴 그룹을 등록 할 수 있다.
- [ ] 메뉴 그룹을 조회 할 수 있다.
- [ ] 메뉴를 등록 할 수 있다. 메뉴는 하나의 메뉴 그룹에 속해야 한다. 메뉴는 1개 이상의 상품으로 구성할 수 있다.
- [ ] 메뉴의 가격을 수정할 수 있다.
- [ ] 메뉴를 보이기/숨기기 처리 할 수 있다.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

각 행위에 맞는 조건을 추가해보면 좋을 것 같아요!

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

각 행위 별 조건들 추가하였습니다.

- [ ] 전체 메뉴 목록을 볼 수 있다.
- 주문-테이블
- [ ] 주문 테이블을 등록 할 수 있다.
- [ ] 주문 테이블을 손님 앉음 상태로 수정 할 수 있다.
- [ ] 주문 테이블을 사용 가능 상태로 수정 할 수 있다.
- [ ] 주문 테이블에 손님 숫자를 수정 할 수 있다.
- [ ] 주문 테이블 목록을 조회 할 수 있다.
- 주문

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

주문-테이블, 주문도 위와 마찬가지로 조건을 추가해보면 좋습니다

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

생성, 수정시 조건들과 예외 발생 조건 추가 하였습니다.

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

주문에 더 많은 정보가 있을 것 같은데요! 확인하고 더 추가해보면 좋을 것 같아요 :)

주문 아이템 or 주문항목

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

주문 속성을 추가했고, 각 주문 유형, 주문 상태등 도 추가로 정리하였습니다.

- [ ] 주문을 등록 할 수 있다. 먹고 가는 경우 주문-테이블 정보가 필요하다. 메뉴 단위로 주문 할 수 있고 1개 이상 메뉴를 포함 할 수 있다.
- [ ] 주문이 접수되면 수락을 해서 조리 시작 상태로 변경 할 수 있다.
- [ ] 먹고 가는 주문은 서빙을 해서 주문 테이블에 제공 할 수 있다.
- [ ] 배달 주문은 배달 시작 상태로 변경 할 수 있다.
- [ ] 배달 주문은 배달 완료 상태로 변경 할 수 있다.
- [ ] 주문은 완료 상태로 변경 할 수 있다.
- [ ] 주문 목록을 조회 할 수 있다.

## 용어 사전

| 한글명 | 영문명 | 설명 |
Expand Down