|
@@ -0,0 +1,96 @@
|
|
|
+package com.ruoyi.web.controller.warewms.ams;
|
|
|
+
|
|
|
+import com.ruoyi.ams.config.service.ILotattConfigService;
|
|
|
+import com.ruoyi.ams.inv.domain.vo.InvLotLocIdLotattVO;
|
|
|
+import com.ruoyi.ams.inv.service.IInvLotLocIdService;
|
|
|
+import com.ruoyi.ams.locationView.domain.form.LocationViewForm;
|
|
|
+import com.ruoyi.ams.locationView.domain.vo.LocationViewVO;
|
|
|
+import com.ruoyi.ams.locationView.service.LocationViewService;
|
|
|
+import com.ruoyi.base.constant.Constant;
|
|
|
+import com.ruoyi.base.domain.BaseLocationZone;
|
|
|
+import com.ruoyi.base.domain.BaseWarehouse;
|
|
|
+import com.ruoyi.base.domain.dto.BasLocationGuiExtDTO;
|
|
|
+import com.ruoyi.base.service.IBaseLocationZoneService;
|
|
|
+import com.ruoyi.common.annotation.Log;
|
|
|
+import com.ruoyi.common.core.controller.BaseController;
|
|
|
+import com.ruoyi.common.core.domain.AjaxResult;
|
|
|
+import com.ruoyi.common.enums.BusinessType;
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
|
+import org.springframework.web.bind.annotation.GetMapping;
|
|
|
+import org.springframework.web.bind.annotation.PathVariable;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
+import org.springframework.web.bind.annotation.RestController;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 库位视图
|
|
|
+ * 需要登陆
|
|
|
+ *
|
|
|
+ * Created by IntelliJ IDEA.
|
|
|
+ * User: kaka
|
|
|
+ * Date: 2022/3/22
|
|
|
+ */
|
|
|
+@RestController
|
|
|
+@RequestMapping("/ams/safe/locationView/")
|
|
|
+public class LocationViewSafeController extends BaseController {
|
|
|
+
|
|
|
+ @Autowired
|
|
|
+ private LocationViewService locationViewService;
|
|
|
+ @Autowired
|
|
|
+ private IInvLotLocIdService invLotLocIdService;
|
|
|
+ @Autowired
|
|
|
+ private ILotattConfigService lotattConfigService;
|
|
|
+ @Autowired
|
|
|
+ private IBaseLocationZoneService baseLocationZoneService;
|
|
|
+
|
|
|
+ @GetMapping(value = "/view")
|
|
|
+ public AjaxResult getInfo(LocationViewForm locationViewForm) {
|
|
|
+ LocationViewVO locationViewVO = locationViewService.locationView(locationViewForm);
|
|
|
+ return AjaxResult.success(locationViewVO);
|
|
|
+ }
|
|
|
+
|
|
|
+ @GetMapping(value = "/invView")
|
|
|
+ public AjaxResult getInvView(LocationViewForm locationViewForm) {
|
|
|
+ List<BasLocationGuiExtDTO> basLocationGuiDTOS = locationViewService.queryLocationGuiExt(locationViewForm);
|
|
|
+ return AjaxResult.success(basLocationGuiDTOS);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Log(title = "库位任务状态调整", businessType = BusinessType.UPDATE)
|
|
|
+ @GetMapping(value = "/lockLoc/{id}")
|
|
|
+ public AjaxResult lockLoc(@PathVariable("id") Long id) {
|
|
|
+ return invLotLocIdService.adjLocationStockStatus(id.toString(), Constant.WAREHOUSE_ID
|
|
|
+ , logger.getName());
|
|
|
+ }
|
|
|
+
|
|
|
+ @Log(title = "库位库存清除", businessType = BusinessType.CLEAN)
|
|
|
+ @GetMapping(value = "/clearLoc/{id}")
|
|
|
+ public AjaxResult clearLoc(@PathVariable("id") Long id) {
|
|
|
+ return invLotLocIdService.clear(id.toString(),Constant.WAREHOUSE_ID, logger.getName());
|
|
|
+ }
|
|
|
+
|
|
|
+ @Log(title = "库存有货状态调整", businessType = BusinessType.CLEAN)
|
|
|
+ @GetMapping(value = "/setIsEmpty/{id}")
|
|
|
+ public AjaxResult adjLocationIsEmpty(@PathVariable("id") Long id) {
|
|
|
+ return invLotLocIdService.adjLocationIsEmpty(id.toString(), Constant.WAREHOUSE_ID, logger.getName());
|
|
|
+ }
|
|
|
+
|
|
|
+ @GetMapping(value = "/locationLotatt/{locationId}")
|
|
|
+ public AjaxResult locationLotatt(@PathVariable("locationId") Long locationId) {
|
|
|
+ List<InvLotLocIdLotattVO> invLotLocIdLotattVOS = invLotLocIdService.selectInvLocIdLotattByLocationId(locationId);
|
|
|
+ return AjaxResult.success(invLotLocIdLotattVOS);
|
|
|
+ }
|
|
|
+
|
|
|
+ @GetMapping("/lotattConfigList")
|
|
|
+ public AjaxResult lotattConfigList() {
|
|
|
+ return AjaxResult.success(lotattConfigService.queryLotattConfigList());
|
|
|
+ }
|
|
|
+
|
|
|
+ @GetMapping("/queryZoneDict")
|
|
|
+ public AjaxResult queryZoneDict()
|
|
|
+ {
|
|
|
+ BaseLocationZone query = new BaseLocationZone();
|
|
|
+ query.setStatus("0");
|
|
|
+ return AjaxResult.success(baseLocationZoneService.selectBaseLocationZoneList(query));
|
|
|
+ }
|
|
|
+}
|