Browse Source

反白操作,下黑时间bug修复

shuiqilin0117
“shuiqilin” 8 months ago
parent
commit
39570d2eb5

+ 1
- 1
src/main/java/com/qtzl/alterSales/manager/service/AflBlackInfoManagerImpl.java View File

@@ -147,7 +147,7 @@ public class AflBlackInfoManagerImpl implements AflBlackInfoManager {
cardId, obuId);
if (ObjectUtil.isNotNull(aflVehicleStatusInfo)) {
//单车先下黑的,返回true,进行单车反白
if (aflVehicleStatusInfo.getCreateTime().isBefore(blackInfo.getUpdateTime()) &&
if (aflVehicleStatusInfo.getUpdateTime().isBefore(blackInfo.getUpdateTime()) &&
aflVehicleStatusInfo.getType().equals(BlacklistOpType.IN.getCode())) {
log.info("单车先下黑的,进行单车反白,车牌号:{}", aflVehicleStatusInfo.getPlateNum());
return true;

Loading…
Cancel
Save