This commit is contained in:
2024-02-01 17:03:41 +08:00
parent c002bced53
commit d90498520d

View File

@@ -595,8 +595,8 @@ public abstract class AbstractProgramLogic implements InitializingBean {
protected void vinStatusUnlocked(String vinCode) {
try {
MemberPlateNumberRelation plateInfo = memberPlateNumberRelationService.getMemberPlateInfoByVinCode(vinCode);
if (plateInfo != null && (StringUtils.equals(plateInfo.getVinStatus(), "2"))) {
plateInfo.setVinStatus("1");
if (plateInfo != null) {
plateInfo.setVinStatus(Constants.ONE);
memberPlateNumberRelationService.updateMemberPlateNumberRelation(plateInfo);
}
} catch (Exception e) {