diff options
| author | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-24 11:06:32 +0000 |
|---|---|---|
| committer | dujinkim <dujin.kim@dtsolution.co.kr> | 2025-07-24 11:06:32 +0000 |
| commit | 1dc24d48e52f2e490f5603ceb02842586ecae533 (patch) | |
| tree | 8fca2c5b5b52cc10557b5ba6e55b937ae3c57cf6 /config/dashboard-table.ts | |
| parent | ed0d6fcc98f671280c2ccde797b50693da88152e (diff) | |
(대표님) 정기평가 피드백 반영, 설계 피드백 반영, (최겸) 기술영업 피드백 반영
Diffstat (limited to 'config/dashboard-table.ts')
| -rw-r--r-- | config/dashboard-table.ts | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/config/dashboard-table.ts b/config/dashboard-table.ts index 414ba24a..e1856aab 100644 --- a/config/dashboard-table.ts +++ b/config/dashboard-table.ts @@ -79,6 +79,25 @@ export const DASHBOARD_TABLES: TableConfig[] = [ // assignee: 'confirmed_by' } }, + + // 기술영업 벤더 견적 + { + tableName: 'tech_sales_vendor_quotations', + displayName: '기술영업 RFQ Quotations', + domain: 'sales', + statusField: 'status', + statusMapping: { + 'Assigned': 'pending', + 'Draft': 'in_progress', + 'Submitted': 'completed', + 'Accepted': 'completed', + 'Rejected': 'completed', + }, + userFields: { + creator: 'created_by', + updater: 'updated_by', + } + }, ]; |
