diff options
Diffstat (limited to 'config')
| -rw-r--r-- | config/poColumnsConfig.ts | 8 | ||||
| -rw-r--r-- | config/vendorTbeColumnsConfig.ts | 3 |
2 files changed, 10 insertions, 1 deletions
diff --git a/config/poColumnsConfig.ts b/config/poColumnsConfig.ts index 6466f3e1..606c6ab4 100644 --- a/config/poColumnsConfig.ts +++ b/config/poColumnsConfig.ts @@ -52,6 +52,14 @@ export const poColumnsConfig: PoColumnConfig[] = [ type: "text", }, { + id: "esignStatus", // db에 없는 가상 컬럼 + label: "E-Sign Status", + excelHeader: "E-Sign Status", + group: "Basic Info", + type: "custom", // 커스텀 렌더링이 필요함을 나타냄 + customType: "esignStatus", // 구분이 필요한 경우 추가 필드 + }, + { id: "startDate", label: "Start Date", excelHeader: "Start Date", diff --git a/config/vendorTbeColumnsConfig.ts b/config/vendorTbeColumnsConfig.ts index 30a876da..1299cebe 100644 --- a/config/vendorTbeColumnsConfig.ts +++ b/config/vendorTbeColumnsConfig.ts @@ -72,7 +72,7 @@ export interface TbeVendorFields { website: string | null vendorStatus: string | null - vendorResponseId: number + vendorResponseId: number | null rfqVendorStatus: string | null rfqVendorUpdated: Date | null @@ -206,6 +206,7 @@ export const tbeVendorColumnsConfig: VendorTbeColumnConfig[] = [ label: "Project Name", excelHeader: "Project Name", }, + { id: "rfqCode", label: "RFQ Code", |
