|
@@ -1,9 +1,6 @@
|
|
|
package com.ruoyi.business.service.impl;
|
|
|
|
|
|
-import com.ruoyi.business.domain.BizDevice;
|
|
|
-import com.ruoyi.business.domain.ZAssay;
|
|
|
-import com.ruoyi.business.domain.ZAssayResult;
|
|
|
-import com.ruoyi.business.domain.ZQualityValue;
|
|
|
+import com.ruoyi.business.domain.*;
|
|
|
import com.ruoyi.business.mapper.*;
|
|
|
import com.ruoyi.business.req.DeviceReq;
|
|
|
import com.ruoyi.business.res.DeviceRes;
|
|
@@ -73,7 +70,24 @@ public class BusinessServiceImpl implements IBusinessService {
|
|
|
|
|
|
@Override
|
|
|
public List<DeviceRes> devicePageList(DeviceReq deviceReq) {
|
|
|
- return Collections.emptyList();
|
|
|
+ //先获取设备列表 直接写SQL了,不使用copy
|
|
|
+ List<DeviceRes> list =this.bizDeviceMapper.devicePageList(deviceReq);
|
|
|
+ //额外处理其他数据
|
|
|
+ if(!CollectionUtils.isEmpty(list)){
|
|
|
+ for (DeviceRes deviceRes : list) {
|
|
|
+ this.addExtra(deviceRes);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ return list;
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 额外处理其他的字段 聚合,查询其他表,计算等
|
|
|
+ * @param deviceRes
|
|
|
+ */
|
|
|
+ private void addExtra(DeviceRes deviceRes) {
|
|
|
+ //查询最近的一条化验记录明细
|
|
|
+
|
|
|
}
|
|
|
|
|
|
//判断每个质控样的数是否各个,然后获取汇总的数量
|
|
@@ -108,7 +122,7 @@ public class BusinessServiceImpl implements IBusinessService {
|
|
|
List<ZQualityValue> list = this.zQualityValueMapper.selectZQualityValueList(ZQualityValue.builder().beginTime(nowDate).endTime(nowDate).deviceWorks(bizDevices.get(0).getDeviceWorks()).assayItem(zAssayResult.getAssayItem()).build());
|
|
|
//理论上是只有一个的
|
|
|
if(!CollectionUtils.isEmpty(list)){
|
|
|
- ZQualityValue zQualityValue = list.get(list.size() - 1);//获取最新的一条,防止有多条数据的情况
|
|
|
+ ZQualityValue zQualityValue = list.get(0);//获取最新的一条,防止有多条数据的情况
|
|
|
Long lowValue = zQualityValue.getLowValue();
|
|
|
Long highValue = zQualityValue.getHighValue();
|
|
|
if(!Objects.isNull(resultConcentration) && !Objects.isNull(lowValue) && !Objects.isNull(highValue)){
|