|
@@ -321,6 +321,9 @@ public class WmsInboundScanResultServiceImpl implements IWmsInboundScanResultSer
|
|
|
List<WmspInboundScanResult> results=new ArrayList<>();
|
|
|
String userName=map.get("userName").toString();
|
|
|
for(Map<String,Object> temp:list){
|
|
|
+ if(temp==null || temp.get("shiftOrder")==null || temp.get("resultMaterial")==null){
|
|
|
+ throw new Exception("存在空值,终止");
|
|
|
+ }
|
|
|
//创建入库扫描实绩、并且给对象赋值
|
|
|
WmspInboundScanResult wmspInboundScanResult=new WmspInboundScanResult();
|
|
|
//设置自增主键
|