|
@@ -11,8 +11,10 @@ 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;
|
|
@@ -54,20 +56,22 @@ public class LocationViewSafeController extends BaseController {
|
|
|
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());
|
|
|
}
|
|
|
|