|
@@ -339,7 +339,7 @@ public class TestController extends BaseController {
|
|
|
if (workId.equalsIgnoreCase("all")){
|
|
|
List<WorkEntity> all = workService.findAll();
|
|
|
for (WorkEntity workEntity : all) {
|
|
|
- if (workEntity.getStatus()==1){
|
|
|
+ if (workEntity.getStatus()==1&&workEntity.getId().startsWith("WK")){
|
|
|
workService.fixSomeData2(workEntity.getId(),active);
|
|
|
}
|
|
|
|