|
@@ -5,10 +5,13 @@ import java.util.Date;
|
|
|
import java.util.List;
|
|
|
|
|
|
import com.ruoyi.asset.domain.TbAssetInformation;
|
|
|
+import com.ruoyi.asset.domain.TbLocation;
|
|
|
import com.ruoyi.asset.mapper.TbAssetInformationMapper;
|
|
|
+import com.ruoyi.asset.mapper.TbLocationMapper;
|
|
|
import com.ruoyi.inventory.domain.TagInfo;
|
|
|
import com.ruoyi.inventory.domain.dto.TakeStockDTO;
|
|
|
import com.ruoyi.inventory.domain.dto.TbAssetInventoryDTO;
|
|
|
+import com.ruoyi.utils.IDUtil;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
import com.ruoyi.inventory.mapper.TbAssetInventoryMapper;
|
|
@@ -30,6 +33,9 @@ public class TbAssetInventoryServiceImpl implements ITbAssetInventoryService
|
|
|
@Autowired
|
|
|
private TbAssetInformationMapper informationMapper;
|
|
|
|
|
|
+ @Autowired
|
|
|
+ private TbLocationMapper locationMapper;
|
|
|
+
|
|
|
/**
|
|
|
* 查询资产盘点记录
|
|
|
*
|
|
@@ -63,33 +69,53 @@ public class TbAssetInventoryServiceImpl implements ITbAssetInventoryService
|
|
|
@Override
|
|
|
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);
|
|
|
}
|
|
|
|
|
|
+ //手持机盘点
|
|
|
@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());
|
|
|
+ }
|
|
|
//获取所在位置内的资产
|
|
|
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<TbAssetInformation> intersection = new ArrayList<>(informations);
|
|
|
- intersection.retainAll(list);
|
|
|
+ List<String> intersection = new ArrayList<>(rfidList);
|
|
|
+ intersection.retainAll(epcList);
|
|
|
if (intersection.size()<informations.size()){
|
|
|
//盘亏
|
|
|
if (!orderNumber.isEmpty()){
|
|
|
TbAssetInventory inventory = tbAssetInventoryMapper.selectTbAssetInventoryByNumber(orderNumber);
|
|
|
- inventory.setInventoryStatus(2L);
|
|
|
- inventory.setInventoryResult(1L);
|
|
|
- return updateTbAssetInventory(inventory);
|
|
|
+ if (inventory.getRecordStatus() == 1L) {
|
|
|
+ inventory.setInventoryStatus(2L);
|
|
|
+ inventory.setInventoryResult(2L);
|
|
|
+ return updateTbAssetInventory(inventory);
|
|
|
+ }else {
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
}else {
|
|
|
TbAssetInventory inventory = new TbAssetInventory();
|
|
|
inventory.setInventoryStatus(2L);
|
|
|
- inventory.setInventoryResult(1L);
|
|
|
+ inventory.setInventoryResult(2L);
|
|
|
+ inventory.setRecordStatus(1L);
|
|
|
inventory.setInventoryLocation(location);
|
|
|
inventory.setInventoryDate(new Date());
|
|
|
inventory.setName("线下自测");
|
|
@@ -99,13 +125,18 @@ public class TbAssetInventoryServiceImpl implements ITbAssetInventoryService
|
|
|
//盘盈
|
|
|
if (!orderNumber.isEmpty()){
|
|
|
TbAssetInventory inventory = tbAssetInventoryMapper.selectTbAssetInventoryByNumber(orderNumber);
|
|
|
- inventory.setInventoryStatus(2L);
|
|
|
- inventory.setInventoryResult(2L);
|
|
|
- return updateTbAssetInventory(inventory);
|
|
|
+ if (inventory.getRecordStatus() == 1L) {
|
|
|
+ inventory.setInventoryStatus(2L);
|
|
|
+ inventory.setInventoryResult(1L);
|
|
|
+ return updateTbAssetInventory(inventory);
|
|
|
+ }else {
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
}else {
|
|
|
TbAssetInventory inventory = new TbAssetInventory();
|
|
|
inventory.setInventoryStatus(2L);
|
|
|
- inventory.setInventoryResult(2L);
|
|
|
+ inventory.setInventoryResult(1L);
|
|
|
+ inventory.setRecordStatus(1L);
|
|
|
inventory.setInventoryLocation(location);
|
|
|
inventory.setInventoryDate(new Date());
|
|
|
inventory.setName("线下自测");
|
|
@@ -115,13 +146,18 @@ public class TbAssetInventoryServiceImpl implements ITbAssetInventoryService
|
|
|
//正常
|
|
|
if (!orderNumber.isEmpty()){
|
|
|
TbAssetInventory inventory = tbAssetInventoryMapper.selectTbAssetInventoryByNumber(orderNumber);
|
|
|
- inventory.setInventoryStatus(2L);
|
|
|
- inventory.setInventoryResult(3L);
|
|
|
- return updateTbAssetInventory(inventory);
|
|
|
+ if (inventory.getRecordStatus() == 1L) {
|
|
|
+ inventory.setInventoryStatus(2L);
|
|
|
+ inventory.setInventoryResult(3L);
|
|
|
+ return updateTbAssetInventory(inventory);
|
|
|
+ }else {
|
|
|
+ return 0;
|
|
|
+ }
|
|
|
}else {
|
|
|
TbAssetInventory inventory = new TbAssetInventory();
|
|
|
inventory.setInventoryStatus(2L);
|
|
|
inventory.setInventoryResult(3L);
|
|
|
+ inventory.setRecordStatus(1L);
|
|
|
inventory.setInventoryLocation(location);
|
|
|
inventory.setInventoryDate(new Date());
|
|
|
inventory.setName("线下自测");
|