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

[Backend : Feature ] 영수증 저장 API 추가 #120

Closed
5 tasks done
Dayon-Hong opened this issue Aug 7, 2024 · 2 comments · Fixed by #128
Closed
5 tasks done

[Backend : Feature ] 영수증 저장 API 추가 #120

Dayon-Hong opened this issue Aug 7, 2024 · 2 comments · Fixed by #128
Assignees

Comments

@Dayon-Hong
Copy link
Collaborator

Dayon-Hong commented Aug 7, 2024

📋 이슈 내용

  • 사용자는 여행 일정 별 영수증을 저장해 총 경비 내역을 관리할 수 있다.

✅ 체크리스트

  • 일정 목록 조회시, 도시의 통화명도 같이 제공
  • 일정 선택 -> 영수증 리스트 조회
  • 영수증 추가
  • 영수증 삭제
  • 영수증 수정

📍 레퍼런스

@Dayon-Hong Dayon-Hong self-assigned this Aug 7, 2024
@Dayon-Hong
Copy link
Collaborator Author

Table Receipt {
id Long [pk]
schedules_id Long [ref: > Schedule.id]
store_name varchar
store_type varchar
total_price double
purchase_date varchar
receipt_img varchar
created_at timestamp
updated_at timestamp
}

Table ReceiptDetail {
id Long [pk]
receipt_id Long [ref: > Receipt.id]
item varchar
count int
item_price double
created_at timestamp
updated_at timestamp
}

@Dayon-Hong
Copy link
Collaborator Author

DB receipt 이전에 사용하던 컬럼
지윤이랑 충돌해서 계속 안쓰는 title, price가 생성되므로 머지이후 수정할것

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant