|
@@ -370,14 +370,14 @@ public class WMSController extends BaseRESTfulController {
|
|
|
@ApiImplicitParams({
|
|
|
@ApiImplicitParam(name = "apiId", value = "", required = false, dataType = "BigDecimal"),
|
|
|
})
|
|
|
- public RESTfulResult selectScanResultByIboundResultId( Map<String, Object> mapValue,
|
|
|
+ public RESTfulResult selectScanResultByIboundResultId(@RequestBody(required = false) Map<String, Object> mapValue,
|
|
|
Integer apiId,
|
|
|
Integer pageNum,
|
|
|
Integer pageSize,
|
|
|
- Integer inboundId,
|
|
|
- String con) {
|
|
|
+ Integer inboundId
|
|
|
+ ) {
|
|
|
|
|
|
- return wmsFeign.selectScanResultByIboundResultId(mapValue==null?new HashMap<>():mapValue, apiId,pageNum, pageSize,inboundId,con);
|
|
|
+ return wmsFeign.selectScanResultByIboundResultId(mapValue==null?new HashMap<>():mapValue, apiId,pageNum, pageSize,inboundId);
|
|
|
}
|
|
|
//根据物资信息获取原来垛位信息
|
|
|
@PostMapping("/selectInfoByMaterialCode")
|