Browse Source

no message

zhangchuanxing 5 days ago
parent
commit
8fba05184c
1 changed files with 2 additions and 2 deletions
  1. 2 2
      controllers/cygx/rai_serve.go

+ 2 - 2
controllers/cygx/rai_serve.go

@@ -526,7 +526,7 @@ func (this *RaiServeCoAntroller) List() {
 			item.LastMonthQoq = "0%" //上月环比=(上月服务量-上上月服务量)/上上月服务量,当数值≤-20%时,用红色字显示
 		} else {
 			item.LastMonthQoq = fmt.Sprint(utils.SubFloatToString((item.LastMonthAmount-item.TwoMonthAmount)/item.TwoMonthAmount*100, 2)) + "%"
-			if (item.LastMonthAmount-item.TwoMonthAmount)/item.TwoMonthAmount <= 0.2 {
+			if (item.LastMonthAmount-item.TwoMonthAmount)/item.TwoMonthAmount <= -0.2 {
 				item.LastMonthQoqIsRed = true
 			}
 		}
@@ -737,7 +737,7 @@ func RaiServeListExport(this *RaiServeCoAntroller, resp *cygx.CygxRaiServeCompan
 			cellMonthQoQStr = "0%"
 		} else {
 			cellMonthQoQStr = fmt.Sprint(utils.SubFloatToString((mapMonthAmount[fmt.Sprint("CID_", v.CompanyId, "MONTH_", 1)]-mapMonthAmount[fmt.Sprint("CID_", v.CompanyId, "MONTH_", 2)])/mapMonthAmount[fmt.Sprint("CID_", v.CompanyId, "MONTH_", 2)]*100, 2)) + "%"
-			if (mapMonthAmount[fmt.Sprint("CID_", v.CompanyId, "MONTH_", 1)]-mapMonthAmount[fmt.Sprint("CID_", v.CompanyId, "MONTH_", 2)])/mapMonthAmount[fmt.Sprint("CID_", v.CompanyId, "MONTH_", 2)] <= 0.2 {
+			if (mapMonthAmount[fmt.Sprint("CID_", v.CompanyId, "MONTH_", 1)]-mapMonthAmount[fmt.Sprint("CID_", v.CompanyId, "MONTH_", 2)])/mapMonthAmount[fmt.Sprint("CID_", v.CompanyId, "MONTH_", 2)] <= -0.2 {
 				cellMonthQoQData.SetStyle(redStyle) //小于0.2做标红处理
 			} else {
 				cellMonthQoQData.SetStyle(style)