作者 yangfu

分红比例修改

... ... @@ -367,8 +367,8 @@ func (ptr *CooperationStatisticsService) GetContractDividends(queryOptions map[s
if a.DividendsPercentage > 0 {
item["dividendsRatio"] = a.DividendsPercentage
}
// 金额激励默认分红比例百分百
if a.DividendsType == 3 {
// 金额激励承接人分红比例百分百,业务员 推荐人按设定的比例
if a.DividendsType == 3 && a.DividendsPercentage == 0 {
item["dividendsRatio"] = 100
}
dividends = append(dividends, item)
... ...