作者 yangfu

分红比例修改

@@ -367,6 +367,10 @@ func (ptr *CooperationStatisticsService) GetContractDividends(queryOptions map[s @@ -367,6 +367,10 @@ func (ptr *CooperationStatisticsService) GetContractDividends(queryOptions map[s
367 if a.DividendsPercentage > 0 { 367 if a.DividendsPercentage > 0 {
368 item["dividendsRatio"] = a.DividendsPercentage 368 item["dividendsRatio"] = a.DividendsPercentage
369 } 369 }
  370 + // 金额激励默认分红比例百分百
  371 + if a.DividendsType == 3 {
  372 + item["dividendsRatio"] = 100
  373 + }
370 dividends = append(dividends, item) 374 dividends = append(dividends, item)
371 } 375 }
372 res["dividends"] = dividends 376 res["dividends"] = dividends