|
@@ -1,16 +1,15 @@
|
|
|
package com.ruoyi.inventory.service.impl;
|
|
|
|
|
|
-import java.util.ArrayList;
|
|
|
-import java.util.Date;
|
|
|
-import java.util.List;
|
|
|
+import java.util.*;
|
|
|
|
|
|
-import com.ruoyi.asset.domain.TbAssetInformation;
|
|
|
-import com.ruoyi.asset.domain.TbLocation;
|
|
|
+import cn.hutool.json.JSONUtil;
|
|
|
import com.ruoyi.asset.mapper.TbAssetInformationMapper;
|
|
|
import com.ruoyi.asset.mapper.TbLocationMapper;
|
|
|
import com.ruoyi.inventory.domain.TagInfo;
|
|
|
+import com.ruoyi.inventory.domain.TbInventoryDetail;
|
|
|
import com.ruoyi.inventory.domain.dto.TakeStockDTO;
|
|
|
import com.ruoyi.inventory.domain.dto.TbAssetInventoryDTO;
|
|
|
+import com.ruoyi.inventory.mapper.TbInventoryDetailMapper;
|
|
|
import com.ruoyi.utils.IDUtil;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
@@ -34,6 +33,9 @@ public class TbAssetInventoryServiceImpl implements ITbAssetInventoryService
|
|
|
private TbAssetInformationMapper informationMapper;
|
|
|
|
|
|
@Autowired
|
|
|
+ private TbInventoryDetailMapper tbInventoryDetailMapper;
|
|
|
+
|
|
|
+ @Autowired
|
|
|
private TbLocationMapper locationMapper;
|
|
|
|
|
|
/**
|
|
@@ -70,9 +72,6 @@ public class TbAssetInventoryServiceImpl implements ITbAssetInventoryService
|
|
|
public int insertTbAssetInventory(TbAssetInventory tbAssetInventory)
|
|
|
{
|
|
|
tbAssetInventory.setOrderNumber(IDUtil.getUUID1());
|
|
|
- Long id = Long.parseLong(tbAssetInventory.getInventoryLocation());
|
|
|
- TbLocation location = locationMapper.selectTbLocationById(id);
|
|
|
- tbAssetInventory.setInventoryLocation(location.getNumber());
|
|
|
return tbAssetInventoryMapper.insertTbAssetInventory(tbAssetInventory);
|
|
|
}
|
|
|
|
|
@@ -88,80 +87,33 @@ public class TbAssetInventoryServiceImpl implements ITbAssetInventoryService
|
|
|
for (TagInfo tagInfo : list){
|
|
|
epcList.add(tagInfo.getEpc());
|
|
|
}
|
|
|
+ //根据位置获取包含自身及子位置,递归
|
|
|
+ List<String> locations = getNumberWithChildren(location);
|
|
|
//获取所在位置内的资产
|
|
|
- TbAssetInformation information = new TbAssetInformation();
|
|
|
- information.setLocationNumber(location);
|
|
|
- List<TbAssetInformation> informations = informationMapper.selectTbAssetInformationList(information);
|
|
|
- //提取rfid
|
|
|
- ArrayList<String> rfidList = new ArrayList<>();
|
|
|
- for (TbAssetInformation info : informations){
|
|
|
- rfidList.add(info.getNumber());
|
|
|
- }
|
|
|
+ List<String> rfidList = informationMapper.selectNumberByLocations(locations);
|
|
|
//对比盘点
|
|
|
List<String> intersection = new ArrayList<>(rfidList);
|
|
|
intersection.retainAll(epcList);
|
|
|
- if (intersection.size()<informations.size()){
|
|
|
+ if (intersection.size()<rfidList.size()){
|
|
|
//盘亏
|
|
|
if (!orderNumber.isEmpty()){
|
|
|
- TbAssetInventory inventory = tbAssetInventoryMapper.selectTbAssetInventoryByNumber(orderNumber);
|
|
|
- if (inventory.getRecordStatus() == 1L) {
|
|
|
- inventory.setInventoryStatus(2L);
|
|
|
- inventory.setInventoryResult(2L);
|
|
|
- return updateTbAssetInventory(inventory);
|
|
|
- }else {
|
|
|
- return 0;
|
|
|
- }
|
|
|
+ return takeStock(orderNumber, intersection, 2L);
|
|
|
}else {
|
|
|
- TbAssetInventory inventory = new TbAssetInventory();
|
|
|
- inventory.setInventoryStatus(2L);
|
|
|
- inventory.setInventoryResult(2L);
|
|
|
- inventory.setRecordStatus(1L);
|
|
|
- inventory.setInventoryLocation(location);
|
|
|
- inventory.setInventoryDate(new Date());
|
|
|
- inventory.setName("线下自测");
|
|
|
- return insertTbAssetInventory(inventory);
|
|
|
+ return takeStock2(location, 2L);
|
|
|
}
|
|
|
}else if (list.size()>intersection.size()){
|
|
|
//盘盈
|
|
|
if (!orderNumber.isEmpty()){
|
|
|
- TbAssetInventory inventory = tbAssetInventoryMapper.selectTbAssetInventoryByNumber(orderNumber);
|
|
|
- if (inventory.getRecordStatus() == 1L) {
|
|
|
- inventory.setInventoryStatus(2L);
|
|
|
- inventory.setInventoryResult(1L);
|
|
|
- return updateTbAssetInventory(inventory);
|
|
|
- }else {
|
|
|
- return 0;
|
|
|
- }
|
|
|
+ return takeStock(orderNumber, epcList, 1L);
|
|
|
}else {
|
|
|
- TbAssetInventory inventory = new TbAssetInventory();
|
|
|
- inventory.setInventoryStatus(2L);
|
|
|
- inventory.setInventoryResult(1L);
|
|
|
- inventory.setRecordStatus(1L);
|
|
|
- inventory.setInventoryLocation(location);
|
|
|
- inventory.setInventoryDate(new Date());
|
|
|
- inventory.setName("线下自测");
|
|
|
- return insertTbAssetInventory(inventory);
|
|
|
+ return takeStock2(location, 1L);
|
|
|
}
|
|
|
- }else if (intersection.size()==informations.size()){
|
|
|
+ }else if (intersection.size()==rfidList.size()){
|
|
|
//正常
|
|
|
if (!orderNumber.isEmpty()){
|
|
|
- TbAssetInventory inventory = tbAssetInventoryMapper.selectTbAssetInventoryByNumber(orderNumber);
|
|
|
- if (inventory.getRecordStatus() == 1L) {
|
|
|
- inventory.setInventoryStatus(2L);
|
|
|
- inventory.setInventoryResult(3L);
|
|
|
- return updateTbAssetInventory(inventory);
|
|
|
- }else {
|
|
|
- return 0;
|
|
|
- }
|
|
|
+ return takeStock(orderNumber, epcList, 3L);
|
|
|
}else {
|
|
|
- TbAssetInventory inventory = new TbAssetInventory();
|
|
|
- inventory.setInventoryStatus(2L);
|
|
|
- inventory.setInventoryResult(3L);
|
|
|
- inventory.setRecordStatus(1L);
|
|
|
- inventory.setInventoryLocation(location);
|
|
|
- inventory.setInventoryDate(new Date());
|
|
|
- inventory.setName("线下自测");
|
|
|
- return insertTbAssetInventory(inventory);
|
|
|
+ return takeStock2(location, 3L);
|
|
|
}
|
|
|
}else {
|
|
|
return 0;
|
|
@@ -208,4 +160,59 @@ public class TbAssetInventoryServiceImpl implements ITbAssetInventoryService
|
|
|
public List<TbAssetInventoryDTO> selectTbAssetInventoryDTOList(TbAssetInventoryDTO dto) {
|
|
|
return tbAssetInventoryMapper.selectTbAssetInventoryDTOList(dto);
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 递归函数
|
|
|
+ */
|
|
|
+ public List<String> getNumberWithChildren(String number) {
|
|
|
+ Set<String> result = new HashSet<>();
|
|
|
+ Set<String> visited = new HashSet<>(); // 用于跟踪已访问过的节点
|
|
|
+
|
|
|
+ processNumberWithChildren(number, result, visited); // 调用辅助方法处理节点及其子节点
|
|
|
+
|
|
|
+ return new ArrayList<>(result);
|
|
|
+ }
|
|
|
+
|
|
|
+ private void processNumberWithChildren(String number, Set<String> result, Set<String> visited) {
|
|
|
+ if (!visited.contains(number)) { // 避免重复处理节点
|
|
|
+ visited.add(number);
|
|
|
+ List<String> children = locationMapper.selectNumberByFather(number); // 调用mapper接口方法查询直接子节点
|
|
|
+
|
|
|
+ // 递归处理每个子节点
|
|
|
+ for (String child : children) {
|
|
|
+ result.add(child);
|
|
|
+ processNumberWithChildren(child, result, visited);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private int takeStock(String orderNumber, List<String> list, Long result){
|
|
|
+ TbAssetInventory inventory = tbAssetInventoryMapper.selectTbAssetInventoryByNumber(orderNumber);
|
|
|
+ if (inventory.getRecordStatus() == 1L) {
|
|
|
+ inventory.setInventoryStatus(2L);
|
|
|
+ inventory.setInventoryResult(result);
|
|
|
+ //插入盘点明细
|
|
|
+ TbInventoryDetail detail = new TbInventoryDetail();
|
|
|
+ for (String number : list) {
|
|
|
+ detail.setOrderNumber(orderNumber);
|
|
|
+ detail.setInventoryMetadata(JSONUtil.toJsonStr(informationMapper.selectTbAssetInformationByAssetNumber(number)));
|
|
|
+ tbInventoryDetailMapper.insertTbInventoryDetail(detail);
|
|
|
+ }
|
|
|
+ return updateTbAssetInventory(inventory);
|
|
|
+ }else {
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ private int takeStock2(String location, Long result){
|
|
|
+ TbAssetInventory inventory = new TbAssetInventory();
|
|
|
+ inventory.setInventoryStatus(2L);
|
|
|
+ inventory.setInventoryResult(result);
|
|
|
+ inventory.setRecordStatus(1L);
|
|
|
+ inventory.setInventoryLocation(location);
|
|
|
+ inventory.setInventoryDate(new Date());
|
|
|
+ inventory.setName("线下自测");
|
|
|
+ return insertTbAssetInventory(inventory);
|
|
|
+ }
|
|
|
}
|