|
@@ -39,7 +39,7 @@ public class DUT0597 extends QCCatalogue {
|
|
|
}
|
|
|
Date rollOutRecordDate = StringUtil.parseDateTime(rollOutRecordDateStr);
|
|
|
Date recordDate = StringUtil.parseDateTime(recordDateStr);
|
|
|
- if (rollOutRecordDate != null && recordDate != null && !rollOutRecordDate.before(recordDate)) {
|
|
|
+ if (rollOutRecordDate != null && recordDate != null && rollOutRecordDate.before(recordDate)) {
|
|
|
status.set("-1");
|
|
|
return;
|
|
|
}
|