|
@@ -23,17 +23,19 @@ public class LotInfoFctAgvService extends CrudServiceImpl<LotInfoFctAgvDao, LotI
|
|
|
|
|
|
private static final String NOT_PROCESS = "0";
|
|
|
|
|
|
-
|
|
|
/**
|
|
|
* 获取批次信息列表
|
|
|
* @param status 状态
|
|
|
+ * @param type 产线类型
|
|
|
* @return
|
|
|
*/
|
|
|
@Override
|
|
|
- public List<LotInfoFctAgvDTO> getLotInfoList(String status) {
|
|
|
+ public List<LotInfoFctAgvDTO> getLotInfoList(String status, String type) {
|
|
|
status = StringUtils.isBlank(status) ? NOT_PROCESS : status;
|
|
|
Wrapper<LotInfoFctAgvEntity> lambdaQueryWrapper = Wrappers.<LotInfoFctAgvEntity>lambdaQuery()
|
|
|
- .eq(LotInfoFctAgvEntity::getStatus, status).orderByDesc(LotInfoFctAgvEntity::getCreateDate);
|
|
|
+ .eq(LotInfoFctAgvEntity::getStatus, status)
|
|
|
+ .eq(LotInfoFctAgvEntity::getSprodType, type)
|
|
|
+ .orderByDesc(LotInfoFctAgvEntity::getCreateDate);
|
|
|
List<LotInfoFctAgvEntity> lotInfoFctAgvEntities = baseDao.selectList(lambdaQueryWrapper);
|
|
|
return CollectionUtils.isEmpty(lotInfoFctAgvEntities)
|
|
|
? Lists.newArrayList() : ConvertUtils.sourceToTarget(lotInfoFctAgvEntities, LotInfoFctAgvDTO.class);
|