Commit 1162a630 authored by 刘林's avatar 刘林

fix(jyjc):车用气瓶历史登记去除"容3T"判断

parent 8ce1438e
...@@ -3257,7 +3257,7 @@ public class IdxBizJgRegisterInfoServiceImpl extends BaseService<IdxBizJgRegiste ...@@ -3257,7 +3257,7 @@ public class IdxBizJgRegisterInfoServiceImpl extends BaseService<IdxBizJgRegiste
String prefix = useRegistrationCode.substring(0, 3); String prefix = useRegistrationCode.substring(0, 3);
// 检查regType是否为Cylinder,如果是,才执行"瓶31" 和 "瓶32" 的条件判断 // 检查regType是否为Cylinder,如果是,才执行"瓶31" 和 "瓶32" 的条件判断
if (!"cylinder".equals(regType) || Stream.of("瓶31", "瓶32").noneMatch(prefix::equals)) { if (!"cylinder".equals(regType) || Stream.of("瓶31", "瓶32", "容3T").noneMatch(prefix::equals)) {
if (currentSequenceStr != null) { if (currentSequenceStr != null) {
try { try {
if (Character.isLetter(extractedValue.charAt(0))) { if (Character.isLetter(extractedValue.charAt(0))) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment