导出添加字段“业绩归属地”
parent
8b2838c086
commit
d95d72de2f
|
|
@ -0,0 +1 @@
|
|||
|
||||
|
|
@ -0,0 +1 @@
|
|||
|
||||
|
|
@ -106,6 +106,7 @@ type OpportunityExportFieldKey =
|
|||
| "code"
|
||||
| "name"
|
||||
| "projectLocation"
|
||||
| "projectOwnershipLocation"
|
||||
| "client"
|
||||
| "type"
|
||||
| "operatorName"
|
||||
|
|
@ -295,6 +296,7 @@ const opportunityExportColumns: OpportunityExportColumn[] = [
|
|||
{ key: "code", label: "项目编码", value: (item) => normalizeOpportunityExportText(item.code) },
|
||||
{ key: "name", label: "项目名称", value: (item) => normalizeOpportunityExportText(item.name) },
|
||||
{ key: "projectLocation", label: "项目地", value: (item) => normalizeOpportunityExportText(item.projectLocation) },
|
||||
{ key: "projectOwnershipLocation", label: "业绩归属地", value: (item) => normalizeOpportunityExportText(item.projectOwnershipLocationName || item.projectOwnershipLocation) },
|
||||
{ key: "client", label: "最终用户", value: (item) => normalizeOpportunityExportText(item.client) },
|
||||
{ key: "type", label: "建设类型", value: (item) => normalizeOpportunityExportText(item.type || "新建") },
|
||||
{ key: "operatorName", label: "运作方", value: (item) => normalizeOpportunityExportText(item.operatorName) },
|
||||
|
|
|
|||
Loading…
Reference in New Issue