summaryrefslogtreecommitdiff
path: root/lib/pq/pq-review-table-new/send-results-dialog.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'lib/pq/pq-review-table-new/send-results-dialog.tsx')
-rw-r--r--lib/pq/pq-review-table-new/send-results-dialog.tsx8
1 files changed, 6 insertions, 2 deletions
diff --git a/lib/pq/pq-review-table-new/send-results-dialog.tsx b/lib/pq/pq-review-table-new/send-results-dialog.tsx
index 3c8614cc..6c75e6ca 100644
--- a/lib/pq/pq-review-table-new/send-results-dialog.tsx
+++ b/lib/pq/pq-review-table-new/send-results-dialog.tsx
@@ -123,7 +123,9 @@ export function SendResultsDialog({
</div>
<div className="grid grid-cols-3 gap-4">
<div className="font-medium text-muted-foreground">Vendor</div>
- <div className="col-span-2">{result.vendorCode} | {result.vendorName}</div>
+ <div className="col-span-2">
+ {(result.vendorCode === "N/A" ? "미등록" : result.vendorCode)} | {result.vendorName}
+ </div>
</div>
<div className="grid grid-cols-3 gap-4">
<div className="font-medium text-muted-foreground">수신자</div>
@@ -151,7 +153,9 @@ export function SendResultsDialog({
</div>
{result.investigationNotes && (
<div className="grid grid-cols-3 gap-4">
- <div className="font-medium text-muted-foreground">실사합격조건</div>
+ <div className="font-medium text-muted-foreground">
+ {result.auditResult.includes("Pass") ? "QM 의견" : "실사합격조건"}
+ </div>
<div className="col-span-2">{result.investigationNotes}</div>
</div>
)}