-
Notifications
You must be signed in to change notification settings - Fork 1
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
[feat] 점주 주문 리스트 조회 #94
Merged
The head ref may contain hidden characters: "feature/85_kimhyun5u_\uC810\uC8FC-\uC8FC\uBB38-\uB9AC\uC2A4\uD2B8-\uC870\uD68C"
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- OrderRepositoryTest.testFindAllByOwner: 점주가 관리하고 있는 모든 점포의 주문 조회 - OrderRepositoryTest.testFindAllByOwnerFailWithUnauthorized: 점주가 관리하고 있는 모든 점포의 주문 조회 실패 - OrderRepositoryTest.testFindByStore: 특정 매장 주문 조회 - OrderRepositoryTest.testFindByStoreFailWithUnauthorized: 특정 매장 주문 조회 실패 - 권한 없음
- OrderRepository.findAllByOwner: 점주가 관리하는 모든 점포의 주문 조회 - OrderRepository.findByStore: 특정 점포의 주문 조회
- RetrieveOrderListService.retrieveOrderListOfVendorStores: 점주가 관리하는 모든 점포의 주문 조회 - RetrieveOrderListService.retrieveOrderListOfStore: 특정 점포의 주문 조회
- RetrieveOrderListServiceTest.testRetrieveOrderList: 점주 주문 리스트 조회 테스트 - 성공 - RetrieveOrderListServiceTest.testRetrieveOrderListOfStore: 점주 특정 매장 주문 리스트 조회 테스트 - 성공 - RetrieveOrderListServiceTest.testRetrieveOrderListOfStoreFailByNotFoundStore: 점주 특정 매장 주문 리스트 조회 테스트 - 실패(매장이 존재하지 않음) - RetrieveOrderListServiceTest.testRetrieveOrderListOfStoreFailByNotEqualsOwner: 점주 특정 매장 주문 리스트 조회 테스트 - 실패(매장의 주인이 아님)
- OrderApiControllerTest.testRetrieveOrderList: 점주 주문 리스트 조회 테스트 - 성공 - OrderApiControllerTest.testRetrieveOrderListByStore: 점주 매장 주문 리스트 조회 테스트 - 성공 - OrderApiControllerTest.testRetrieveOrderListByStoreFail:점주 매장 주문 리스트 조회 테스트 - 실패(매장이 존재하지 않음) - OrderApiControllerTest.testRetrieveOrderListByStoreFailWithUnauthorized: 점주 매장 주문 리스트 조회 테스트 - 실패(매장의 주인이 아님)
- OrderApiController.retrieveOrderList: 점주가 관리하는 모든 점포의 주문 조회 요청 처리 - OrderApiController.retrieveOrderListByStore: 특점 점포의 주문 조회 요청 처리
- 주문 리스트 조회 응답
- 주문 예외 핸들러 구현 - OrderExceptionHandler.handleNotEqualsOwnerException: NotEqualsOwnerException 처리 - OrderExceptionHandler.handleNotFoundStoreException: NotFoundStoreException 처리
- 사용하지 않는 코드 제거
Closed
- 주문 조회 시 반환할 DTO 구현 - OrderDTO.RequesterDTO, OrderDTO.OrderItemDTO, OrderDTO.StoreDTO 를 내부에 두어 필요한 내용만 노출 시킬 수 있도록 함
- DTO 변환 시 내부 내용 조회가 필요해 `@Getter` 추가
- DTO 변환 시 내부 내용 조회가 필요해 getter 추가
- OrderDTO 생성 후 데이터 검증 테스트 추가
- VendorFixture.createTestVendor: 간단히 TestVendor 를 생성하는 메소드
- 테스트에 사용할 TestOrderDTO 구현
- 반복되는 TestStore 생성 코드를 추상화
- DTO 생성을 위해 StoreAddress 필드를 조회할 수 있도록 변경
- 반환값을 OrderDTO 로 수정
- requestID(customer_id) 와 StoreID 추가
june-777
approved these changes
Aug 18, 2024
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
확인 완료입니다 🙂
Dr-KoKo
reviewed
Aug 18, 2024
src/main/java/camp/woowak/lab/order/service/command/RetrieveOrderListCommand.java
Show resolved
Hide resolved
Dr-KoKo
approved these changes
Aug 18, 2024
…u_점주-주문-리스트-조회 # Conflicts: # src/main/java/camp/woowak/lab/order/domain/vo/OrderItem.java
- OrderItem price 타입 변경으로 인한 변경
- OrderItem price 타입 변경으로 인한 변경
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
💡 다음 이슈를 해결했어요.
Issue Link - #85
💡 이슈를 처리하면서 추가된 코드가 있어요.
💡 이런 고민을 했어요.
✅ 셀프 체크리스트