|
@@ -841,11 +841,15 @@ public class TimerServiceImpl implements TimerService {
|
|
|
allProjectList.forEach(e->{
|
|
|
System.out.println(e.toString());
|
|
|
int status = 1;
|
|
|
- for (int i = 0; i < noNeedResult.size(); i++) {
|
|
|
- if (e.get("textField_ltxrn8h1").equals(noNeedResult.get(i).get("code"))){
|
|
|
- status = 0;
|
|
|
- noNeedResult.remove(i);
|
|
|
- break;
|
|
|
+ if (ObjectUtil.isNotEmpty(e.get("selectField_lrn2oy4a")) && "已撤场".equals(e.get("selectField_lrn2oy4a").toString())){
|
|
|
+ status = 0;
|
|
|
+ }else {
|
|
|
+ for (int i = 0; i < noNeedResult.size(); i++) {
|
|
|
+ if (e.get("textField_ltxrn8h1").equals(noNeedResult.get(i).get("code"))){
|
|
|
+ status = 0;
|
|
|
+ noNeedResult.remove(i);
|
|
|
+ break;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
ydClient.operateData(YDParam.builder()
|