summaryrefslogtreecommitdiff
path: root/types/evaluation.ts
blob: 321cb57cd5da8c0d6ff77fa47f8b46241f30d4f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
export const DEPARTMENT_CODE_LABELS = {
    ORDER_EVAL: "발주 평가 담당",
    PROCUREMENT_EVAL: "조달 평가 담당",
    QUALITY_EVAL: "품질 평가 담당",
    DESIGN_EVAL: "설계 평가 담당",
    CS_EVAL: "CS 평가 담당",
  } as const


  export const vendortypeMap = {
    EQUIPMENT: "장비재",
    BULK: "벌크",
    EQUIPMENT_BULK: "장비재/벌크"
  };


  export const divisionMap = {
    PLANT: "해양",
    SHIP: "조선"
  };


  export const domesticForeignMap = {
    DOMESTIC: "D",
    FOREIGN: "F"
  };

  export type EvaluationTargetStatus = "PENDING" | "CONFIRMED" | "EXCLUDED";
  export type Division = "PLANT" | "SHIP";
  export type MaterialType = "EQUIPMENT" | "BULK" | "EQUIPMENT_BULK";
  export type DomesticForeign = "DOMESTIC" | "FOREIGN";