|
|
@@ -148,7 +148,10 @@ public class ApiPlanController {
|
|
|
.eq(AppPlan::getParentId, plan.getId())
|
|
|
.eq(AppPlan::getDeleted, 0)
|
|
|
.eq(AppPlan::getPlanStatus,1));
|
|
|
- list.add(plan);
|
|
|
+ if(ObjectUtil.equal(plan.getPlanStatus(),1)){
|
|
|
+ list.add(plan);
|
|
|
+ }
|
|
|
+
|
|
|
List<Object> newlist = new ArrayList<>(list);
|
|
|
resumptionTaskBusiness.rebuildCurrentCycleTask(newlist);
|
|
|
}
|