summaryrefslogtreecommitdiff
path: root/lib/rfq-last/vendor
diff options
context:
space:
mode:
authordujinkim <dujin.kim@dtsolution.co.kr>2025-10-14 09:14:10 +0000
committerdujinkim <dujin.kim@dtsolution.co.kr>2025-10-14 09:14:10 +0000
commit2ce5f9dfbb69f0898c42ab862db5ad142fa24943 (patch)
tree64b2d54c5c56860ed36038867c570acd2abf35a3 /lib/rfq-last/vendor
parent6acb316af6041f093532a778f66960fc196e1547 (diff)
(최겸) 구매 입찰 1회성 품목 기준정보 개발(스키마, 테이블, CRUD, 페이지 등)
Diffstat (limited to 'lib/rfq-last/vendor')
-rw-r--r--lib/rfq-last/vendor/vendor-detail-dialog.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/rfq-last/vendor/vendor-detail-dialog.tsx b/lib/rfq-last/vendor/vendor-detail-dialog.tsx
index 7946e371..0eee1b8b 100644
--- a/lib/rfq-last/vendor/vendor-detail-dialog.tsx
+++ b/lib/rfq-last/vendor/vendor-detail-dialog.tsx
@@ -235,7 +235,7 @@ export function VendorResponseDetailDialog({
<span className="text-sm text-muted-foreground">최종 수정일</span>
<span className="text-sm">
{data.updatedAt
- ? format(new Date(data.updatedAt), "yyyy-MM-dd HH:mm", { locale: ko })
+ ? format(new Date(new Date(data.updatedAt).getTime() + 9 * 60 * 60 * 1000), "yyyy-MM-dd HH:mm", { locale: ko })
: "-"}
</span>
</div>
@@ -302,14 +302,14 @@ export function VendorResponseDetailDialog({
<div className="flex items-center justify-between">
<span className="text-sm text-muted-foreground">최초 발송일시</span>
<span className="text-sm">
- {format(new Date(data.emailSentAt), "yyyy-MM-dd HH:mm", { locale: ko })}
+ {format(new Date(new Date(data.emailSentAt).getTime() + 9 * 60 * 60 * 1000), "yyyy-MM-dd HH:mm", { locale: ko })}
</span>
</div>
{data.lastEmailSentAt && data.emailResentCount > 1 && (
<div className="flex items-center justify-between">
<span className="text-sm text-muted-foreground">최근 재발송일시</span>
<span className="text-sm">
- {format(new Date(data.lastEmailSentAt), "yyyy-MM-dd HH:mm", { locale: ko })}
+ {format(new Date(new Date(data.lastEmailSentAt).getTime() + 9 * 60 * 60 * 1000), "yyyy-MM-dd HH:mm", { locale: ko })}
<Badge variant="secondary" className="ml-2">
재발송 {data.emailResentCount - 1}회
</Badge>