summaryrefslogtreecommitdiff
path: root/lib/items-tech/table/update-items-sheet.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'lib/items-tech/table/update-items-sheet.tsx')
-rw-r--r--lib/items-tech/table/update-items-sheet.tsx7
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/items-tech/table/update-items-sheet.tsx b/lib/items-tech/table/update-items-sheet.tsx
index 16dfcb71..978e83d5 100644
--- a/lib/items-tech/table/update-items-sheet.tsx
+++ b/lib/items-tech/table/update-items-sheet.tsx
@@ -44,6 +44,7 @@ const shipbuildingWorkTypes = [
{ value: "선실", label: "선실" },
{ value: "배관", label: "배관" },
{ value: "철의", label: "철의" },
+ { value: "선체", label: "선체" },
] as const
const offshoreTopWorkTypes = [
@@ -58,6 +59,8 @@ const offshoreHullWorkTypes = [
{ value: "HE", label: "HE" },
{ value: "HH", label: "HH" },
{ value: "HM", label: "HM" },
+ { value: "HO", label: "HO" },
+ { value: "HP", label: "HP" },
{ value: "NC", label: "NC" },
] as const
@@ -65,7 +68,7 @@ const offshoreHullWorkTypes = [
type ShipbuildingItem = {
id: number
itemCode: string
- workType: "기장" | "전장" | "선실" | "배관" | "철의"
+ workType: "기장" | "전장" | "선실" | "배관" | "철의" | "선체"
shipTypes: string
itemList: string | null
}
@@ -81,7 +84,7 @@ type OffshoreTopItem = {
type OffshoreHullItem = {
id: number
itemCode: string
- workType: "HA" | "HE" | "HH" | "HM" | "NC"
+ workType: "HA" | "HE" | "HH" | "HM" | "HO" | "HP" | "NC"
itemList: string | null
subItemList: string | null
}