|
@@ -60,7 +60,6 @@ public class LisDockService {
|
|
|
if (null == customerInfo) {
|
|
|
return ResultVoUtil.fail(ExceptionEnum.NULL_POINTER, "未查询到此条码对应的身份信息。");
|
|
|
}
|
|
|
-
|
|
|
Map<String, Object> map = new HashMap<>();
|
|
|
map.put("customerInfo", customerInfo);
|
|
|
String tjNo = dao.selectTjNo(customerInfo.getString("idCard"));
|
|
@@ -201,7 +200,7 @@ public class LisDockService {
|
|
|
customerInfo.put("name", data.getString("name"));
|
|
|
customerInfo.put("sex", data.getString("sex"));
|
|
|
customerInfo.put("age", data.getString("age"));
|
|
|
- customerInfo.put("idCard", data.getString("idCard"));
|
|
|
+ customerInfo.put("idCard", data.getString("idCard").toUpperCase());
|
|
|
return customerInfo;
|
|
|
}
|
|
|
return null;
|