|
|
@@ -0,0 +1,103 @@
|
|
|
+package com.zhongzheng.modules.top.financial.service.impl;
|
|
|
+
|
|
|
+import cn.hutool.core.bean.BeanUtil;
|
|
|
+import cn.hutool.core.util.StrUtil;
|
|
|
+import com.zhongzheng.common.utils.DateUtils;
|
|
|
+import com.zhongzheng.modules.top.financial.bo.TopCostInstTpAddBo;
|
|
|
+import com.zhongzheng.modules.top.financial.bo.TopCostInstTpEditBo;
|
|
|
+import com.zhongzheng.modules.top.financial.bo.TopCostInstTpQueryBo;
|
|
|
+import com.zhongzheng.modules.top.financial.domain.TopCostInstTp;
|
|
|
+import com.zhongzheng.modules.top.financial.mapper.TopCostInstTpMapper;
|
|
|
+import com.zhongzheng.modules.top.financial.service.ITopCostInstTpService;
|
|
|
+import com.zhongzheng.modules.top.financial.vo.TopCostInstTpVo;
|
|
|
+import org.springframework.stereotype.Service;
|
|
|
+import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
|
|
+import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
|
|
+import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
|
|
+import com.github.pagehelper.Page;
|
|
|
+
|
|
|
+
|
|
|
+import java.util.Collection;
|
|
|
+import java.util.Collections;
|
|
|
+import java.util.List;
|
|
|
+import java.util.stream.Collectors;
|
|
|
+
|
|
|
+/**
|
|
|
+ * 供应商成本模板Service业务层处理
|
|
|
+ *
|
|
|
+ * @author hjl
|
|
|
+ * @date 2023-07-21
|
|
|
+ */
|
|
|
+@Service
|
|
|
+public class TopCostInstTpServiceImpl extends ServiceImpl<TopCostInstTpMapper, TopCostInstTp> implements ITopCostInstTpService {
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public TopCostInstTpVo queryById(Long tpId){
|
|
|
+ TopCostInstTp db = this.baseMapper.selectById(tpId);
|
|
|
+ return BeanUtil.toBean(db, TopCostInstTpVo.class);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<TopCostInstTpVo> queryList(TopCostInstTpQueryBo bo) {
|
|
|
+ LambdaQueryWrapper<TopCostInstTp> lqw = Wrappers.lambdaQuery();
|
|
|
+ lqw.like(StrUtil.isNotBlank(bo.getTpName()), TopCostInstTp::getTpName, bo.getTpName());
|
|
|
+ lqw.eq(bo.getStatus() != null, TopCostInstTp::getStatus, bo.getStatus());
|
|
|
+ lqw.eq(bo.getDefaultStatus() != null, TopCostInstTp::getDefaultStatus, bo.getDefaultStatus());
|
|
|
+ lqw.eq(bo.getInstId() != null, TopCostInstTp::getInstId, bo.getInstId());
|
|
|
+ return entity2Vo(this.list(lqw));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 实体类转化成视图对象
|
|
|
+ *
|
|
|
+ * @param collection 实体类集合
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ private List<TopCostInstTpVo> entity2Vo(Collection<TopCostInstTp> collection) {
|
|
|
+ List<TopCostInstTpVo> voList = collection.stream()
|
|
|
+ .map(any -> BeanUtil.toBean(any, TopCostInstTpVo.class))
|
|
|
+ .collect(Collectors.toList());
|
|
|
+ if (collection instanceof Page) {
|
|
|
+ Page<TopCostInstTp> page = (Page<TopCostInstTp>)collection;
|
|
|
+ Page<TopCostInstTpVo> pageVo = new Page<>();
|
|
|
+ BeanUtil.copyProperties(page,pageVo);
|
|
|
+ pageVo.addAll(voList);
|
|
|
+ voList = pageVo;
|
|
|
+ }
|
|
|
+ return voList;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean insertByAddBo(TopCostInstTpAddBo bo) {
|
|
|
+ TopCostInstTp add = BeanUtil.toBean(bo, TopCostInstTp.class);
|
|
|
+ validEntityBeforeSave(add);
|
|
|
+ add.setCreateTime(DateUtils.getNowTime());
|
|
|
+ add.setUpdateTime(DateUtils.getNowTime());
|
|
|
+ return this.save(add);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean updateByEditBo(TopCostInstTpEditBo bo) {
|
|
|
+ TopCostInstTp update = BeanUtil.toBean(bo, TopCostInstTp.class);
|
|
|
+ validEntityBeforeSave(update);
|
|
|
+ update.setUpdateTime(DateUtils.getNowTime());
|
|
|
+ return this.updateById(update);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 保存前的数据校验
|
|
|
+ *
|
|
|
+ * @param entity 实体类数据
|
|
|
+ */
|
|
|
+ private void validEntityBeforeSave(TopCostInstTp entity){
|
|
|
+ //TODO 做一些数据校验,如唯一约束
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid) {
|
|
|
+ if(isValid){
|
|
|
+ //TODO 做一些业务上的校验,判断是否需要校验
|
|
|
+ }
|
|
|
+ return this.removeByIds(ids);
|
|
|
+ }
|
|
|
+}
|