|
|
@@ -0,0 +1,105 @@
|
|
|
+package com.zhongzheng.modules.order.service.impl;
|
|
|
+
|
|
|
+import cn.hutool.core.bean.BeanUtil;
|
|
|
+import cn.hutool.core.util.StrUtil;
|
|
|
+import com.zhongzheng.common.utils.DateUtils;
|
|
|
+import com.zhongzheng.modules.order.bo.OrderGoodsRefundAddBo;
|
|
|
+import com.zhongzheng.modules.order.bo.OrderGoodsRefundEditBo;
|
|
|
+import com.zhongzheng.modules.order.bo.OrderGoodsRefundQueryBo;
|
|
|
+import com.zhongzheng.modules.order.domain.OrderGoodsRefund;
|
|
|
+import com.zhongzheng.modules.order.mapper.OrderGoodsRefundMapper;
|
|
|
+import com.zhongzheng.modules.order.service.IOrderGoodsRefundService;
|
|
|
+import com.zhongzheng.modules.order.vo.OrderGoodsRefundVo;
|
|
|
+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 2022-01-04
|
|
|
+ */
|
|
|
+@Service
|
|
|
+public class OrderGoodsRefundServiceImpl extends ServiceImpl<OrderGoodsRefundMapper, OrderGoodsRefund> implements IOrderGoodsRefundService {
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public OrderGoodsRefundVo queryById(Long refundId){
|
|
|
+ OrderGoodsRefund db = this.baseMapper.selectById(refundId);
|
|
|
+ return BeanUtil.toBean(db, OrderGoodsRefundVo.class);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<OrderGoodsRefundVo> queryList(OrderGoodsRefundQueryBo bo) {
|
|
|
+ LambdaQueryWrapper<OrderGoodsRefund> lqw = Wrappers.lambdaQuery();
|
|
|
+ lqw.eq(StrUtil.isNotBlank(bo.getRefundSn()), OrderGoodsRefund::getRefundSn, bo.getRefundSn());
|
|
|
+ lqw.eq(bo.getUserId() != null, OrderGoodsRefund::getUserId, bo.getUserId());
|
|
|
+ lqw.eq(StrUtil.isNotBlank(bo.getOrderSn()), OrderGoodsRefund::getOrderSn, bo.getOrderSn());
|
|
|
+ lqw.eq(bo.getGoodsId() != null, OrderGoodsRefund::getGoodsId, bo.getGoodsId());
|
|
|
+ lqw.eq(bo.getRefundFee() != null, OrderGoodsRefund::getRefundFee, bo.getRefundFee());
|
|
|
+ lqw.eq(bo.getStatus() != null, OrderGoodsRefund::getStatus, bo.getStatus());
|
|
|
+ lqw.eq(StrUtil.isNotBlank(bo.getWxpayRefundId()), OrderGoodsRefund::getWxpayRefundId, bo.getWxpayRefundId());
|
|
|
+ return entity2Vo(this.list(lqw));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 实体类转化成视图对象
|
|
|
+ *
|
|
|
+ * @param collection 实体类集合
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ private List<OrderGoodsRefundVo> entity2Vo(Collection<OrderGoodsRefund> collection) {
|
|
|
+ List<OrderGoodsRefundVo> voList = collection.stream()
|
|
|
+ .map(any -> BeanUtil.toBean(any, OrderGoodsRefundVo.class))
|
|
|
+ .collect(Collectors.toList());
|
|
|
+ if (collection instanceof Page) {
|
|
|
+ Page<OrderGoodsRefund> page = (Page<OrderGoodsRefund>)collection;
|
|
|
+ Page<OrderGoodsRefundVo> pageVo = new Page<>();
|
|
|
+ BeanUtil.copyProperties(page,pageVo);
|
|
|
+ pageVo.addAll(voList);
|
|
|
+ voList = pageVo;
|
|
|
+ }
|
|
|
+ return voList;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean insertByAddBo(OrderGoodsRefundAddBo bo) {
|
|
|
+ OrderGoodsRefund add = BeanUtil.toBean(bo, OrderGoodsRefund.class);
|
|
|
+ validEntityBeforeSave(add);
|
|
|
+ add.setCreateTime(DateUtils.getNowTime());
|
|
|
+ add.setUpdateTime(DateUtils.getNowTime());
|
|
|
+ return this.save(add);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean updateByEditBo(OrderGoodsRefundEditBo bo) {
|
|
|
+ OrderGoodsRefund update = BeanUtil.toBean(bo, OrderGoodsRefund.class);
|
|
|
+ validEntityBeforeSave(update);
|
|
|
+ update.setUpdateTime(DateUtils.getNowTime());
|
|
|
+ return this.updateById(update);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 保存前的数据校验
|
|
|
+ *
|
|
|
+ * @param entity 实体类数据
|
|
|
+ */
|
|
|
+ private void validEntityBeforeSave(OrderGoodsRefund entity){
|
|
|
+ //TODO 做一些数据校验,如唯一约束
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid) {
|
|
|
+ if(isValid){
|
|
|
+ //TODO 做一些业务上的校验,判断是否需要校验
|
|
|
+ }
|
|
|
+ return this.removeByIds(ids);
|
|
|
+ }
|
|
|
+}
|