From d2902daad7261ac7d0148dbb9f33f39e52d433f6 Mon Sep 17 00:00:00 2001 From: jiangping <jp@doumee.com> Date: 星期五, 16 八月 2024 18:15:40 +0800 Subject: [PATCH] Merge remote-tracking branch 'origin/master' --- server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/PlatformJobServiceImpl.java | 234 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 files changed, 234 insertions(+), 0 deletions(-) diff --git a/server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/PlatformJobServiceImpl.java b/server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/PlatformJobServiceImpl.java index 38cfd43..f8860db 100644 --- a/server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/PlatformJobServiceImpl.java +++ b/server/visits/dmvisit_service/src/main/java/com/doumee/service/business/impl/PlatformJobServiceImpl.java @@ -1,20 +1,45 @@ package com.doumee.service.business.impl; +import cn.hutool.crypto.asymmetric.Sign; +import com.doumee.biz.system.SystemDictDataBiz; +import com.doumee.core.constants.ResponseStatus; +import com.doumee.core.exception.BusinessException; +import com.doumee.core.model.LoginUserInfo; import com.doumee.core.model.PageData; import com.doumee.core.model.PageWrap; +import com.doumee.core.utils.Constants; +import com.doumee.core.utils.DateUtil; +import com.doumee.core.utils.PositionUtil; import com.doumee.core.utils.Utils; import com.doumee.dao.business.PlatformJobMapper; +import com.doumee.dao.business.PlatformMapper; +import com.doumee.dao.business.join.PlatformJobJoinMapper; +import com.doumee.dao.business.model.Platform; +import com.doumee.dao.business.model.PlatformBooks; import com.doumee.dao.business.model.PlatformJob; +import com.doumee.dao.business.model.PlatformReason; +import com.doumee.dao.web.reqeust.JobDetailDTO; +import com.doumee.dao.web.reqeust.LineUpDetailDTO; +import com.doumee.dao.web.reqeust.SignInDTO; +import com.doumee.dao.web.response.DriverHomeVO; +import com.doumee.dao.web.response.LineUpVO; import com.doumee.service.business.PlatformJobService; import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper; import com.baomidou.mybatisplus.core.conditions.update.UpdateWrapper; import com.baomidou.mybatisplus.core.metadata.IPage; import com.baomidou.mybatisplus.extension.plugins.pagination.Page; +import com.github.yulichang.wrapper.MPJLambdaWrapper; +import org.apache.commons.lang3.StringUtils; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; +import org.springframework.transaction.annotation.Transactional; import org.springframework.util.CollectionUtils; +import java.math.BigDecimal; +import java.util.Date; import java.util.List; +import java.util.Objects; +import java.util.stream.Collectors; /** * 鏈堝彴璋冨害浣滀笟淇℃伅琛⊿ervice瀹炵幇 @@ -26,6 +51,16 @@ @Autowired private PlatformJobMapper platformJobMapper; + + @Autowired + private PlatformJobJoinMapper platformJobJoinMapper; + + @Autowired + private SystemDictDataBiz systemDictDataBiz; + + @Autowired + private PlatformMapper platformMapper; + @Override public Integer create(PlatformJob platformJob) { @@ -178,4 +213,203 @@ QueryWrapper<PlatformJob> wrapper = new QueryWrapper<>(platformJob); return platformJobMapper.selectCount(wrapper); } + + //TODO + @Override + public DriverHomeVO getDriverHome(Integer memberId){ + DriverHomeVO driverHomeVO = new DriverHomeVO(); + //TODO 杞挱鍥� + + List<PlatformJob> platformJobList = platformJobMapper.selectList(new QueryWrapper<PlatformJob>() + .lambda() + .eq(PlatformJob::getDriverId,memberId) +// .like(PlatformJob::get) + .orderByDesc(PlatformJob::getId)); + driverHomeVO.setPlatformJobList(platformJobList); + + + return driverHomeVO; + } + + + /** + * 璺濈绛惧埌 + * @param signInDTO + */ + @Override + @Transactional(rollbackFor = {BusinessException.class,Exception.class}) + public void signIn(SignInDTO signInDTO){ + if(Objects.isNull(signInDTO) + || Objects.isNull(signInDTO.getSignType()) + || Objects.isNull(signInDTO.getJobId())){ + throw new BusinessException(ResponseStatus.BAD_REQUEST); + } + PlatformJob platformJob = platformJobMapper.selectById(signInDTO.getJobId()); + if(Objects.isNull(platformJob)){ + throw new BusinessException(ResponseStatus.DATA_EMPTY); + } + if(!Constants.equalsInteger(platformJob.getStatus(),Constants.PlatformJobStatus.WART_SIGN_IN.getKey())){ + throw new BusinessException(ResponseStatus.NOT_ALLOWED.getCode(),"涓氬姟鐘舵�佸凡娴佽浆锛岃鍒锋柊鏌ョ湅"); + } + if(Constants.equalsInteger(signInDTO.getSignType(),Constants.ZERO)){ + this.distanceSignIn(signInDTO,platformJob); + }else if(Constants.equalsInteger(signInDTO.getSignType(),Constants.ONE)){ + this.sceneSignIn(signInDTO); + } + platformJob.setSignDate(new Date()); + platformJob.setSingType(Constants.ZERO); + platformJob.setStatus(Constants.PlatformJobStatus.WAIT_CALL.getKey()); + platformJobMapper.updateById(platformJob); + } + + + public void distanceSignIn(SignInDTO signInDTO , PlatformJob platformJob){ + if(Objects.isNull(signInDTO.getLat()) + || Objects.isNull(signInDTO.getLnt())){ + throw new BusinessException(ResponseStatus.BAD_REQUEST.getCode(),"缁忕含搴︿俊鎭紓甯�"); + } + //鑾峰彇绛惧埌鐐圭殑缁忕含搴� + Double lat = Double.parseDouble(systemDictDataBiz.queryByCode(Constants.PLATFORM,Constants.SIGN_IN_PLACE_LAT).getCode()); + Double lnt = Double.parseDouble(systemDictDataBiz.queryByCode(Constants.PLATFORM,Constants.SIGN_IN_PLACE_LNT).getCode()); + BigDecimal distance = new BigDecimal(systemDictDataBiz.queryByCode(Constants.PLATFORM,Constants.SIGN_IN_PLACE_DISTANCE).getCode()); + //鑾峰彇2涓偣鐨勮窛绂籜绫� + Double getDistanceDouble = PositionUtil.getDistance(signInDTO.getLnt(),signInDTO.getLat(),lnt,lat); + //杞崲km + BigDecimal getDistance = BigDecimal.valueOf(getDistanceDouble).divide(new BigDecimal(1000),2,BigDecimal.ROUND_HALF_UP); + if(distance.compareTo(getDistance)<Constants.ZERO){ + throw new BusinessException(ResponseStatus.NOT_ALLOWED.getCode(),"瓒呭嚭鍙鍒拌窛绂伙紝鍙鍒拌窛绂籟"+distance+"]鍏噷]"); + } + platformJob.setSignDistance(BigDecimal.valueOf(getDistanceDouble)); + } + + public void sceneSignIn(SignInDTO signInDTO){ + if( StringUtils.isNotBlank(signInDTO.getQrCodeKey())){ + throw new BusinessException(ResponseStatus.BAD_REQUEST); + } + if(!signInDTO.getQrCodeKey().equals(systemDictDataBiz.queryByCode(Constants.PLATFORM,Constants.SIGN_IN_QRCODE).getCode())){ + throw new BusinessException(ResponseStatus.BAD_REQUEST.getCode(),"浜岀淮鐮佸凡杩囨湡,璇峰埛鏂伴噸璇�"); + } + } + + + @Override + public PlatformJob getDetail(JobDetailDTO jobDetailDTO){ + if(Objects.isNull(jobDetailDTO) + || Objects.isNull(jobDetailDTO.getJobId())){ + throw new BusinessException(ResponseStatus.BAD_REQUEST); + } + PlatformJob platformJob = platformJobMapper.selectById(jobDetailDTO.getJobId()); + if(Objects.isNull(platformJob)){ + throw new BusinessException(ResponseStatus.DATA_EMPTY); + } + if(Constants.equalsInteger(platformJob.getStatus(),Constants.PlatformJobStatus.WART_SIGN_IN.getKey())){ + //寰呯鍒� 璁$畻璺濈 + if(Objects.nonNull(jobDetailDTO.getLnt())&&Objects.nonNull(jobDetailDTO.getLat())){ + //鑾峰彇绛惧埌鐐圭殑缁忕含搴� + Double lat = Double.parseDouble(systemDictDataBiz.queryByCode(Constants.PLATFORM,Constants.SIGN_IN_PLACE_LAT).getCode()); + Double lnt = Double.parseDouble(systemDictDataBiz.queryByCode(Constants.PLATFORM,Constants.SIGN_IN_PLACE_LNT).getCode()); + //鑾峰彇2涓偣鐨勮窛绂籜绫� + Double getDistanceDouble = PositionUtil.getDistance(jobDetailDTO.getLnt(),jobDetailDTO.getLat(),lnt,lat); + //杞崲km + BigDecimal getDistance = BigDecimal.valueOf(getDistanceDouble).divide(new BigDecimal(1000),2,BigDecimal.ROUND_HALF_UP); + platformJob.setGetDistance(getDistance); + } + }else if( Constants.equalsInteger(platformJob.getStatus(),Constants.PlatformJobStatus.WAIT_CALL.getKey()) + || Constants.equalsInteger(platformJob.getStatus(),Constants.PlatformJobStatus.IN_WAIT.getKey()) + ){//鏌ヨ鎺掗槦鎯呭喌 + Long lineUpNum = platformJobMapper.selectCount(new QueryWrapper<PlatformJob>().lambda() + .eq(PlatformJob::getIsdeleted,Constants.ZERO) + .in(PlatformJob::getStatus,Constants.PlatformJobStatus.WAIT_CALL.getKey() + ,Constants.PlatformJobStatus.IN_WAIT.getKey() + ,Constants.PlatformJobStatus.TRANSFERING.getKey()) + .gt(PlatformJob::getSignDate,platformJob.getSignDate()) + .like(PlatformJob::getArriveDate,DateUtil.getDate(platformJob.getArriveDate(),"yyyy-MM-dd"))); + platformJob.setLineUpNum(lineUpNum); + }else if(Constants.equalsInteger(platformJob.getStatus(),Constants.PlatformJobStatus.WORKING.getKey())){ + //浣滀笟鏈堝彴淇℃伅 + Platform platform = platformMapper.selectById(platformJob.getPlatformId()); + if(Objects.nonNull(platform)){ + platformJob.setPlatformName(platform.getName()); + } + } + return platformJob; + } + + + + @Override + public LineUpVO lineUpDetail(LineUpDetailDTO lineUpDetailDTO){ + if(Objects.isNull(lineUpDetailDTO) + || Objects.isNull(lineUpDetailDTO.getQueryType())){ + throw new BusinessException(ResponseStatus.BAD_REQUEST); + } + LineUpVO lineUpVO = new LineUpVO(); + //鏌ヨ鎵�鏈変换鍔� + List<PlatformJob> platformJobList = platformJobJoinMapper.selectJoinList(PlatformJob.class, + new MPJLambdaWrapper<PlatformJob>() + .selectAll(PlatformJob.class) + .selectAs(PlatformReason::getGroupId,PlatformJob::getGroupId) + .leftJoin(PlatformBooks.class,PlatformBooks::getJobId,PlatformJob::getId) + .leftJoin(PlatformReason.class,PlatformReason::getId,PlatformBooks::getReasonId) + .eq(PlatformJob::getIsdeleted,Constants.ZERO) + .eq(Constants.equalsInteger(lineUpDetailDTO.getQueryType(),Constants.ZERO) + ,PlatformJob::getDrivierPhone,lineUpDetailDTO.getMobile()) + .eq(Constants.equalsInteger(lineUpDetailDTO.getQueryType(),Constants.ONE) + ,PlatformJob::getId,lineUpDetailDTO.getJobId()) + .in(PlatformJob::getStatus,Constants.PlatformJobStatus.WAIT_CALL.getKey(), + Constants.PlatformJobStatus.IN_WAIT.getKey(), + Constants.PlatformJobStatus.CALLED.getKey()) + .orderByAsc(PlatformJob::getSignDate) + ); + //鑾峰彇鎵�鏈夋湀鍙� + List<Integer> platformIdList = platformJobList.stream().map(m->m.getGroupId()).collect(Collectors.toList()); + List<Platform> platformList = platformMapper.selectList(new QueryWrapper<Platform>().lambda() + .eq(Platform::getIsdeleted,Constants.ZERO) + .in(Platform::getId,platformIdList)); + + for (Platform platform:platformList) { + //鏌ヨ鏈湀鍙颁笅 鑷繁鐨勬暟鎹� 鏈�鏃╃鍒扮殑 + PlatformJob platformJob = platformJobList.stream().filter(i->Constants.equalsInteger(i.getGroupId(),platform.getId())).findFirst().orElse(null); + //鏌ヨ鍦ㄥ綋鍓嶆湀鍙颁笅 绛惧埌鎺掗槦杞﹁締鏁版嵁 + List<PlatformJob> platformJobSignInList = platformJobJoinMapper.selectJoinList(PlatformJob.class, + new MPJLambdaWrapper<PlatformJob>() + .selectAll(PlatformJob.class) + .selectAs(PlatformReason::getGroupId,PlatformJob::getGroupId) + .leftJoin(PlatformBooks.class,PlatformBooks::getJobId,PlatformJob::getId) + .leftJoin(PlatformReason.class,PlatformReason::getId,PlatformBooks::getReasonId) + .eq(PlatformJob::getIsdeleted,Constants.ZERO) + .ge(Objects.nonNull(platformJob),PlatformJob::getSignDate,DateUtil.getDate(platformJob.getSignDate(),"yyyy-MM-dd HH:mm:ss")) + .in(PlatformJob::getStatus,Constants.PlatformJobStatus.WAIT_CALL.getKey(), + Constants.PlatformJobStatus.IN_WAIT.getKey(), + Constants.PlatformJobStatus.CALLED.getKey()) + .orderByDesc(PlatformJob::getSignDate)); + platform.setSignJobList(platformJobSignInList); + //鏌ヨ褰撳墠鏈堝彴涓� + List<PlatformJob> platformJobWorkList = platformJobJoinMapper.selectJoinList(PlatformJob.class, + new MPJLambdaWrapper<PlatformJob>() + .selectAll(PlatformJob.class) + .selectAs(PlatformReason::getGroupId,PlatformJob::getGroupId) + .leftJoin(PlatformBooks.class,PlatformBooks::getJobId,PlatformJob::getId) + .leftJoin(PlatformReason.class,PlatformReason::getId,PlatformBooks::getReasonId) + .eq(PlatformJob::getIsdeleted,Constants.ZERO) + .eq(PlatformJob::getStatus,Constants.PlatformJobStatus.WORKING.getKey()) + .orderByDesc(PlatformJob::getSignDate)); + platform.setSignJobList(platformJobSignInList); + platform.setWorkJobList(platformJobWorkList); + } + + + + + + + + lineUpVO.setPlatformList(platformList); + + + return lineUpVO; + } + + + } -- Gitblit v1.9.3