|
@@ -1,9 +1,11 @@
|
|
|
package com.ruoyi.inventory.service.impl;
|
|
|
|
|
|
+import java.text.SimpleDateFormat;
|
|
|
import java.util.*;
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
import cn.hutool.core.date.DateUtil;
|
|
|
+import cn.hutool.core.util.ObjectUtil;
|
|
|
import cn.hutool.core.util.StrUtil;
|
|
|
import cn.hutool.json.JSONUtil;
|
|
|
import com.ruoyi.asset.domain.TbAssetInformation;
|
|
@@ -11,8 +13,7 @@ import com.ruoyi.asset.domain.TbLocation;
|
|
|
import com.ruoyi.asset.mapper.TbAssetInformationMapper;
|
|
|
import com.ruoyi.asset.mapper.TbLocationMapper;
|
|
|
import com.ruoyi.inventory.domain.TbInventoryDetail;
|
|
|
-import com.ruoyi.inventory.domain.dto.TakeStockDTO;
|
|
|
-import com.ruoyi.inventory.domain.dto.TbAssetInventoryDTO;
|
|
|
+import com.ruoyi.inventory.domain.dto.*;
|
|
|
import com.ruoyi.inventory.mapper.TbInventoryDetailMapper;
|
|
|
import com.ruoyi.utils.IDUtil;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
@@ -20,6 +21,7 @@ import org.springframework.stereotype.Service;
|
|
|
import com.ruoyi.inventory.mapper.TbAssetInventoryMapper;
|
|
|
import com.ruoyi.inventory.domain.TbAssetInventory;
|
|
|
import com.ruoyi.inventory.service.ITbAssetInventoryService;
|
|
|
+import org.springframework.web.bind.annotation.RequestMapping;
|
|
|
|
|
|
import static com.ruoyi.inventory.domain.enums.InventoryPlanResult.*;
|
|
|
import static com.ruoyi.inventory.domain.enums.InventoryPlanStatus.PLAN_FINISH;
|
|
@@ -29,7 +31,7 @@ import static com.ruoyi.inventory.domain.enums.InventoryStatus.UNCOUNTED;
|
|
|
|
|
|
/**
|
|
|
* 资产盘点记录Service业务层处理
|
|
|
- *
|
|
|
+ *
|
|
|
* @author ydl
|
|
|
* @date 2023-06-01
|
|
|
*/
|
|
@@ -50,7 +52,7 @@ public class TbAssetInventoryServiceImpl implements ITbAssetInventoryService
|
|
|
|
|
|
/**
|
|
|
* 查询资产盘点记录
|
|
|
- *
|
|
|
+ *
|
|
|
* @param id 资产盘点记录主键
|
|
|
* @return 资产盘点记录
|
|
|
*/
|
|
@@ -75,7 +77,7 @@ public class TbAssetInventoryServiceImpl implements ITbAssetInventoryService
|
|
|
|
|
|
/**
|
|
|
* 查询资产盘点记录列表
|
|
|
- *
|
|
|
+ *
|
|
|
* @param tbAssetInventory 资产盘点记录
|
|
|
* @return 资产盘点记录
|
|
|
*/
|
|
@@ -111,7 +113,7 @@ public class TbAssetInventoryServiceImpl implements ITbAssetInventoryService
|
|
|
|
|
|
/**
|
|
|
* 新增资产盘点记录
|
|
|
- *
|
|
|
+ *
|
|
|
* @param tbAssetInventory 资产盘点记录
|
|
|
* @return 结果
|
|
|
*/
|
|
@@ -358,7 +360,7 @@ public class TbAssetInventoryServiceImpl implements ITbAssetInventoryService
|
|
|
|
|
|
/**
|
|
|
* 修改资产盘点记录
|
|
|
- *
|
|
|
+ *
|
|
|
* @param tbAssetInventory 资产盘点记录
|
|
|
* @return 结果
|
|
|
*/
|
|
@@ -412,7 +414,7 @@ public class TbAssetInventoryServiceImpl implements ITbAssetInventoryService
|
|
|
|
|
|
/**
|
|
|
* 批量删除资产盘点记录
|
|
|
- *
|
|
|
+ *
|
|
|
* @param ids 需要删除的资产盘点记录主键
|
|
|
* @return 结果
|
|
|
*/
|
|
@@ -426,7 +428,7 @@ public class TbAssetInventoryServiceImpl implements ITbAssetInventoryService
|
|
|
|
|
|
/**
|
|
|
* 删除资产盘点记录信息
|
|
|
- *
|
|
|
+ *
|
|
|
* @param id 资产盘点记录主键
|
|
|
* @return 结果
|
|
|
*/
|
|
@@ -458,4 +460,138 @@ public class TbAssetInventoryServiceImpl implements ITbAssetInventoryService
|
|
|
String locationName = Arrays.toString(tbLocations.stream().map(TbLocation::getName).toArray());
|
|
|
tbAssetInventoryDTO.setInventoryLocationName(locationName);
|
|
|
}
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 根据部门id统计最近两次盘点间的部门资产损耗情况
|
|
|
+ * @param depId
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ public List<DepAssetLossResultDto> inventoryDepAssetById(String depId){
|
|
|
+
|
|
|
+ /* 本想这样写sql的:
|
|
|
+ select inventory_metadata metadata
|
|
|
+ from tb_inventory_detail
|
|
|
+ where order_number in
|
|
|
+ (select order_number
|
|
|
+ from tb_asset_inventory
|
|
|
+ where inventory_status = 2 and inventory_department = 206
|
|
|
+ order by inventory_date desc
|
|
|
+ limit 0,2)
|
|
|
+ 但是,语法不支持,会报错:This version of MySQL doesn't yet support 'LIMIT & IN/ALL/ANY/SOME subquery'
|
|
|
+ 暂时选择以下方法解决,但要连接四次数据库,很可能需要优化
|
|
|
+ */
|
|
|
+
|
|
|
+ //历史盘点计划编码和日期
|
|
|
+ List<AssetInvOrderDto> invs = tbAssetInventoryMapper.getOrderNumberByDepId(depId);
|
|
|
+ //前前一次盘点计划编码和日期
|
|
|
+// TbAssetInventoryDTO old_inv = tbAssetInventoryMapper.getOrderNumberByDepId(depId);
|
|
|
+
|
|
|
+ if (ObjectUtil.isEmpty(invs) || invs.size()==0) return null;
|
|
|
+
|
|
|
+ AssetInvOrderDto new_inv = invs.get(0);
|
|
|
+ System.out.println("new-盘点计划:"+new_inv);
|
|
|
+ AssetInvOrderDto old_inv = null;
|
|
|
+ if (invs.size()>1) old_inv = invs.get(1);
|
|
|
+
|
|
|
+ DepAssetLossResultDto old_resultDto = null;
|
|
|
+ DepAssetLossResultDto new_resultDto = null;
|
|
|
+ if (new_inv!=null){
|
|
|
+ new_resultDto = lossResult(new_inv);
|
|
|
+ }
|
|
|
+ if (!ObjectUtil.isNull(old_inv)) old_resultDto = lossResult(old_inv);
|
|
|
+
|
|
|
+ List<DepAssetLossResultDto> results = new ArrayList<>();
|
|
|
+ results.add(old_resultDto);
|
|
|
+ results.add(new_resultDto);
|
|
|
+ return results;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 处理资产信息,统计每一样资产的损耗情况
|
|
|
+ * @param assetInfos
|
|
|
+ * @param assetMap
|
|
|
+ * @param lossValMap
|
|
|
+ */
|
|
|
+ private void handleAssetInfo(List<TbAssetInformation> assetInfos,
|
|
|
+ Map<String, DepAssetLossDto> assetMap,
|
|
|
+ Map<String, Double> lossValMap){
|
|
|
+ for (TbAssetInformation asset : assetInfos) {
|
|
|
+ if (!assetMap.containsKey(asset.getName())){
|
|
|
+
|
|
|
+ DepAssetLossDto lossDto = new DepAssetLossDto();
|
|
|
+ lossDto.setAssetName(asset.getName());
|
|
|
+ lossDto.setCategory(asset.getCategoryName());
|
|
|
+ lossDto.setNowQuantity(asset.getQuantity());
|
|
|
+
|
|
|
+ List<String> locations = new ArrayList<>();
|
|
|
+ if (asset.getManageStatus()==7) {
|
|
|
+ lossDto.setLossQuantity(asset.getQuantity());
|
|
|
+ locations.add(asset.getAncestorLocationName()+asset.getParentLocationName()+asset.getLocationName());
|
|
|
+ lossDto.setLocations(locations);
|
|
|
+ lossValMap.put(asset.getName(),(asset.getOriginalValue()-asset.getNetValue())*asset.getQuantity());
|
|
|
+ }
|
|
|
+ assetMap.put(asset.getName(),lossDto);
|
|
|
+ } else {
|
|
|
+ DepAssetLossDto lossDto = assetMap.get(asset.getName());
|
|
|
+ lossDto.setNowQuantity(lossDto.getNowQuantity()+asset.getQuantity());
|
|
|
+ if (asset.getManageStatus()==7) {
|
|
|
+ lossDto.setLossQuantity(lossDto.getLossQuantity()+asset.getQuantity());
|
|
|
+ lossDto.getLocations()
|
|
|
+ .add(asset.getAncestorLocationName()+asset.getParentLocationName()+asset.getLocationName());
|
|
|
+ lossValMap.put(asset.getName(),
|
|
|
+ Double.sum(lossValMap.get(asset.getName()),
|
|
|
+ (asset.getOriginalValue()-asset.getNetValue())*asset.getQuantity()));
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 根据盘点计划的编号查询出资产元数据,并统计损耗
|
|
|
+ * @param invPlan
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ private DepAssetLossResultDto lossResult(AssetInvOrderDto invPlan){
|
|
|
+
|
|
|
+ List<String> asset_list = tbAssetInventoryMapper.getDepAssetByOrderNumber(invPlan.getOrderNumber());
|
|
|
+ //盘点资产详细信息-元数据
|
|
|
+ List<TbAssetInformation> assetInfos = new ArrayList<>();
|
|
|
+ //json数据 --> java对象
|
|
|
+ for (String asset : asset_list) {
|
|
|
+ System.out.println(asset);
|
|
|
+ assetInfos.add(JSONUtil.toBean(asset, TbAssetInformation.class));
|
|
|
+ }
|
|
|
+
|
|
|
+ Map<String, DepAssetLossDto> assetMap = new HashMap<>();
|
|
|
+ //各资产损耗值map
|
|
|
+ HashMap<String, Double> lossValMap = new HashMap<>();
|
|
|
+ //统计两次盘点计划每一样资产(同资产名)的相关信息
|
|
|
+ handleAssetInfo(assetInfos,assetMap,lossValMap);
|
|
|
+ //将map中统计好的资产信息转到list
|
|
|
+ ArrayList<DepAssetLossDto> assetResultList = new ArrayList<>();
|
|
|
+ Set<Map.Entry<String, DepAssetLossDto>> entrySet = assetMap.entrySet();
|
|
|
+ for (Map.Entry<String, DepAssetLossDto> entry : entrySet) {
|
|
|
+ DepAssetLossDto dto = entry.getValue();
|
|
|
+ if (lossValMap.containsKey(dto.getAssetName()))dto.setLossVal(lossValMap.get(dto.getAssetName()));
|
|
|
+ assetResultList.add(dto);
|
|
|
+ }
|
|
|
+ //计算损耗总值
|
|
|
+ Set<Map.Entry<String, Double>> lossValSet = lossValMap.entrySet();
|
|
|
+ double lossVal = 0.0;
|
|
|
+ for (Map.Entry<String, Double> entry : lossValSet) {
|
|
|
+ lossVal+=entry.getValue();
|
|
|
+ }
|
|
|
+
|
|
|
+// SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MM-dd");
|
|
|
+ //封装结果
|
|
|
+ DepAssetLossResultDto resultDto = new DepAssetLossResultDto();
|
|
|
+ resultDto.setTotalLossVal(lossVal);
|
|
|
+ resultDto.setAssetResultList(assetResultList);
|
|
|
+ resultDto.setDate(invPlan.getInventDate());
|
|
|
+
|
|
|
+ return resultDto;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
}
|