업그레이드 화면 신청 일시 양식 수정

This commit is contained in:
2026-06-14 22:54:22 +09:00
parent a8ee01ece9
commit 89c0e8be84
2 changed files with 3 additions and 5 deletions
@@ -10,7 +10,6 @@ import { ACTIVATE_STATUSES, REQUEST_STATUSES } from "@/lib/constants";
import type { UpgradeRequestListItem } from "@/lib/upgrade-requests";
import {
formatDate,
formatDateTime,
getAccountTypeLabel,
getActivateStatusLabel,
getRequestStatusLabel,
@@ -79,9 +78,7 @@ export function UpgradeRequestsTable({ data }: UpgradeRequestsTableProps) {
{request.additionalPrice.toLocaleString()}
</span>
</BodyCell>
<BodyCell>
{formatDateTime(request.requestedDateTime)}
</BodyCell>
<BodyCell>{formatDate(request.requestedDateTime)}</BodyCell>
<BodyCell>
{formatDate(request.availableActivateDateTime)}
</BodyCell>
+2 -1
View File
@@ -5,6 +5,7 @@ import { ACTIVATE_STATUSES, REQUEST_STATUSES } from "@/lib/constants";
import type { Prisma } from "@/lib/generated/prisma/client";
import {
calculateUpgradePrice,
formatDate,
getAccountTypeLabel,
getAccountTypePrice,
getTrialAccountTypeLabel,
@@ -276,7 +277,7 @@ function toUpgradeRequestListItem(request: {
registeredActivateStatus: request.RegisteredActivateStatus,
registeredAccountType: request.RegisteredAccountType,
requestedAccountType: request.RequestedAccountType,
requestedDateTime: request.RequestedDateTime.toISOString(),
requestedDateTime: formatDate(request.RequestedDateTime),
availableActivateDateTime:
request.maestro.AvailableActivateDateTime.toISOString(),
status: request.Status,