|
|
|
@ -18,6 +18,7 @@ package com.logpm.basic.service.impl;
|
|
|
|
|
|
|
|
|
|
import com.alibaba.fastjson.JSON; |
|
|
|
|
import com.baomidou.mybatisplus.core.conditions.Wrapper; |
|
|
|
|
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.core.toolkit.ObjectUtils; |
|
|
|
@ -30,6 +31,7 @@ import com.logpm.basic.service.IBasicMaterialService;
|
|
|
|
|
import com.logpm.basic.vo.BasicMaterialVO; |
|
|
|
|
import lombok.AllArgsConstructor; |
|
|
|
|
import lombok.extern.log4j.Log4j2; |
|
|
|
|
import org.springblade.core.log.exception.ServiceException; |
|
|
|
|
import org.springblade.core.mp.base.BaseServiceImpl; |
|
|
|
|
import org.springblade.core.tool.utils.BeanUtil; |
|
|
|
|
import org.springframework.stereotype.Service; |
|
|
|
@ -37,6 +39,7 @@ import org.springframework.transaction.annotation.Transactional;
|
|
|
|
|
|
|
|
|
|
import java.util.ArrayList; |
|
|
|
|
import java.util.List; |
|
|
|
|
import java.util.Map; |
|
|
|
|
import java.util.function.Function; |
|
|
|
|
import java.util.stream.Collectors; |
|
|
|
|
|
|
|
|
@ -128,4 +131,30 @@ public class BasicMaterialServiceImpl extends BaseServiceImpl<BasicMaterialMappe
|
|
|
|
|
return baseMapper.findEntityByCodeAndNameg(materialCode,materialName); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
@Override |
|
|
|
|
public List<BasicMaterialVO> materialList(Map<String, Object> basicMaterial) { |
|
|
|
|
List<BasicMaterialVO> basicMaterialVOList =null; |
|
|
|
|
try { |
|
|
|
|
LambdaQueryWrapper<BasicMaterialEntity> queryWrapper = new LambdaQueryWrapper<>(); |
|
|
|
|
if(basicMaterial.get("productCode") != null){ |
|
|
|
|
queryWrapper.like(BasicMaterialEntity::getProductCode,basicMaterial.get("productCode")); |
|
|
|
|
} |
|
|
|
|
if(basicMaterial.get("name") != null){ |
|
|
|
|
queryWrapper.like(BasicMaterialEntity::getName,basicMaterial.get("name")); |
|
|
|
|
} |
|
|
|
|
queryWrapper.eq(BasicMaterialEntity::getHide,1); |
|
|
|
|
queryWrapper.eq(BasicMaterialEntity::getIsDeleted,0); |
|
|
|
|
queryWrapper.last("limit 30"); |
|
|
|
|
basicMaterialVOList = baseMapper.selectList(queryWrapper).stream().map(basicMaterialEntity -> { |
|
|
|
|
BasicMaterialVO basicMaterialVO = new BasicMaterialVO(); |
|
|
|
|
BeanUtil.copy(basicMaterialEntity,basicMaterialVO); |
|
|
|
|
return basicMaterialVO; |
|
|
|
|
}).collect(Collectors.toList()); |
|
|
|
|
} catch (Exception e) { |
|
|
|
|
log.error("查询物料列表异常",e); |
|
|
|
|
throw new ServiceException("服务器异常,请联系管理员"); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return basicMaterialVOList; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|