Conversation
- Domain - SolutionEntity: industry 필드 및 updateSolutionEntity 메서드의 industry 파라미터 제거 - Service - SolutionService.saveSolutionEntity: request.industry() 사용 제거 - SolutionService.modifySolutionEntity: request.industry() 파라미터 제거 - SolutionService.getSolutionEntityByCategory: industry 변수 및 사용 코드 제거 - SolutionService.getSolutionEntity: industry 변수 및 사용 코드 제거 - SolutionService.getAllSolutionEntity: industry 파라미터 제거 및 메서드 시그니처 변경 - Controller - SolutionController.getAllSolutionEntity: industry 쿼리 파라미터 제거 - Repository - SolutionEntityRepository: findByCategoryAndIndustryAndBudgetAndKeyword → findByCategoryAndBudgetAndKeyword로 메서드명 변경 - SolutionEntityRepositoryImpl: industry 관련 쿼리 조건 제거 - Request/Response - SaveSolutionEntityRequest: industry 필드 및 validation 로직 제거 - ModifySolutionEntityRequest: industry 필드 및 validation 로직 제거 - GetSolutionEntityResponse: industry 필드 제거
- 변경된 5개 API의 Request/Response 변경 사항 - 변경 전/후 JSON 예시 - 제거된 필드/파라미터 목록 - 요약 테이블
- PAYMENT_STATUS enum 정리 - 토스페이먼츠 웹훅 문서에 명시된 상태만 관리 - 카드/간편결제: EXPIRED, DONE, ABORTED, CANCELED, PARTIAL_CANCELED - 가상계좌: WAITING_FOR_DEPOSIT, DONE, CANCELED, PARTIAL_CANCELED - 내부 정산: SETTLED - IN_PROGRESS, READY 상태 제거 (웹훅에서 올 수 있지만 무시) - 웹훅 기반 상태 관리로 전환 - `tossPaymentApproval`: 결제 승인만 처리하고 초기 상태만 설정 - 상태 업데이트는 웹훅 핸들러에서만 처리: - `handlePaymentStatusChanged`: PAYMENT_STATUS_CHANGED 웹훅 처리 - `handleCancelStatusChanged`: CANCEL_STATUS_CHANGED 웹훅 처리 - 가상계좌 관련 메서드 제거 - `initializeVirtualAccount`, `completeVirtualAccountDeposit`, `cancelVirtualAccount` 메서드 제거 - deposit-callback 제거 - `tossPaymentDepositCallBack` 메서드 및 엔드포인트 제거 - `TossPaymentDepositCallBackRequest` DTO 제거 - 가상계좌 입금 완료도 웹훅으로만 처리 - 테스트 파일 수정 - `success.html`: API 경로 수정 (`/api/b2b-service/payment` → `/api/payment-service/payment`) - `paymentEventSeq` 동적 입력 기능 추가 (URL 파라미터 또는 localStorage)
This file contains hidden or 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
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.
🌱 관련 이슈
📌 작업 내용 및 특이사항
📝 참고사항
📚 기타