|
@@ -1,7 +1,12 @@
|
|
package com.ruoyi.web.controller.warewms.ams;
|
|
package com.ruoyi.web.controller.warewms.ams;
|
|
|
|
|
|
|
|
+import com.ruoyi.ams.config.domain.dto.LotattDTO;
|
|
import com.ruoyi.ams.config.service.ILotattConfigService;
|
|
import com.ruoyi.ams.config.service.ILotattConfigService;
|
|
|
|
+import com.ruoyi.ams.inv.domain.InvLotAtt;
|
|
|
|
+import com.ruoyi.ams.inv.domain.InvLotLocId;
|
|
import com.ruoyi.ams.inv.domain.vo.InvLotLocIdLotattVO;
|
|
import com.ruoyi.ams.inv.domain.vo.InvLotLocIdLotattVO;
|
|
|
|
+import com.ruoyi.ams.inv.mapper.InvLotAttMapper;
|
|
|
|
+import com.ruoyi.ams.inv.mapper.InvLotLocIdMapper;
|
|
import com.ruoyi.ams.inv.service.IInvLotLocIdService;
|
|
import com.ruoyi.ams.inv.service.IInvLotLocIdService;
|
|
import com.ruoyi.ams.locationView.domain.form.LocationViewForm;
|
|
import com.ruoyi.ams.locationView.domain.form.LocationViewForm;
|
|
import com.ruoyi.ams.locationView.domain.vo.LocationViewVO;
|
|
import com.ruoyi.ams.locationView.domain.vo.LocationViewVO;
|
|
@@ -11,16 +16,18 @@ import com.ruoyi.base.domain.BaseLocationZone;
|
|
import com.ruoyi.base.domain.BaseWarehouse;
|
|
import com.ruoyi.base.domain.BaseWarehouse;
|
|
import com.ruoyi.base.domain.dto.BasLocationGuiExtDTO;
|
|
import com.ruoyi.base.domain.dto.BasLocationGuiExtDTO;
|
|
import com.ruoyi.base.service.IBaseLocationZoneService;
|
|
import com.ruoyi.base.service.IBaseLocationZoneService;
|
|
|
|
+import com.ruoyi.base.utils.IdSequenceUtils;
|
|
import com.ruoyi.common.annotation.Log;
|
|
import com.ruoyi.common.annotation.Log;
|
|
import com.ruoyi.common.core.controller.BaseController;
|
|
import com.ruoyi.common.core.controller.BaseController;
|
|
import com.ruoyi.common.core.domain.AjaxResult;
|
|
import com.ruoyi.common.core.domain.AjaxResult;
|
|
import com.ruoyi.common.enums.BusinessType;
|
|
import com.ruoyi.common.enums.BusinessType;
|
|
|
|
+import com.ruoyi.common.utils.DateUtils;
|
|
|
|
+import org.springframework.beans.BeanUtils;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
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 org.springframework.web.bind.annotation.*;
|
|
|
|
|
|
|
|
+import java.math.BigDecimal;
|
|
|
|
+import java.util.Date;
|
|
import java.util.List;
|
|
import java.util.List;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -43,6 +50,12 @@ public class LocationViewSafeController extends BaseController {
|
|
private ILotattConfigService lotattConfigService;
|
|
private ILotattConfigService lotattConfigService;
|
|
@Autowired
|
|
@Autowired
|
|
private IBaseLocationZoneService baseLocationZoneService;
|
|
private IBaseLocationZoneService baseLocationZoneService;
|
|
|
|
+ @Autowired
|
|
|
|
+ private IdSequenceUtils idSequenceUtils;
|
|
|
|
+ @Autowired
|
|
|
|
+ private InvLotLocIdMapper invLotLocIdMapper;
|
|
|
|
+ @Autowired
|
|
|
|
+ private InvLotAttMapper invLotAttMapper;
|
|
|
|
|
|
@GetMapping(value = "/view")
|
|
@GetMapping(value = "/view")
|
|
public AjaxResult getInfo(LocationViewForm locationViewForm) {
|
|
public AjaxResult getInfo(LocationViewForm locationViewForm) {
|
|
@@ -75,6 +88,36 @@ public class LocationViewSafeController extends BaseController {
|
|
return invLotLocIdService.adjLocationIsEmpty(id.toString(), Constant.WAREHOUSE_ID, logger.getName());
|
|
return invLotLocIdService.adjLocationIsEmpty(id.toString(), Constant.WAREHOUSE_ID, logger.getName());
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @Log(title = "设置库存信息为空托", businessType = BusinessType.CLEAN)
|
|
|
|
+ @PostMapping(value = "/setIsEmptyPallent/{id}")
|
|
|
|
+ public AjaxResult setIsEmptyPallent(@PathVariable("id") Long id) {
|
|
|
|
+ // 批次表
|
|
|
|
+ String lotnum = idSequenceUtils.generateId("LOTNUMBER");
|
|
|
|
+ LotattDTO lotattDTO = new LotattDTO();
|
|
|
|
+ InvLotAtt invLotAtt = new InvLotAtt();
|
|
|
|
+ BeanUtils.copyProperties(lotattDTO, invLotAtt);
|
|
|
|
+ invLotAtt.setCustomerId("default");
|
|
|
|
+ invLotAtt.setSku("EMPTY_TRAY");
|
|
|
|
+ invLotAtt.setLotnum(lotnum);
|
|
|
|
+ invLotAtt.setCreateTime(DateUtils.getNowDate());
|
|
|
|
+ invLotAttMapper.insertInvLotAtt(invLotAtt);
|
|
|
|
+ // 库存表
|
|
|
|
+ InvLotLocId invLotLocId = new InvLotLocId();
|
|
|
|
+ invLotLocId.setLotnum(lotnum);
|
|
|
|
+ invLotLocId.setLocationId(id.toString());
|
|
|
|
+ invLotLocId.setSku("EMPTY_TRAY");
|
|
|
|
+ invLotLocId.setCustomerId("default");
|
|
|
|
+ invLotLocId.setQty(new BigDecimal("1"));
|
|
|
|
+// invLotLocId.setQtyEach(new BigDecimal(qty));
|
|
|
|
+// invLotLocId.setQtyallocated(BigDecimal.ZERO);
|
|
|
|
+// invLotLocId.setQtyallocatedEach(BigDecimal.ZERO);
|
|
|
|
+// invLotLocId.setQtypa(BigDecimal.ZERO);
|
|
|
|
+// invLotLocId.setQtyrpin(BigDecimal.ZERO);
|
|
|
|
+ invLotLocId.setCreateTime(new Date());
|
|
|
|
+ invLotLocIdMapper.insertInvLotLocId(invLotLocId);
|
|
|
|
+ return AjaxResult.success();
|
|
|
|
+ }
|
|
|
|
+
|
|
@GetMapping(value = "/locationLotatt/{locationId}")
|
|
@GetMapping(value = "/locationLotatt/{locationId}")
|
|
public AjaxResult locationLotatt(@PathVariable("locationId") Long locationId) {
|
|
public AjaxResult locationLotatt(@PathVariable("locationId") Long locationId) {
|
|
List<InvLotLocIdLotattVO> invLotLocIdLotattVOS = invLotLocIdService.selectInvLocIdLotattByLocationId(locationId);
|
|
List<InvLotLocIdLotattVO> invLotLocIdLotattVOS = invLotLocIdService.selectInvLocIdLotattByLocationId(locationId);
|