获取调拨单null修改
This commit is contained in:
parent
fa4c26dc10
commit
69c1b163dd
|
|
@ -1,6 +1,7 @@
|
|||
package com.nflg.wms.admin.service;
|
||||
|
||||
import cn.hutool.core.collection.CollectionUtil;
|
||||
import cn.hutool.core.util.StrUtil;
|
||||
import com.nflg.wms.common.pojo.dto.SAPSyncFromDTO;
|
||||
import com.nflg.wms.repository.service.IWmsStorageService;
|
||||
import jakarta.annotation.Resource;
|
||||
|
|
|
|||
|
|
@ -103,7 +103,11 @@ public class WmsStorageServiceImpl extends ServiceImpl<WmsStorageMapper, WmsStor
|
|||
|
||||
@Override
|
||||
public String getBinNo(String materialNo, String factoryNo, String warehouseNo) {
|
||||
return baseMapper.getBinNo(materialNo,factoryNo,warehouseNo);
|
||||
if (baseMapper.getBinNo(materialNo,factoryNo,warehouseNo)==null){
|
||||
return "";
|
||||
}else {
|
||||
return baseMapper.getBinNo(materialNo, factoryNo, warehouseNo);
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
|
|||
Loading…
Reference in New Issue