|
@@ -0,0 +1,109 @@
|
|
|
+package com.zhongzheng.modules.distribution.service.impl;
|
|
|
+
|
|
|
+import cn.hutool.core.bean.BeanUtil;
|
|
|
+import cn.hutool.core.util.StrUtil;
|
|
|
+import com.zhongzheng.common.utils.DateUtils;
|
|
|
+import com.zhongzheng.modules.distribution.bo.DistributionCashWithdrawalAddBo;
|
|
|
+import com.zhongzheng.modules.distribution.bo.DistributionCashWithdrawalEditBo;
|
|
|
+import com.zhongzheng.modules.distribution.bo.DistributionCashWithdrawalQueryBo;
|
|
|
+import com.zhongzheng.modules.distribution.domain.DistributionCashWithdrawal;
|
|
|
+import com.zhongzheng.modules.distribution.mapper.DistributionCashWithdrawalMapper;
|
|
|
+import com.zhongzheng.modules.distribution.service.IDistributionCashWithdrawalService;
|
|
|
+import com.zhongzheng.modules.distribution.vo.DistributionCashWithdrawalVo;
|
|
|
+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 ruoyi
|
|
|
+ * @date 2023-03-25
|
|
|
+ */
|
|
|
+@Service
|
|
|
+public class DistributionCashWithdrawalServiceImpl extends ServiceImpl<DistributionCashWithdrawalMapper, DistributionCashWithdrawal> implements IDistributionCashWithdrawalService {
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public DistributionCashWithdrawalVo queryById(Long id){
|
|
|
+ DistributionCashWithdrawal db = this.baseMapper.selectById(id);
|
|
|
+ return BeanUtil.toBean(db, DistributionCashWithdrawalVo.class);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<DistributionCashWithdrawalVo> queryList(DistributionCashWithdrawalQueryBo bo) {
|
|
|
+ LambdaQueryWrapper<DistributionCashWithdrawal> lqw = Wrappers.lambdaQuery();
|
|
|
+ lqw.eq(StrUtil.isNotBlank(bo.getCwSn()), DistributionCashWithdrawal::getCwSn, bo.getCwSn());
|
|
|
+ lqw.eq(bo.getSellerId() != null, DistributionCashWithdrawal::getSellerId, bo.getSellerId());
|
|
|
+ lqw.eq(bo.getCwStatus() != null, DistributionCashWithdrawal::getCwStatus, bo.getCwStatus());
|
|
|
+ lqw.eq(bo.getStatus() != null, DistributionCashWithdrawal::getStatus, bo.getStatus());
|
|
|
+ lqw.eq(bo.getPayTime() != null, DistributionCashWithdrawal::getPayTime, bo.getPayTime());
|
|
|
+ lqw.eq(bo.getRefundTime() != null, DistributionCashWithdrawal::getRefundTime, bo.getRefundTime());
|
|
|
+ lqw.eq(StrUtil.isNotBlank(bo.getRefundResaon()), DistributionCashWithdrawal::getRefundResaon, bo.getRefundResaon());
|
|
|
+ lqw.eq(bo.getCash() != null, DistributionCashWithdrawal::getCash, bo.getCash());
|
|
|
+ lqw.eq(bo.getApplyTime() != null, DistributionCashWithdrawal::getApplyTime, bo.getApplyTime());
|
|
|
+ return entity2Vo(this.list(lqw));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 实体类转化成视图对象
|
|
|
+ *
|
|
|
+ * @param collection 实体类集合
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ private List<DistributionCashWithdrawalVo> entity2Vo(Collection<DistributionCashWithdrawal> collection) {
|
|
|
+ List<DistributionCashWithdrawalVo> voList = collection.stream()
|
|
|
+ .map(any -> BeanUtil.toBean(any, DistributionCashWithdrawalVo.class))
|
|
|
+ .collect(Collectors.toList());
|
|
|
+ if (collection instanceof Page) {
|
|
|
+ Page<DistributionCashWithdrawal> page = (Page<DistributionCashWithdrawal>)collection;
|
|
|
+ Page<DistributionCashWithdrawalVo> pageVo = new Page<>();
|
|
|
+ BeanUtil.copyProperties(page,pageVo);
|
|
|
+ pageVo.addAll(voList);
|
|
|
+ voList = pageVo;
|
|
|
+ }
|
|
|
+ return voList;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean insertByAddBo(DistributionCashWithdrawalAddBo bo) {
|
|
|
+ DistributionCashWithdrawal add = BeanUtil.toBean(bo, DistributionCashWithdrawal.class);
|
|
|
+ validEntityBeforeSave(add);
|
|
|
+ add.setCwStatus(0);
|
|
|
+ add.setCreateTime(DateUtils.getNowTime());
|
|
|
+ add.setUpdateTime(DateUtils.getNowTime());
|
|
|
+ add.setApplyTime(DateUtils.getNowTime());
|
|
|
+ return this.save(add);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean updateByEditBo(DistributionCashWithdrawalEditBo bo) {
|
|
|
+ DistributionCashWithdrawal update = BeanUtil.toBean(bo, DistributionCashWithdrawal.class);
|
|
|
+ validEntityBeforeSave(update);
|
|
|
+ update.setUpdateTime(DateUtils.getNowTime());
|
|
|
+ return this.updateById(update);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 保存前的数据校验
|
|
|
+ *
|
|
|
+ * @param entity 实体类数据
|
|
|
+ */
|
|
|
+ private void validEntityBeforeSave(DistributionCashWithdrawal entity){
|
|
|
+ //TODO 做一些数据校验,如唯一约束
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid) {
|
|
|
+ if(isValid){
|
|
|
+ //TODO 做一些业务上的校验,判断是否需要校验
|
|
|
+ }
|
|
|
+ return this.removeByIds(ids);
|
|
|
+ }
|
|
|
+}
|