demand: 根据批次号实时扫描漏组批次接口扫描过滤组批次完成的运单。 分批运单扫描bug修复

committer: heyu
This commit is contained in:
aike 2025-08-22 15:20:48 +08:00
parent d4eb88264f
commit 5d08c18526

View File

@ -4729,7 +4729,7 @@ public class EmisBaseService {
boolean hasWaybillBatchStatus2 = false;
if (batch.getBatchDtlList() != null && !batch.getBatchDtlList().isEmpty()) {
for (EmisTmsSiteBatchDtl dtl : batch.getBatchDtlList()) {
if ("2".equals(dtl.getWaybillBatchStatus())) {
if ("2".equals(dtl.getWaybillBatchStatus())||"1".equals(dtl.getWaybillBatchStatus())) {
hasWaybillBatchStatus2 = true;
break;
}