Browse Source

no message

zhangchuanxing 4 months ago
parent
commit
bced5615d5
1 changed files with 6 additions and 1 deletions
  1. 6 1
      controllers/statistic_company_merge.go

+ 6 - 1
controllers/statistic_company_merge.go

@@ -2106,6 +2106,8 @@ func (this *StatisticCompanyMergerController) CompanyContractPercentageListExpor
 			if pidIndex == 0 {
 				cellG := rowTitle.AddCell()
 				cellG.Value = "不续约归因"
+				cellH := rowTitle.AddCell()
+				cellH.Value = "详细说明"
 			}
 
 			for _, item := range listDate {
@@ -2126,7 +2128,10 @@ func (this *StatisticCompanyMergerController) CompanyContractPercentageListExpor
 				cellFData.Value = fmt.Sprint(item.Money)
 				if pidIndex == 0 {
 					cellGData := row.AddCell()
-					cellGData.Value = item.Content
+					cellGData.Value = item.AscribeContent
+
+					cellHData := row.AddCell()
+					cellHData.Value = item.Content
 				}
 			}
 		}