作者 陈志颖

fix:分红订单状态调整

... ... @@ -749,8 +749,8 @@ func (dividendsEstimateService *DividendsEstimateService) ConfirmDividendsIncent
} else {
// 获取产品ID
orderGoodSavedIds := make([]int64, 0)
for _, dividendsEstimateSaved := range dividendsEstimatesSaved {
orderGoodSavedIds = append(orderGoodSavedIds, dividendsEstimateSaved.OrderGoodId)
for _, dividendsEstimate := range dividendsEstimates {
orderGoodSavedIds = append(orderGoodSavedIds, dividendsEstimate.OrderGoodId)
}
// 获取订单产品
... ...