|
@@ -8,14 +8,17 @@ import com.ruoyi.ams.nieyan.dao.LotInfoFctAgvDao;
|
|
import com.ruoyi.ams.nieyan.dto.LotInfoFctAgvDTO;
|
|
import com.ruoyi.ams.nieyan.dto.LotInfoFctAgvDTO;
|
|
import com.ruoyi.ams.nieyan.entity.LotInfoFctAgvEntity;
|
|
import com.ruoyi.ams.nieyan.entity.LotInfoFctAgvEntity;
|
|
import com.ruoyi.ams.nieyan.service.ILotInfoFctAgvService;
|
|
import com.ruoyi.ams.nieyan.service.ILotInfoFctAgvService;
|
|
|
|
+import com.ruoyi.base.domain.BaseSku;
|
|
|
|
+import com.ruoyi.base.service.IBaseSkuService;
|
|
import com.ruoyi.common.utils.ConvertUtils;
|
|
import com.ruoyi.common.utils.ConvertUtils;
|
|
import com.ruoyi.framework.service.impl.CrudServiceImpl;
|
|
import com.ruoyi.framework.service.impl.CrudServiceImpl;
|
|
import org.apache.commons.compress.utils.Lists;
|
|
import org.apache.commons.compress.utils.Lists;
|
|
|
|
+import org.springframework.beans.factory.annotation.Autowired;
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.stereotype.Service;
|
|
import org.springframework.util.CollectionUtils;
|
|
import org.springframework.util.CollectionUtils;
|
|
|
|
|
|
-import java.util.List;
|
|
|
|
-import java.util.Map;
|
|
|
|
|
|
+import java.util.*;
|
|
|
|
+import java.util.stream.Collectors;
|
|
|
|
|
|
@Service
|
|
@Service
|
|
public class LotInfoFctAgvService extends CrudServiceImpl<LotInfoFctAgvDao, LotInfoFctAgvEntity, LotInfoFctAgvDTO> implements ILotInfoFctAgvService {
|
|
public class LotInfoFctAgvService extends CrudServiceImpl<LotInfoFctAgvDao, LotInfoFctAgvEntity, LotInfoFctAgvDTO> implements ILotInfoFctAgvService {
|
|
@@ -23,25 +26,64 @@ public class LotInfoFctAgvService extends CrudServiceImpl<LotInfoFctAgvDao, LotI
|
|
|
|
|
|
private static final String NOT_PROCESS = "0";
|
|
private static final String NOT_PROCESS = "0";
|
|
|
|
|
|
|
|
+ @Autowired
|
|
|
|
+ private IBaseSkuService baseSkuService;
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ *获取批次信息列表
|
|
|
|
+ * @param type
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ @Override
|
|
|
|
+ public List<LotInfoFctAgvDTO> getLotInfoList(String type) {
|
|
|
|
+ List<LotInfoFctAgvDTO> lotInfoFctAgvList = getLotInfoList(null, type, null);
|
|
|
|
+ return CollectionUtils.isEmpty(lotInfoFctAgvList) ?
|
|
|
|
+ lotInfoFctAgvList : lotInfoFctAgvList.stream().collect(Collectors.collectingAndThen(Collectors.toCollection(() ->
|
|
|
|
+ new TreeSet<>(Comparator.comparing(LotInfoFctAgvDTO::getSlot))), ArrayList::new));
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ *获取批次信息列表中所有产品类型
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ @Override
|
|
|
|
+ public List<BaseSku> getBaseSkuBySprodTypeList() {
|
|
|
|
+ List<LotInfoFctAgvEntity> lotInfoFctAgvList = baseDao.selectList(Wrappers.<LotInfoFctAgvEntity>lambdaQuery().eq(LotInfoFctAgvEntity::getStatus, NOT_PROCESS));
|
|
|
|
+ if (CollectionUtils.isEmpty(lotInfoFctAgvList)) return Lists.newArrayList();
|
|
|
|
+ List<String> sprodTypeList = lotInfoFctAgvList.stream().map(LotInfoFctAgvEntity::getSprodType).distinct().collect(Collectors.toList());
|
|
|
|
+ List<BaseSku> baseSkuList = baseSkuService.selectBaseSkuBySprodTypeList(sprodTypeList);
|
|
|
|
+ return baseSkuList;
|
|
|
|
+ }
|
|
|
|
+
|
|
/**
|
|
/**
|
|
* 获取批次信息列表
|
|
* 获取批次信息列表
|
|
- * @param status 状态
|
|
|
|
- * @param type 产线类型
|
|
|
|
|
|
+ * @param status 批次号状态 0-未处理 1-AGV处理 2-人工处理
|
|
|
|
+ * @param type 产线类型 LSN-硫酸镍 LHN-氯化镍
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
@Override
|
|
@Override
|
|
public List<LotInfoFctAgvDTO> getLotInfoList(String status, String type) {
|
|
public List<LotInfoFctAgvDTO> getLotInfoList(String status, String type) {
|
|
|
|
+ return getLotInfoList(status, type, null);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ /**
|
|
|
|
+ * 获取批次信息列表
|
|
|
|
+ * @param status 状态
|
|
|
|
+ * @param type 产线类型
|
|
|
|
+ * @return
|
|
|
|
+ */
|
|
|
|
+ private List<LotInfoFctAgvDTO> getLotInfoList(String status, String type, String slot) {
|
|
status = StringUtils.isBlank(status) ? NOT_PROCESS : status;
|
|
status = StringUtils.isBlank(status) ? NOT_PROCESS : status;
|
|
Wrapper<LotInfoFctAgvEntity> lambdaQueryWrapper = Wrappers.<LotInfoFctAgvEntity>lambdaQuery()
|
|
Wrapper<LotInfoFctAgvEntity> lambdaQueryWrapper = Wrappers.<LotInfoFctAgvEntity>lambdaQuery()
|
|
.eq(LotInfoFctAgvEntity::getStatus, status)
|
|
.eq(LotInfoFctAgvEntity::getStatus, status)
|
|
.eq(LotInfoFctAgvEntity::getSprodType, type)
|
|
.eq(LotInfoFctAgvEntity::getSprodType, type)
|
|
|
|
+ .eq(StringUtils.isNotBlank(slot), LotInfoFctAgvEntity::getSlot, slot)
|
|
.orderByDesc(LotInfoFctAgvEntity::getCreateDate);
|
|
.orderByDesc(LotInfoFctAgvEntity::getCreateDate);
|
|
List<LotInfoFctAgvEntity> lotInfoFctAgvEntities = baseDao.selectList(lambdaQueryWrapper);
|
|
List<LotInfoFctAgvEntity> lotInfoFctAgvEntities = baseDao.selectList(lambdaQueryWrapper);
|
|
return CollectionUtils.isEmpty(lotInfoFctAgvEntities)
|
|
return CollectionUtils.isEmpty(lotInfoFctAgvEntities)
|
|
? Lists.newArrayList() : ConvertUtils.sourceToTarget(lotInfoFctAgvEntities, LotInfoFctAgvDTO.class);
|
|
? Lists.newArrayList() : ConvertUtils.sourceToTarget(lotInfoFctAgvEntities, LotInfoFctAgvDTO.class);
|
|
}
|
|
}
|
|
|
|
|
|
-
|
|
|
|
/**
|
|
/**
|
|
* 更新批次号的状态
|
|
* 更新批次号的状态
|
|
* @param id 业务id
|
|
* @param id 业务id
|