forked from TEAM-BEAT/BEAT-Client
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request TEAM-BEAT#454 from TEAM-BEAT/feat/TEAM-BEAT#453/Ti…
…cketHolderListFunction [Feat/TEAM-BEAT#453] 예매자 관리 페이지 기능 구현
- Loading branch information
Showing
28 changed files
with
3,795 additions
and
2,802 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import * as React from "react"; | ||
import type { SVGProps } from "react"; | ||
const SvgIconDownload = (props: SVGProps<SVGSVGElement>) => ( | ||
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 20 20" {...props}> | ||
<path | ||
fill="#FB247F" | ||
d="M9.999 13.333 5.832 9.166l1.167-1.208 2.166 2.167V3.333h1.667v6.792l2.167-2.167 1.166 1.208zm-5 3.333q-.687 0-1.177-.489A1.6 1.6 0 0 1 3.332 15v-2.5h1.667V15h10v-2.5h1.666V15q0 .687-.489 1.177a1.6 1.6 0 0 1-1.177.49z" | ||
/> | ||
</svg> | ||
); | ||
export default SvgIconDownload; |
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
This file was deleted.
Oops, something went wrong.
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
type PaymentType = | ||
| "CHECKING_PAYMENT" | ||
| "BOOKING_CONFIRMED" | ||
| "BOOKING_CANCELLED" | ||
| "REFUND_REQUESTED"; | ||
|
||
export const convertingBookingStatus = (_bookingStatus: PaymentType): string => { | ||
switch (_bookingStatus) { | ||
case "CHECKING_PAYMENT": | ||
return "미입금"; | ||
case "BOOKING_CONFIRMED": | ||
return "입금 완료"; | ||
case "BOOKING_CANCELLED": | ||
return "취소 완료"; | ||
case "REFUND_REQUESTED": | ||
return "환불 요청"; | ||
default: | ||
throw new Error("알 수 없는 상태입니다."); | ||
} | ||
}; |
Oops, something went wrong.