diff options
Diffstat (limited to 'config')
| -rw-r--r-- | config/dashboard-table.ts | 19 | ||||
| -rw-r--r-- | config/menuConfig.ts | 2 |
2 files changed, 20 insertions, 1 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', + } + }, ]; diff --git a/config/menuConfig.ts b/config/menuConfig.ts index c0737abe..07f748ab 100644 --- a/config/menuConfig.ts +++ b/config/menuConfig.ts @@ -248,7 +248,7 @@ export const mainNav: MenuSection[] = [ // }, { title: "자재별 협력업체 담당자 관리", - href: "/evcp/contact-possible-items", + href: "/evcp/tech-contact-possible-items", description: "기술영업 자재별 협력업체 담당자 관리", group: "공통" }, |
