|
|
@@ -0,0 +1,116 @@
|
|
|
+package com.zhongzheng.modules.order.service.impl;
|
|
|
+
|
|
|
+import cn.hutool.core.bean.BeanUtil;
|
|
|
+import cn.hutool.core.lang.Validator;
|
|
|
+import cn.hutool.core.util.StrUtil;
|
|
|
+import com.zhongzheng.common.utils.DateUtils;
|
|
|
+import com.zhongzheng.modules.course.domain.CourseSectionBusiness;
|
|
|
+import com.zhongzheng.modules.order.bo.OrderBusinessConfigGoodsAddBo;
|
|
|
+import com.zhongzheng.modules.order.bo.OrderBusinessConfigGoodsEditBo;
|
|
|
+import com.zhongzheng.modules.order.bo.OrderBusinessConfigGoodsQueryBo;
|
|
|
+import com.zhongzheng.modules.order.domain.OrderBusinessConfigGoods;
|
|
|
+import com.zhongzheng.modules.order.mapper.OrderBusinessConfigGoodsMapper;
|
|
|
+import com.zhongzheng.modules.order.service.IOrderBusinessConfigGoodsService;
|
|
|
+import com.zhongzheng.modules.order.vo.OrderBusinessConfigGoodsVo;
|
|
|
+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-04-01
|
|
|
+ */
|
|
|
+@Service
|
|
|
+public class OrderBusinessConfigGoodsServiceImpl extends ServiceImpl<OrderBusinessConfigGoodsMapper, OrderBusinessConfigGoods> implements IOrderBusinessConfigGoodsService {
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public OrderBusinessConfigGoodsVo queryById(Long id){
|
|
|
+ OrderBusinessConfigGoods db = this.baseMapper.selectById(id);
|
|
|
+ return BeanUtil.toBean(db, OrderBusinessConfigGoodsVo.class);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<OrderBusinessConfigGoodsVo> queryList(OrderBusinessConfigGoodsQueryBo bo) {
|
|
|
+ LambdaQueryWrapper<OrderBusinessConfigGoods> lqw = Wrappers.lambdaQuery();
|
|
|
+ lqw.eq(bo.getConfigId() != null, OrderBusinessConfigGoods::getConfigId, bo.getConfigId());
|
|
|
+ lqw.eq(bo.getSubjectId() != null, OrderBusinessConfigGoods::getSubjectId, bo.getSubjectId());
|
|
|
+ lqw.eq(StrUtil.isNotBlank(bo.getGoodsIds()), OrderBusinessConfigGoods::getGoodsIds, bo.getGoodsIds());
|
|
|
+ lqw.eq(bo.getStatus() != null, OrderBusinessConfigGoods::getStatus, bo.getStatus());
|
|
|
+ return entity2Vo(this.list(lqw));
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 实体类转化成视图对象
|
|
|
+ *
|
|
|
+ * @param collection 实体类集合
|
|
|
+ * @return
|
|
|
+ */
|
|
|
+ private List<OrderBusinessConfigGoodsVo> entity2Vo(Collection<OrderBusinessConfigGoods> collection) {
|
|
|
+ List<OrderBusinessConfigGoodsVo> voList = collection.stream()
|
|
|
+ .map(any -> BeanUtil.toBean(any, OrderBusinessConfigGoodsVo.class))
|
|
|
+ .collect(Collectors.toList());
|
|
|
+ if (collection instanceof Page) {
|
|
|
+ Page<OrderBusinessConfigGoods> page = (Page<OrderBusinessConfigGoods>)collection;
|
|
|
+ Page<OrderBusinessConfigGoodsVo> pageVo = new Page<>();
|
|
|
+ BeanUtil.copyProperties(page,pageVo);
|
|
|
+ pageVo.addAll(voList);
|
|
|
+ voList = pageVo;
|
|
|
+ }
|
|
|
+ return voList;
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean insertByAddBo(OrderBusinessConfigGoodsAddBo bo) {
|
|
|
+ OrderBusinessConfigGoods add = BeanUtil.toBean(bo, OrderBusinessConfigGoods.class);
|
|
|
+ validEntityBeforeSave(add);
|
|
|
+ add.setCreateTime(DateUtils.getNowTime());
|
|
|
+ add.setUpdateTime(DateUtils.getNowTime());
|
|
|
+ return this.save(add);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean updateByEditBo(OrderBusinessConfigGoodsEditBo bo) {
|
|
|
+ if(bo.getStatus()==-1){
|
|
|
+ //删除
|
|
|
+ if(Validator.isNotEmpty(bo.getConfigId())&&Validator.isNotEmpty(bo.getSubjectId())){
|
|
|
+ remove(new LambdaQueryWrapper<OrderBusinessConfigGoods>().eq(OrderBusinessConfigGoods::getConfigId, bo.getConfigId()).eq(OrderBusinessConfigGoods::getSubjectId, bo.getSubjectId()));
|
|
|
+ }
|
|
|
+ return true;
|
|
|
+ }
|
|
|
+ OrderBusinessConfigGoods update = BeanUtil.toBean(bo, OrderBusinessConfigGoods.class);
|
|
|
+ validEntityBeforeSave(update);
|
|
|
+ update.setUpdateTime(DateUtils.getNowTime());
|
|
|
+ return this.updateById(update);
|
|
|
+ }
|
|
|
+
|
|
|
+ /**
|
|
|
+ * 保存前的数据校验
|
|
|
+ *
|
|
|
+ * @param entity 实体类数据
|
|
|
+ */
|
|
|
+ private void validEntityBeforeSave(OrderBusinessConfigGoods entity){
|
|
|
+ //TODO 做一些数据校验,如唯一约束
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public Boolean deleteWithValidByIds(Collection<Long> ids, Boolean isValid) {
|
|
|
+ if(isValid){
|
|
|
+ //TODO 做一些业务上的校验,判断是否需要校验
|
|
|
+ }
|
|
|
+ return this.removeByIds(ids);
|
|
|
+ }
|
|
|
+
|
|
|
+ @Override
|
|
|
+ public List<OrderBusinessConfigGoodsVo> selectList(OrderBusinessConfigGoodsQueryBo bo) {
|
|
|
+ return this.baseMapper.selectList(bo);
|
|
|
+ }
|
|
|
+}
|