|
@@ -1,9 +1,14 @@
|
|
|
package com.ruoyi.nieyan.controller.pda;
|
|
|
|
|
|
import com.ruoyi.ams.config.domain.dto.AgvCallItemDTO;
|
|
|
+import com.ruoyi.ams.inv.domain.form.InvLotLocIdMoveForm;
|
|
|
+import com.ruoyi.ams.inv.service.IInvLotLocIdService;
|
|
|
import com.ruoyi.ams.nieyan.domain.form.AgvCallForm;
|
|
|
import com.ruoyi.ams.nieyan.service.AgvCallProxyService;
|
|
|
+import com.ruoyi.base.constant.Constant;
|
|
|
+import com.ruoyi.common.annotation.Log;
|
|
|
import com.ruoyi.common.core.domain.AjaxResult;
|
|
|
+import com.ruoyi.common.enums.BusinessType;
|
|
|
import com.ruoyi.common.utils.StringUtils;
|
|
|
import io.swagger.annotations.Api;
|
|
|
import io.swagger.annotations.ApiOperation;
|
|
@@ -31,6 +36,8 @@ public class PdaAgvCallController {
|
|
|
|
|
|
@Autowired
|
|
|
private AgvCallProxyService agvCallProxyService;
|
|
|
+ @Autowired
|
|
|
+ private IInvLotLocIdService invLotLocIdService;
|
|
|
|
|
|
/**
|
|
|
* 补空托(空托暂存区)
|
|
@@ -287,4 +294,28 @@ public class PdaAgvCallController {
|
|
|
return agvCallProxyService.productsOutboundLHN(locationFrom, locationTo, createUser);
|
|
|
}
|
|
|
|
|
|
+ /**
|
|
|
+ * 辅料搬运
|
|
|
+ * 出库接驳位
|
|
|
+ *
|
|
|
+ * @param invLotLocIdMoveForm
|
|
|
+ */
|
|
|
+ @ApiOperation("辅料搬运")
|
|
|
+ @PostMapping("accessoriesMove")
|
|
|
+ public AjaxResult accessoriesMove(@RequestBody InvLotLocIdMoveForm invLotLocIdMoveForm) {
|
|
|
+ invLotLocIdMoveForm.setUpdateBy(StringUtils.isEmpty(invLotLocIdMoveForm.getUpdateBy()) ?
|
|
|
+ "pda" : invLotLocIdMoveForm.getUpdateBy());
|
|
|
+ invLotLocIdMoveForm.setWarehouseId(Constant.WAREHOUSE_ID);
|
|
|
+
|
|
|
+ if (StringUtils.isEmpty(invLotLocIdMoveForm.getLocationFrom())) {
|
|
|
+ return AjaxResult.error("起始库位不能为空");
|
|
|
+ }
|
|
|
+
|
|
|
+ if (StringUtils.isEmpty(invLotLocIdMoveForm.getLocationTo())) {
|
|
|
+ return AjaxResult.error("目标库位不能为空");
|
|
|
+ }
|
|
|
+
|
|
|
+ return invLotLocIdService.accessoriesMove(invLotLocIdMoveForm);
|
|
|
+ }
|
|
|
+
|
|
|
}
|