From 92bd9ed78ad1da026b81fcd8e88445b6834bba76 Mon Sep 17 00:00:00 2001
From: zhangherong <571457620@qq.com>
Date: 星期二, 01 四月 2025 17:12:11 +0800
Subject: [PATCH] art: 设备管理-保养标准-点检导入功能

---
 lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/service/impl/EamEquipmentServiceImpl.java |  144 +++++++++++++++++++++++++++++++++++++++++++++++
 1 files changed, 142 insertions(+), 2 deletions(-)

diff --git a/lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/service/impl/EamEquipmentServiceImpl.java b/lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/service/impl/EamEquipmentServiceImpl.java
index 59a388c..f4fcd30 100644
--- a/lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/service/impl/EamEquipmentServiceImpl.java
+++ b/lxzn-module-eam-common/src/main/java/org/jeecg/modules/eam/service/impl/EamEquipmentServiceImpl.java
@@ -2,9 +2,16 @@
 
 import cn.hutool.core.collection.CollectionUtil;
 import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
+import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
+import com.baomidou.mybatisplus.core.metadata.IPage;
+import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
 import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
 import org.apache.commons.lang3.StringUtils;
+import org.apache.shiro.SecurityUtils;
 import org.jeecg.common.constant.CommonConstant;
+import org.jeecg.common.constant.DataBaseConstant;
+import org.jeecg.common.system.vo.LoginUser;
+import org.jeecg.common.util.oConvertUtils;
 import org.jeecg.modules.eam.aspect.annotation.EquipmentHistoryLog;
 import org.jeecg.modules.eam.constant.AssetStatusEnum;
 import org.jeecg.modules.eam.constant.EquipmentMaintenanceStatus;
@@ -13,10 +20,12 @@
 import org.jeecg.modules.eam.entity.EamEquipment;
 import org.jeecg.modules.eam.entity.EamEquipmentExtend;
 import org.jeecg.modules.eam.mapper.EamEquipmentMapper;
+import org.jeecg.modules.eam.request.EamEquipmentQuery;
 import org.jeecg.modules.eam.service.IEamEquipmentExtendService;
 import org.jeecg.modules.eam.service.IEamEquipmentService;
 import org.jeecg.modules.eam.tree.FindsEquipmentProductionUtil;
 import org.jeecg.modules.eam.vo.EamEquipmentTree;
+import org.jeecg.modules.eam.vo.EquipmentSearchResult;
 import org.jeecg.modules.system.entity.MdcProduction;
 import org.jeecg.modules.system.service.IMdcProductionService;
 import org.springframework.beans.factory.annotation.Autowired;
@@ -33,7 +42,7 @@
 /**
  * @Description: 璁惧鍙拌处
  * @Author: jeecg-boot
- * @Date:   2025-03-19
+ * @Date: 2025-03-19
  * @Version: V1.0
  */
 @Service
@@ -66,7 +75,7 @@
 
         equipmentExtendService.save(eamEquipmentExtend);
 
-        //鎻掑叆璁惧灞ュ巻 TODO
+        //鎻掑叆璁惧灞ュ巻   @EquipmentHistoryLog
         return eamEquipment;
     }
 
@@ -91,6 +100,137 @@
         return treeList;
     }
 
+    @Override
+    public IPage<EamEquipment> queryPageList(IPage<EamEquipment> page, EamEquipmentQuery eamEquipment) {
+        QueryWrapper<EamEquipment> queryWrapper = new QueryWrapper<>();
+        //鐢ㄦ埛鏁版嵁鏉冮檺
+        LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
+        if (sysUser == null) {
+            return page;
+        }
+        if (StringUtils.isNotBlank(sysUser.getEquipmentIds())) {
+            //閫夋嫨浜嗚澶囷紝鏍规嵁璁惧id杩囨护璁惧
+            List<String> equipArr = Arrays.asList(sysUser.getEquipmentIds().split(","));
+            queryWrapper.in("e.equipment_code", equipArr);
+        } else {
+            //娌℃湁閫夋嫨璁惧锛屾牴鎹溅闂磋繃婊よ澶�
+            queryWrapper.exists("select 1 from mdc_user_production t where t.user_id={0} and t.pro_id=e.org_id", sysUser.getId());
+        }
+        //鏌ヨ鏉′欢杩囨护
+        if (eamEquipment != null) {
+            if (StringUtils.isNotBlank(eamEquipment.getEquipmentCode())) {
+                queryWrapper.like("e.equipment_code", eamEquipment.getEquipmentCode());
+            }
+            if (StringUtils.isNotBlank(eamEquipment.getEquipmentName())) {
+                queryWrapper.like("e.equipment_name", eamEquipment.getEquipmentName());
+            }
+            if (StringUtils.isNotBlank(eamEquipment.getEquipmentImportance())) {
+                queryWrapper.eq("e.equipment_importance", eamEquipment.getEquipmentImportance());
+            }
+            if (StringUtils.isNotBlank(eamEquipment.getAssetStatus())) {
+                queryWrapper.like("e.asset_status", eamEquipment.getAssetStatus());
+            }
+            if (StringUtils.isNotBlank(eamEquipment.getTechnologyStatus())) {
+                queryWrapper.like("e.technology_status", eamEquipment.getTechnologyStatus());
+            }
+            if (StringUtils.isNotBlank(eamEquipment.getOperationSystem())) {
+                queryWrapper.like("e.operation_system", eamEquipment.getOperationSystem());
+            }
+            if (StringUtils.isNotBlank(eamEquipment.getOrgId())) {
+                queryWrapper.like("e.org_id", eamEquipment.getOrgId());
+            }
+            if (StringUtils.isNotBlank(eamEquipment.getEquipmentCategory())) {
+                queryWrapper.like("e.equipment_category", eamEquipment.getEquipmentCategory());
+            }
+            //鎺掑簭
+            if (StringUtils.isNotBlank(eamEquipment.getColumn()) && StringUtils.isNotBlank(eamEquipment.getOrder())) {
+                //queryWrapper.like("column", eamEquipment.getColumn());
+                String column = eamEquipment.getColumn();
+                if (column.endsWith(CommonConstant.DICT_TEXT_SUFFIX)) {
+                    column = column.substring(0, column.lastIndexOf(CommonConstant.DICT_TEXT_SUFFIX));
+                }
+                if (DataBaseConstant.SQL_ASC.equalsIgnoreCase(eamEquipment.getOrder())) {
+                    queryWrapper.orderByAsc("e." + oConvertUtils.camelToUnderline(column));
+                } else {
+                    queryWrapper.orderByDesc("e." + oConvertUtils.camelToUnderline(column));
+                }
+            } else {
+                queryWrapper.orderByDesc("e.create_time");
+            }
+        } else {
+            queryWrapper.orderByDesc("e.create_time");
+        }
+
+        IPage<EamEquipment> ipage = eamEquipmentMapper.queryPageList(page, queryWrapper);
+        return ipage;
+    }
+
+    @Override
+    public List<EquipmentSearchResult> asyncLoadEquipment(String keyword, Integer pageSize, String id) {
+        if (StringUtils.isNotBlank(id)) {
+            EamEquipment eamEquipment = eamEquipmentMapper.selectById(id);
+            if (eamEquipment != null) {
+                List<EquipmentSearchResult> resultList = new ArrayList<>();
+                resultList.add(new EquipmentSearchResult(eamEquipment));
+                return resultList;
+            }
+        }
+        IPage<EamEquipment> page = new Page<>(1, pageSize);
+        QueryWrapper<EamEquipment> queryWrapper = new QueryWrapper<>();
+        //鐢ㄦ埛鏁版嵁鏉冮檺
+        LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
+        if (sysUser == null) {
+            return Collections.emptyList();
+        }
+        if (StringUtils.isNotBlank(sysUser.getEquipmentIds())) {
+            //閫夋嫨浜嗚澶囷紝鏍规嵁璁惧id杩囨护璁惧
+            List<String> equipArr = Arrays.asList(sysUser.getEquipmentIds().split(","));
+            queryWrapper.in("equipment_code", equipArr);
+        } else {
+            //娌℃湁閫夋嫨璁惧锛屾牴鎹溅闂磋繃婊よ澶�
+            queryWrapper.exists("select 1 from mdc_user_production t where t.user_id={0} and t.pro_id=org_id", sysUser.getId());
+        }
+        if (StringUtils.isNotBlank(keyword)) {
+            queryWrapper.like("equipment_code", keyword);
+            queryWrapper.or().like("equipment_name", keyword);
+        }
+        queryWrapper.eq("del_flag", CommonConstant.DEL_FLAG_0);
+        IPage<EamEquipment> pageResult = eamEquipmentMapper.queryPageList(page, queryWrapper);
+        if (pageResult != null && CollectionUtil.isNotEmpty(pageResult.getRecords())) {
+            List<EquipmentSearchResult> resultList = new ArrayList<>();
+            pageResult.getRecords().forEach((record) -> {
+                resultList.add(new EquipmentSearchResult(record));
+            });
+            return resultList;
+        }
+        return Collections.emptyList();
+    }
+
+    @Override
+    public EamEquipment selectByEquipmentCode(String equipmentCode) {
+        if (StringUtils.isBlank(equipmentCode)) {
+            return null;
+        }
+        QueryWrapper<EamEquipment> queryWrapper = new QueryWrapper<>();
+        //鐢ㄦ埛鏁版嵁鏉冮檺
+        LoginUser sysUser = (LoginUser) SecurityUtils.getSubject().getPrincipal();
+        if (sysUser == null) {
+            return null;
+        }
+        if (StringUtils.isNotBlank(sysUser.getEquipmentIds())) {
+            //閫夋嫨浜嗚澶囷紝鏍规嵁璁惧id杩囨护璁惧
+            List<String> equipArr = Arrays.asList(sysUser.getEquipmentIds().split(","));
+            queryWrapper.in("equipment_code", equipArr);
+        } else {
+            //娌℃湁閫夋嫨璁惧锛屾牴鎹溅闂磋繃婊よ澶�
+            queryWrapper.exists("select 1 from mdc_user_production t where t.user_id={0} and t.pro_id=org_id", sysUser.getId());
+        }
+        queryWrapper.eq("equipment_code", equipmentCode);
+        queryWrapper.eq("del_flag", CommonConstant.DEL_FLAG_0);
+
+        return eamEquipmentMapper.selectOne(queryWrapper);
+    }
+
     /**
      * 鑾峰彇鎵�鏈夌殑浜х嚎id锛堝寘鍚墍鏈変笂绾э級
      */

--
Gitblit v1.9.3