|
@@ -650,5 +650,69 @@ public class WMSController extends BaseRESTfulController {
|
|
|
return wmsFeign.selectScanResultByIboundResultId(mapValue, apiId, pageNum, pageSize);
|
|
|
}
|
|
|
|
|
|
+ @PostMapping("/getIvboundMakeResultList")
|
|
|
+ @ApiOperation(value = "展示倒库列表")
|
|
|
+ @ApiImplicitParams({
|
|
|
+ @ApiImplicitParam(name = "apiId", value = "372", required = false, dataType = "BigDecimal"),
|
|
|
+ })
|
|
|
+ public RESTfulResult getIvboundMakeResultList(Map<String, Object> mapValue,
|
|
|
+ Integer pageNum,
|
|
|
+ Integer pageSize,
|
|
|
+ Integer apiId,
|
|
|
+ String con) {
|
|
|
+ if (mapValue == null) {
|
|
|
+ mapValue = new HashMap<>();
|
|
|
+ }
|
|
|
+ return wmsFeign.getIvboundMakeResultList(mapValue, pageNum, pageSize, apiId, con);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 新增倒库作业
|
|
|
+ * @param mapValue
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @PostMapping(value = "/addIvboundMakeResult")
|
|
|
+ public Map<String,Object> addIvboundMakeResult(@RequestBody Map<String,Object> mapValue) {
|
|
|
+ return wmsFeign.addIvboundMakeResult(mapValue);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 逻辑删除倒库作业
|
|
|
+ * @param resultId
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @PostMapping(value = "/deleteIvboundMakeResult/{resultId}")
|
|
|
+ public Map<String,Object> deleteIvboundMakeResult(@PathVariable("resultId") Integer resultId) {
|
|
|
+ return wmsFeign.deleteIvboundMakeResult(resultId);
|
|
|
+ }
|
|
|
|
|
|
+ /**
|
|
|
+ * 查询倒库作业
|
|
|
+ * @param resultId
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @PostMapping(value = "/selectIvboundMakeResult/{resultId}")
|
|
|
+ public List<Map<String,Object>> selectIvboundMakeResult(@PathVariable("resultId") Integer resultId) {
|
|
|
+ return wmsFeign.selectIvboundMakeResult(resultId);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 修改倒库作业
|
|
|
+ * @param mapValue
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @PostMapping(value = "/updateIvboundMakeResult")
|
|
|
+ public Map<String,Object> updateIvboundMakeResult(@RequestBody Map<String,Object> mapValue) {
|
|
|
+ return wmsFeign.updateIvboundMakeResult(mapValue);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 出库(非0:成功,0:失败)
|
|
|
+ * @param resultId
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ @PostMapping(value = "/outbountResultToSuccess")
|
|
|
+ public Map<String,Object> outbountResultToSuccess(@RequestParam Integer resultId) {
|
|
|
+ return wmsFeign.outbountResultToSuccess(resultId);
|
|
|
+ }
|
|
|
}
|