demand: 运单录入bug修复
This commit is contained in:
parent
ea77d405ce
commit
fc3f837efa
@ -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)) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user