Commit 701803473f379b0e81e96625cbf29d1412ad5f90

Authored by liquanyu
1 parent b55d1e51a8

update code

Showing 1 changed file with 2 additions and 2 deletions

platform-operate-api/src/main/java/com/lyms/platform/operate/web/facade/LisFacade.java View file @ 7018034
... ... @@ -432,14 +432,14 @@
432 432 {
433 433 if (lis != null && reportModel != null)
434 434 {
435   - if (StringUtils.isNotEmpty(lis.getLisId()) && !lis.getLisId().equals(reportModel.getLisId()) && !lis.getTitle().equals(reportModel.getTitle()))
  435 + if (StringUtils.isNotEmpty(lis.getLisId()) && lis.getLisId().equals(reportModel.getLisId()) && lis.getTitle().equals(reportModel.getTitle()))
436 436 {
437 437 isExist = true;
438 438 break;
439 439 }
440 440 }
441 441 }
442   - if (isExist)
  442 + if (!isExist)
443 443 {
444 444 noExists.add(lis);
445 445 }