|
@@ -3,8 +3,11 @@ package com.ruoyi.inventory.service.impl;
|
|
import java.text.SimpleDateFormat;
|
|
import java.text.SimpleDateFormat;
|
|
import java.util.*;
|
|
import java.util.*;
|
|
import java.util.logging.SimpleFormatter;
|
|
import java.util.logging.SimpleFormatter;
|
|
|
|
+import java.util.stream.Collectors;
|
|
|
|
|
|
|
|
+import cn.hutool.core.collection.CollectionUtil;
|
|
import cn.hutool.json.JSONUtil;
|
|
import cn.hutool.json.JSONUtil;
|
|
|
|
+import com.ruoyi.asset.domain.TbAssetInformation;
|
|
import com.ruoyi.asset.mapper.TbAssetInformationMapper;
|
|
import com.ruoyi.asset.mapper.TbAssetInformationMapper;
|
|
import com.ruoyi.asset.mapper.TbLocationMapper;
|
|
import com.ruoyi.asset.mapper.TbLocationMapper;
|
|
import com.ruoyi.common.exception.ServiceException;
|
|
import com.ruoyi.common.exception.ServiceException;
|
|
@@ -15,6 +18,7 @@ import com.ruoyi.inventory.domain.dto.TbAssetInventoryDTO;
|
|
import com.ruoyi.inventory.mapper.TbInventoryDetailMapper;
|
|
import com.ruoyi.inventory.mapper.TbInventoryDetailMapper;
|
|
import com.ruoyi.utils.IDUtil;
|
|
import com.ruoyi.utils.IDUtil;
|
|
import com.ruoyi.utils.RecursionUtil;
|
|
import com.ruoyi.utils.RecursionUtil;
|
|
|
|
+import org.apache.commons.collections.map.HashedMap;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
import com.ruoyi.inventory.mapper.TbAssetInventoryMapper;
|
|
import com.ruoyi.inventory.mapper.TbAssetInventoryMapper;
|
|
@@ -54,6 +58,11 @@ public class TbAssetInventoryServiceImpl implements ITbAssetInventoryService
|
|
return tbAssetInventoryMapper.selectTbAssetInventoryById(id);
|
|
return tbAssetInventoryMapper.selectTbAssetInventoryById(id);
|
|
}
|
|
}
|
|
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public TbAssetInventory selectTbAssetInventoryByNum(String num) {
|
|
|
|
+ return tbAssetInventoryMapper.selectTbAssetInventoryByNumber(num);
|
|
|
|
+ }
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 查询资产盘点记录列表
|
|
* 查询资产盘点记录列表
|
|
*
|
|
*
|
|
@@ -81,47 +90,51 @@ public class TbAssetInventoryServiceImpl implements ITbAssetInventoryService
|
|
|
|
|
|
//手持机盘点
|
|
//手持机盘点
|
|
@Override
|
|
@Override
|
|
- public int addByTakeStock(TakeStockDTO dto){
|
|
|
|
- //解析实体
|
|
|
|
- List<TagInfo> list = dto.getAssetList();
|
|
|
|
- String location = dto.getInventoryLocation();
|
|
|
|
- String orderNumber = dto.getOrderNumber();
|
|
|
|
- //提取epc
|
|
|
|
- ArrayList<String> epcList = new ArrayList<>();
|
|
|
|
- for (TagInfo tagInfo : list){
|
|
|
|
- epcList.add(tagInfo.getEpc());
|
|
|
|
- }
|
|
|
|
- //根据位置获取包含自身及子位置,递归
|
|
|
|
- List<String> locations = new RecursionUtil().getNumberWithChildren(locationMapper, location);
|
|
|
|
- //获取所在位置内的资产
|
|
|
|
- List<String> rfidList = informationMapper.selectNumberByLocations(locations);
|
|
|
|
- //对比盘点
|
|
|
|
- List<String> intersection = new ArrayList<>(rfidList);
|
|
|
|
- intersection.retainAll(epcList);
|
|
|
|
- if (intersection.size()<rfidList.size()){
|
|
|
|
- //盘亏
|
|
|
|
- if (!orderNumber.isEmpty()){
|
|
|
|
- return takeStock(orderNumber, epcList, 2L);
|
|
|
|
- }else {
|
|
|
|
- return takeStock2(location, 2L, epcList);
|
|
|
|
- }
|
|
|
|
- }else if (list.size()>intersection.size()){
|
|
|
|
- //盘盈
|
|
|
|
- if (!orderNumber.isEmpty()){
|
|
|
|
- return takeStock(orderNumber, epcList, 1L);
|
|
|
|
- }else {
|
|
|
|
- return takeStock2(location, 1L, epcList);
|
|
|
|
|
|
+ public int addByTakeStock(List<TakeStockDTO> _dto){
|
|
|
|
+ int result = 0;
|
|
|
|
+ for (TakeStockDTO dto : _dto) {
|
|
|
|
+ //解析实体
|
|
|
|
+ List<TagInfo> list = dto.getAssetList();
|
|
|
|
+ String location = dto.getInventoryLocation();
|
|
|
|
+ String orderNumber = dto.getOrderNumber();
|
|
|
|
+ //提取epc
|
|
|
|
+ ArrayList<String> epcList = new ArrayList<>();
|
|
|
|
+ for (TagInfo tagInfo : list) {
|
|
|
|
+ epcList.add(tagInfo.getEpc());
|
|
}
|
|
}
|
|
- }else if (intersection.size()==rfidList.size()){
|
|
|
|
- //正常
|
|
|
|
- if (!orderNumber.isEmpty()){
|
|
|
|
- return takeStock(orderNumber, epcList, 3L);
|
|
|
|
- }else {
|
|
|
|
- return takeStock2(location, 3L, epcList);
|
|
|
|
|
|
+ //根据位置获取包含自身及子位置,递归
|
|
|
|
+ List<String> locations = new RecursionUtil().getNumberWithChildren(locationMapper, location);
|
|
|
|
+ //获取所在位置内的资产
|
|
|
|
+ List<String> rfidList = informationMapper.selectNumberByLocations(locations);
|
|
|
|
+ //对比盘点
|
|
|
|
+ List<String> intersection = new ArrayList<>(rfidList);
|
|
|
|
+ intersection.retainAll(epcList);
|
|
|
|
+ if (intersection.size() < rfidList.size()) {
|
|
|
|
+ //盘亏
|
|
|
|
+ if (!orderNumber.isEmpty()) {
|
|
|
|
+ result = takeStock(orderNumber, epcList, 2L);
|
|
|
|
+ } else {
|
|
|
|
+ result = takeStock2(location, 2L, epcList);
|
|
|
|
+ }
|
|
|
|
+ } else if (list.size() > intersection.size()) {
|
|
|
|
+ //盘盈
|
|
|
|
+ if (!orderNumber.isEmpty()) {
|
|
|
|
+ result = takeStock(orderNumber, epcList, 1L);
|
|
|
|
+ } else {
|
|
|
|
+ result = takeStock2(location, 1L, epcList);
|
|
|
|
+ }
|
|
|
|
+ } else if (intersection.size() == rfidList.size()) {
|
|
|
|
+ //正常
|
|
|
|
+ if (!orderNumber.isEmpty()) {
|
|
|
|
+ result = takeStock(orderNumber, epcList, 3L);
|
|
|
|
+ } else {
|
|
|
|
+ result = takeStock2(location, 3L, epcList);
|
|
|
|
+ }
|
|
|
|
+ } else {
|
|
|
|
+ result = 0;
|
|
}
|
|
}
|
|
- }else {
|
|
|
|
- return 0;
|
|
|
|
}
|
|
}
|
|
|
|
+ return result;
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -168,15 +181,11 @@ public class TbAssetInventoryServiceImpl implements ITbAssetInventoryService
|
|
private int takeStock(String orderNumber, List<String> list, Long result){
|
|
private int takeStock(String orderNumber, List<String> list, Long result){
|
|
TbAssetInventory inventory = tbAssetInventoryMapper.selectTbAssetInventoryByNumber(orderNumber);
|
|
TbAssetInventory inventory = tbAssetInventoryMapper.selectTbAssetInventoryByNumber(orderNumber);
|
|
if (inventory.getRecordStatus() == 1L) {
|
|
if (inventory.getRecordStatus() == 1L) {
|
|
|
|
+ //插入盘点
|
|
inventory.setInventoryStatus(2L);
|
|
inventory.setInventoryStatus(2L);
|
|
inventory.setInventoryResult(result);
|
|
inventory.setInventoryResult(result);
|
|
- //插入盘点明细
|
|
|
|
- TbInventoryDetail detail = new TbInventoryDetail();
|
|
|
|
- for (String number : list) {
|
|
|
|
- detail.setOrderNumber(orderNumber);
|
|
|
|
- detail.setInventoryMetadata(JSONUtil.toJsonStr(informationMapper.selectTbAssetInformationByAssetNumber(number)));
|
|
|
|
- tbInventoryDetailMapper.insertTbInventoryDetail(detail);
|
|
|
|
- }
|
|
|
|
|
|
+ //插入明细
|
|
|
|
+ setDetail(orderNumber, list);
|
|
return updateTbAssetInventory(inventory);
|
|
return updateTbAssetInventory(inventory);
|
|
}else {
|
|
}else {
|
|
return 0;
|
|
return 0;
|
|
@@ -199,12 +208,50 @@ public class TbAssetInventoryServiceImpl implements ITbAssetInventoryService
|
|
}
|
|
}
|
|
String orderNumber = inventory.getOrderNumber();
|
|
String orderNumber = inventory.getOrderNumber();
|
|
//插入盘点明细
|
|
//插入盘点明细
|
|
|
|
+ setDetail(orderNumber, list);
|
|
|
|
+ return 1;
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private void setDetail(String orderNumber, List<String> list){
|
|
|
|
+ //该位置下的资产
|
|
|
|
+ TbAssetInventory _inventory = tbAssetInventoryMapper.selectTbAssetInventoryByNumber(orderNumber);
|
|
|
|
+ TbAssetInformation information = new TbAssetInformation();
|
|
|
|
+ String location = _inventory.getInventoryLocation();
|
|
|
|
+ information.setLocationNumber(location);
|
|
|
|
+ List<String> childrens = new RecursionUtil().getNumberWithChildren(locationMapper, location);
|
|
|
|
+ information.setNlist(childrens);
|
|
|
|
+ List<TbAssetInformation> informations = informationMapper.selectTbAssetInformationList(information);
|
|
|
|
+ if (informations == null || informations.isEmpty() ){
|
|
|
|
+ return ;
|
|
|
|
+ }
|
|
|
|
+ //该位置下资产rfid list
|
|
|
|
+ List<String> _list = informations.stream().map(TbAssetInformation::getNumber).collect(Collectors.toList());
|
|
|
|
+
|
|
|
|
+ //已盘点,1
|
|
|
|
+ List<String> green = (List) CollectionUtil.intersection(_list, list);
|
|
|
|
+ //未盘点,2
|
|
|
|
+ List<String> red = new ArrayList<>(_list);
|
|
|
|
+ red.removeAll(list);
|
|
|
|
+ //异常(多余),0
|
|
|
|
+ List<String> yellow = new ArrayList<>(list);
|
|
|
|
+ yellow.removeAll(_list);
|
|
|
|
+ //插入详细盘点信息
|
|
TbInventoryDetail detail = new TbInventoryDetail();
|
|
TbInventoryDetail detail = new TbInventoryDetail();
|
|
|
|
+ //已盘
|
|
|
|
+ setInventoryDetail(green, detail, orderNumber, 1L);
|
|
|
|
+ //未盘
|
|
|
|
+ setInventoryDetail(red, detail, orderNumber, 2L);
|
|
|
|
+ //异常
|
|
|
|
+ setInventoryDetail(yellow, detail, orderNumber, 0L);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private void setInventoryDetail(List<String> list, TbInventoryDetail detail, String orderNumber, Long isUpdate){
|
|
for (String number : list) {
|
|
for (String number : list) {
|
|
detail.setOrderNumber(orderNumber);
|
|
detail.setOrderNumber(orderNumber);
|
|
detail.setInventoryMetadata(JSONUtil.toJsonStr(informationMapper.selectTbAssetInformationByAssetNumber(number)));
|
|
detail.setInventoryMetadata(JSONUtil.toJsonStr(informationMapper.selectTbAssetInformationByAssetNumber(number)));
|
|
|
|
+ detail.setIsUpdateData(isUpdate);
|
|
tbInventoryDetailMapper.insertTbInventoryDetail(detail);
|
|
tbInventoryDetailMapper.insertTbInventoryDetail(detail);
|
|
}
|
|
}
|
|
- return 1;
|
|
|
|
}
|
|
}
|
|
|
|
+
|
|
}
|
|
}
|