导出添加字段“业绩归属地”

main
kangwenjing 2026-07-08 13:44:58 +08:00
parent 8b2838c086
commit d95d72de2f
4 changed files with 4 additions and 0 deletions

BIN
.DS_Store vendored

Binary file not shown.

View File

@ -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) },