diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-09-08 10:29:19 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-09-08 10:29:19 +0000 |
| commit | f93493f68c9f368e10f1c3379f1c1384068e3b14 (patch) | |
| tree | a9dada58741750fa7ca6e04b210443ad99a6bccc /components | |
| parent | e832a508e1b3c531fb3e1b9761e18e1b55e3d76a (diff) | |
(대표님, 최겸) rfqLast, bidding, prequote
Diffstat (limited to 'components')
| -rw-r--r-- | components/vendor-regular-registrations/document-status-dialog.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/vendor-regular-registrations/document-status-dialog.tsx b/components/vendor-regular-registrations/document-status-dialog.tsx index cfdd03fd..dcac8bf9 100644 --- a/components/vendor-regular-registrations/document-status-dialog.tsx +++ b/components/vendor-regular-registrations/document-status-dialog.tsx @@ -185,7 +185,7 @@ export function DocumentStatusDialog({ return;
}
- if (contract.status !== "COMPLETED") {
+ if (contract.status !== "VENDOR_SIGNED") {
toast.error("완료된 계약서만 다운로드할 수 있습니다.");
return;
}
@@ -348,7 +348,7 @@ export function DocumentStatusDialog({ </div>
) : (
registration.basicContracts.map((contract, index) => {
- const isCompleted = contract.status === "COMPLETED";
+ const isCompleted = contract.status === "VENDOR_SIGNED";
return (
<div
|
