|
|
@@ -13,6 +13,7 @@ import java.util.UUID;
|
|
|
|
|
|
import javax.mail.MessagingException;
|
|
|
|
|
|
+import com.alibaba.fastjson.JSON;
|
|
|
import com.goafanti.admin.bo.AdminListBo;
|
|
|
import com.goafanti.admin.service.DepartmentService;
|
|
|
import com.goafanti.common.bo.*;
|
|
|
@@ -1085,7 +1086,8 @@ public class OrderProjectServiceImpl extends BaseMybatisDao<TOrderTaskMapper> im
|
|
|
if(in.getOrderNo()!=null) map.put("orderNo", in.getOrderNo());
|
|
|
if(in.getUserName()!=null) map.put("userName", in.getUserName());
|
|
|
if(in.getDeps()!=null&&!in.getDeps().isEmpty()){
|
|
|
- map.put("deps", in.getDeps());
|
|
|
+ List<String> ls=JSON.parseArray(in.getDeps(),String.class);
|
|
|
+ map.put("deps", ls);
|
|
|
}
|
|
|
if(in.getContractNo()!=null) map.put("contractNo", in.getContractNo());
|
|
|
if(in.getSalesmanId()!=null) map.put("salesmanId", in.getSalesmanId());
|