demand: 运单录入bug修复

This commit is contained in:
aike 2026-04-11 09:21:42 +08:00
parent ea77d405ce
commit fc3f837efa

View File

@ -1293,10 +1293,11 @@ public class EmisWaybillServiceImpl extends EmisBaseService implements IEmisWayb
if(wb.getWaybillOther()==null){
return;
}
String support = wb.getWaybillOther().getSalesSupport().trim();
String support = wb.getWaybillOther().getSalesSupport();
if (StringUtils.isNotBlank(support)) {
String supportName = support.trim();
SysUser supportCond = new SysUser();
supportCond.setEmpName(support);
supportCond.setEmpName(supportName);
supportCond.setBlOpen("1");
List<SysUser> supportUsers = sysUserMapper.selectUserList(supportCond);
if (CollectionUtil.isEmpty(supportUsers)) {