diff options
Diffstat (limited to 'lib/vendor-investigation/table/update-investigation-sheet.tsx')
| -rw-r--r-- | lib/vendor-investigation/table/update-investigation-sheet.tsx | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/vendor-investigation/table/update-investigation-sheet.tsx b/lib/vendor-investigation/table/update-investigation-sheet.tsx index 29f0fa92..fbaf000e 100644 --- a/lib/vendor-investigation/table/update-investigation-sheet.tsx +++ b/lib/vendor-investigation/table/update-investigation-sheet.tsx @@ -125,7 +125,7 @@ export function UpdateVendorInvestigationSheet({ investigationStatus: investigation?.investigationStatus ?? "PLANNED", evaluationType: investigation?.evaluationType ?? undefined, investigationAddress: investigation?.investigationAddress ?? "", - investigationMethod: investigation?.investigationMethod ?? "", + investigationMethod: investigation?.investigationMethod ?? undefined, forecastedAt: investigation?.forecastedAt ?? undefined, requestedAt: investigation?.requestedAt ?? undefined, confirmedAt: investigation?.confirmedAt ?? undefined, @@ -145,7 +145,7 @@ export function UpdateVendorInvestigationSheet({ investigationStatus: investigation.investigationStatus || "PLANNED", evaluationType: investigation.evaluationType ?? undefined, investigationAddress: investigation.investigationAddress ?? "", - investigationMethod: investigation.investigationMethod ?? "", + investigationMethod: investigation.investigationMethod ?? undefined, forecastedAt: investigation.forecastedAt ?? undefined, requestedAt: investigation.requestedAt ?? undefined, confirmedAt: investigation.confirmedAt ?? undefined, @@ -573,8 +573,10 @@ export function UpdateVendorInvestigationSheet({ </SelectTrigger> <SelectContent> <SelectGroup> - <SelectItem value="SITE_AUDIT">실사의뢰평가</SelectItem> - <SelectItem value="QM_SELF_AUDIT">QM자체평가</SelectItem> + <SelectItem value="PURCHASE_SELF_EVAL">구매자체평가</SelectItem> + <SelectItem value="DOCUMENT_EVAL">서류평가</SelectItem> + <SelectItem value="PRODUCT_INSPECTION">제품검사평가</SelectItem> + <SelectItem value="SITE_VISIT_EVAL">방문실사평가</SelectItem> </SelectGroup> </SelectContent> </Select> |
