diff options
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', + } + }, ]; |
