|
|
|
@ -14,6 +14,8 @@ import com.hai.model.HighOrderData; |
|
|
|
|
import com.hai.model.HighOrderModel; |
|
|
|
|
import com.hai.service.*; |
|
|
|
|
import org.apache.commons.collections4.MapUtils; |
|
|
|
|
import org.apache.commons.lang3.StringUtils; |
|
|
|
|
import org.apache.poi.util.StringUtil; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
|
import org.springframework.transaction.annotation.Propagation; |
|
|
|
|
import org.springframework.transaction.annotation.Transactional; |
|
|
|
@ -327,7 +329,7 @@ public class HighOrderServiceImpl implements HighOrderService { |
|
|
|
|
criteria.andMemIdEqualTo(MapUtils.getLong(map, "memId")); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
if (MapUtils.getString(map, "status") != null) { |
|
|
|
|
if (StringUtils.isNotBlank(MapUtils.getString(map, "status"))) { |
|
|
|
|
String[] statuses = MapUtils.getString(map, "status").split(","); |
|
|
|
|
List<Integer> list = new ArrayList<>(); |
|
|
|
|
for (String status : statuses) { |
|
|
|
|