From c016e33c4608da0079dfc055541b03d18fd27a75 Mon Sep 17 00:00:00 2001
From: heheng <heheng@123456>
Date: 星期三, 05 二月 2025 17:08:54 +0800
Subject: [PATCH] 新增强制校验

---
 exam-system/src/main/java/com/gkhy/exam/pay/service/impl/CoalPayServiceImpl.java |  215 ++++++++++++++++++++++++++++++++++++-----------------
 1 files changed, 144 insertions(+), 71 deletions(-)

diff --git a/exam-system/src/main/java/com/gkhy/exam/pay/service/impl/CoalPayServiceImpl.java b/exam-system/src/main/java/com/gkhy/exam/pay/service/impl/CoalPayServiceImpl.java
index 4043ca1..a7ede06 100644
--- a/exam-system/src/main/java/com/gkhy/exam/pay/service/impl/CoalPayServiceImpl.java
+++ b/exam-system/src/main/java/com/gkhy/exam/pay/service/impl/CoalPayServiceImpl.java
@@ -3,10 +3,7 @@
 import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
 import com.gkhy.exam.pay.dto.rep.CoalPayRepDto;
 import com.gkhy.exam.pay.dto.rep.CoalPayStudentRep;
-import com.gkhy.exam.pay.dto.req.CoalPayDto;
-import com.gkhy.exam.pay.dto.req.CoalPayReq;
-import com.gkhy.exam.pay.dto.req.CoalPayStudentReq;
-import com.gkhy.exam.pay.dto.req.CoalPayTypeReq;
+import com.gkhy.exam.pay.dto.req.*;
 import com.gkhy.exam.pay.entity.*;
 import com.gkhy.exam.pay.mapper.CoalCategoryMapper;
 import com.gkhy.exam.pay.mapper.CoalPayCategoryMapper;
@@ -15,6 +12,7 @@
 import com.gkhy.exam.pay.service.CoalPayStudentService;
 import com.gkhy.exam.pay.utils.PayUtils;
 import com.gkhy.exam.pay.utils.ResultVo;
+import com.gkhy.exam.pay.utils.Sign;
 import com.ruoyi.common.constant.ResultConstants;
 import com.ruoyi.common.core.domain.AjaxResult;
 import com.ruoyi.common.core.domain.entity.SysDept;
@@ -23,7 +21,7 @@
 import com.ruoyi.common.utils.SecurityUtils;
 import com.ruoyi.common.utils.StringUtils;
 import com.ruoyi.system.mapper.SysDeptMapper;
-import org.aspectj.lang.reflect.UnlockSignature;
+import org.dom4j.Element;
 import org.redisson.api.RLock;
 import org.redisson.api.RedissonClient;
 import org.springframework.beans.BeanUtils;
@@ -33,11 +31,11 @@
 
 import javax.annotation.Resource;
 import java.io.IOException;
+import java.math.BigDecimal;
 import java.util.ArrayList;
 import java.util.Date;
 import java.util.List;
 import java.util.concurrent.TimeUnit;
-import java.util.concurrent.locks.Lock;
 import java.util.stream.Collectors;
 
 @Service
@@ -58,11 +56,13 @@
     @Autowired
     private RedissonClient redissonClient;
 
-
+    @Autowired
+    private PayUtils payUtils;
 
 
     /**
      * 缴费管理列表
+     *
      * @param coalPay
      * @return
      */
@@ -72,7 +72,7 @@
         List<CoalPay> coalPays = coalPayMapper.selectCoalPayList(coalPay);
         for (CoalPay pay : coalPays) {
             CoalPayRepDto coalPayRepDto = new CoalPayRepDto();
-            BeanUtils.copyProperties(pay,coalPayRepDto);
+            BeanUtils.copyProperties(pay, coalPayRepDto);
             //部门数据
             SysDept sysDept = sysDeptMapper.selectDeptById(pay.getDeptId());
             coalPayRepDto.setDeptName(sysDept.getDeptName());
@@ -82,7 +82,7 @@
             //学员数据
             List<CoalPayStudent> coalPayStudents = coalPayStudentService.selectByCoalPayId(pay.getId());
             List<CoalPayStudent> havePay = coalPayStudents.stream()
-                    .filter(stu -> stu.getPayStatus() != null && stu.getPayStatus().equals(1))
+                    .filter(stu -> stu.getPayStatus() != null && stu.getPayStatus()==1)
                     .collect(Collectors.toList());
             coalPayRepDto.setTotalNum(coalPayStudents.size());
             coalPayRepDto.setHavePayNum(havePay.size());
@@ -98,7 +98,7 @@
 
         //基本数据
         CoalPay coalPay = coalPayMapper.selectById(id);
-        BeanUtils.copyProperties(coalPay,coalPayRepDto);
+        BeanUtils.copyProperties(coalPay, coalPayRepDto);
         //考点名称
         SysDept sysDept = sysDeptMapper.selectDeptById(coalPay.getDeptId());
         coalPayRepDto.setDeptName(sysDept.getDeptName());
@@ -120,12 +120,12 @@
     @Override
     public int insertCoalPay(CoalPayDto coalPayDto) {
         CoalPay coalPay = new CoalPay();
-        BeanUtils.copyProperties(coalPayDto,coalPay);
+        BeanUtils.copyProperties(coalPayDto, coalPay);
         coalPay.setCreateBy(SecurityUtils.getUsername());
         coalPay.setCreateTime(new Date());
         int insert = coalPayMapper.insertBath(coalPay);
-        if (CollectionUtils.isEmpty(coalPayDto.getCoalPayCategoryies())){
-            throw new BusinessException(this.getClass(),ResultConstants.BUSINESS_ERROR,"工种类别不能为空");
+        if (CollectionUtils.isEmpty(coalPayDto.getCoalPayCategoryies())) {
+            throw new BusinessException(this.getClass(), ResultConstants.BUSINESS_ERROR, "工种类别不能为空");
         }
         List<CoalPayCategory> coalPayCategories = coalPayDto.getCoalPayCategoryies();
         for (CoalPayCategory coalPayCategory : coalPayCategories) {
@@ -137,18 +137,19 @@
 
     /**
      * 修改缴费信息
+     *
      * @param coalPayDto
      * @return
      */
     @Override
     public int updateCoalPay(CoalPayDto coalPayDto) {
         CoalPay coalPay = new CoalPay();
-        BeanUtils.copyProperties(coalPayDto,coalPay);
+        BeanUtils.copyProperties(coalPayDto, coalPay);
         coalPay.setUpdateBy(SecurityUtils.getUsername());
         coalPay.setUpdateTime(new Date());
         int i = coalPayMapper.updateCoalPayById(coalPay);
         int update = coalPayCategoryMapper.deleteByCoalPayId(coalPayDto.getId());
-        if (update>0){
+        if (update > 0) {
             List<CoalPayCategory> coalPayCategories = coalPayDto.getCoalPayCategoryies();
             for (CoalPayCategory coalPayCategory : coalPayCategories) {
                 coalPayCategory.setCoalPayId(coalPay.getId());
@@ -161,13 +162,13 @@
     @Override
     public AjaxResult deleteCoalPayByIds(Long[] ids) {
         for (Long id : ids) {
-            List<CoalPayStudent> coalPayStudents = coalPayStudentService.selectByCoalPayIdAndPayStatus(id,1);
-            if (!CollectionUtils.isEmpty(coalPayStudents)){
-                throw new BusinessException(this.getClass(), ResultConstants.BUSINESS_ERROR,"已有学员完成缴费,请勿删除");
+            List<CoalPayStudent> coalPayStudents = coalPayStudentService.selectByCoalPayIdAndPayStatus(id, 1);
+            if (!CollectionUtils.isEmpty(coalPayStudents)) {
+                throw new BusinessException(this.getClass(), ResultConstants.BUSINESS_ERROR, "已有学员完成缴费,请勿删除");
             }
         }
         int i = coalPayMapper.updateByIds(ids);
-        if (i>0){
+        if (i > 0) {
             return AjaxResult.success();
         }
         return AjaxResult.error();
@@ -175,7 +176,7 @@
 
     //个人查询缴费
     @Override
-    public List<CoalPayStudentRep> selectCoalPay(String idcard,String phone) {
+    public List<CoalPayStudentRep> selectCoalPay(String idcard, String phone) {
         CoalPayStudentReq coalPayStudentReq = new CoalPayStudentReq();
         coalPayStudentReq.setIdCard(idcard);
         coalPayStudentReq.setPhone(phone);
@@ -185,16 +186,19 @@
         for (CoalPayStudent payStudent : coalPayStudents) {
             //封装学生基础信息
             CoalPayStudentRep coalPayStudentRep = new CoalPayStudentRep();
+            coalPayStudentRep.setId(payStudent.getId());
             coalPayStudentRep.setName(payStudent.getName());
             coalPayStudentRep.setIdCard(payStudent.getIdCard());
             coalPayStudentRep.setPhone(payStudent.getPhone());
             coalPayStudentRep.setSex(payStudent.getSex());
+            coalPayStudentRep.setPayType(payStudent.getPayType());
+            coalPayStudentRep.setPayCode(payStudent.getPayCode());
             coalPayStudentRep.setPayStatus(payStudent.getPayStatus());
 
             //查询对应批次以及批次包含工种类别
             CoalPay coalPay = coalPayMapper.selectById(payStudent.getCoalPayId());
             CoalPayRepDto coalPayRepDto = new CoalPayRepDto();
-            BeanUtils.copyProperties(coalPay,coalPayRepDto);
+            BeanUtils.copyProperties(coalPay, coalPayRepDto);
             //考点名称
             SysDept sysDept = sysDeptMapper.selectDeptById(coalPay.getDeptId());
             coalPayRepDto.setDeptName(sysDept.getDeptName());
@@ -210,74 +214,143 @@
     @Override
     public int updateCoalPayType(CoalPayTypeReq coalPayTypeReq) {
         CoalPay byId = coalPayMapper.selectById(coalPayTypeReq.getCoalPayId());
-        if (coalPayTypeReq.getPayPersonType() != null && byId.getPayPersonType() == 2){
-            throw new BusinessException(this.getClass(),ResultConstants.BUSINESS_ERROR,"已为团体缴费,不可更改");
+        if (coalPayTypeReq.getPayPersonType() != null && byId.getPayPersonType() == 2) {
+            throw new BusinessException(this.getClass(), ResultConstants.BUSINESS_ERROR, "已为团体缴费,不可更改");
         }
-        return coalPayMapper.updateByPayId(coalPayTypeReq);
+        int i = coalPayMapper.updateByPayId(coalPayTypeReq);
+        if (i>0){
+            CoalPayStudent coalPayStudent = new CoalPayStudent();
+            coalPayStudent.setCoalPayId(coalPayTypeReq.getCoalPayId());
+            coalPayStudent.setPayType(2);
+            coalPayStudentService.updateByCoalPayId(coalPayStudent);
+        }
+        return i;
     }
 
     @Override
     public String personPayMoney(Long coalPayId, Long studentId) {
-        CoalPayStudent coalPayStudent = coalPayStudentService.selectbyId(studentId);
-        CoalPay coalPay = coalPayMapper.selectById(coalPayId);
-        List<CoalCategory> coalCategories = coalCategoryMapper.selectByCoalPayId(coalPayId);
-        CoalTicket coalTicket = coalCategoryMapper.selectCoalTicket();
+        CoalPayStudent payStudent = new CoalPayStudent();
 
+        RLock lock = redissonClient.getLock("SWSPKMAS_PAY_PERSON_" + studentId);
+        try {
+            lock.lock(10, TimeUnit.SECONDS);
+
+            List<CoalPayStudent> coalPayStudent = coalPayStudentService.selectbyId(studentId);
+            CoalPayStudent student = coalPayStudent.get(0);
+            CoalPay coalPay = coalPayMapper.selectById(coalPayId);
+            List<CoalCategory> coalCategories = coalCategoryMapper.selectByCoalPayId(coalPayId);
+            CoalTicket coalTicket = coalCategoryMapper.selectCoalTicket();
+            if (CollectionUtils.isEmpty(coalPayStudent)){
+                throw new BusinessException(this.getClass(),ResultConstants.BUSINESS_ERROR,"缴费学员不存在");
+            }
+            if (coalPay==null){
+                throw new BusinessException(this.getClass(),ResultConstants.BUSINESS_ERROR,"未找到相关缴费信息");
+            }
+            if (student.getPayStatus()==1){
+                throw new BusinessException(this.getClass(),ResultConstants.BUSINESS_ERROR,"请勿重新缴费");
+            }
+
+            PayReqData payReqData = fillData(coalPayStudent,coalPay,coalCategories,coalTicket,1,null);
+
+            ResultVo resultVo = payUtils.sendApiPost(payReqData);
+            if (resultVo.getRespcode().equals("BUS0000")) {
+                //进行票据签名并校验
+                ResultVo resultVo1 = payUtils.uploadXml(resultVo.getRespdata().getOrderNo(), resultVo.getRespdata().getFileData());
+              if (!resultVo1.getRespcode().equals("BUS0000")){
+                  throw new BusinessException(this.getClass(), ResultConstants.BUSINESS_ERROR, "签名验证错误");
+              }
+                payStudent.setId(studentId);
+                payStudent.setOrderId(resultVo.getRespdata().getOrderNo());
+                payStudent.setGovPayStatus(1);
+                payStudent.setPayCode(resultVo.getRespdata().getBillNo());
+                coalPayStudentService.updateByCoalPayStudent(payStudent);
+                return resultVo.getRespdata().getOrderId();
+            } else {
+                throw new BusinessException(this.getClass(), ResultConstants.BUSINESS_ERROR, resultVo.getRespmsg());
+            }
+        } catch (BusinessException e) {
+            throw new RuntimeException(e);
+        } catch (IOException e) {
+            throw new RuntimeException(e);
+        } finally {
+            if (lock.isLocked()) {
+                lock.unlock();
+            }
+        }
+    }
+
+    @Override
+    public String teamPayMoney(CoalTeamPayReq coalTeamPayReq) {
+        RLock lock = redissonClient.getLock("SWSPKMAS_TEAM_PAY_" + coalTeamPayReq.getCoalPayId());
+        try {
+            lock.lock(10,TimeUnit.SECONDS);
+            List<CoalPayStudent> coalPayStudents = coalPayStudentService.selectByCoalPayIdAndPayStatus(coalTeamPayReq.getCoalPayId(), 0);
+            CoalPay coalPay = coalPayMapper.selectById(coalTeamPayReq.getCoalPayId());
+            List<CoalCategory> coalCategories = coalCategoryMapper.selectByCoalPayId(coalTeamPayReq.getCoalPayId());
+            CoalTicket coalTicket = coalCategoryMapper.selectCoalTicket();
+            if (CollectionUtils.isEmpty(coalPayStudents)){
+                throw new BusinessException(this.getClass(),ResultConstants.BUSINESS_ERROR,"缴费学员不存在");
+            }
+            if (coalPay==null){
+                throw new BusinessException(this.getClass(),ResultConstants.BUSINESS_ERROR,"未找到相关缴费信息");
+            }
+
+            CoalPayStudent payStudent = new CoalPayStudent();
+            PayReqData payReqData = fillData(coalPayStudents, coalPay, coalCategories, coalTicket,2,coalTeamPayReq);
+            ResultVo resultVo = payUtils.sendApiPost(payReqData);
+            if (resultVo.getRespcode().equals("BUS0000")) {
+                payStudent.setCoalPayId(coalPay.getId());
+                payStudent.setOrderId(resultVo.getRespdata().getOrderNo());
+                payStudent.setGovPayStatus(1);
+                payStudent.setPayCode(resultVo.getRespdata().getBillNo());
+                coalPayStudentService.updateByCoalPayIdAndStatus(payStudent);
+                return resultVo.getRespdata().getOrderId();
+            } else {
+                throw new BusinessException(this.getClass(), ResultConstants.BUSINESS_ERROR, "发起支付失败,请稍后重试");
+            }
+        }catch (Exception e){
+            throw new RuntimeException(e);
+        }finally {
+            if (lock.isLocked()) {
+                lock.unlock();
+            }
+        }
+    }
+
+    private PayReqData fillData(List<CoalPayStudent>  coalPayStudent, CoalPay coalPay, List<CoalCategory> coalCategories, CoalTicket coalTicket,Integer payType,CoalTeamPayReq coalTeamPayReq) {
         PayReqData payReqData = new PayReqData();
-        payReqData.setOrderNo(RandomUtil.generateOrderNumber());
-        payReqData.setMoney(coalPay.getAmount());
-        payReqData.setAmount(1);
-        payReqData.setPayerName(coalPayStudent.getName());
-        payReqData.setCertNo(coalPayStudent.getIdCard());
-        payReqData.setPayerType(1);
+        payReqData.setOrderNo(RandomUtil.generateOrderNumber(coalPay.getId(), "CO"));
+        payReqData.setMoney(coalPay.getAmount().multiply(BigDecimal.valueOf(coalPayStudent.size())));
+        payReqData.setAmount(coalCategories.size()*coalPayStudent.size());
         payReqData.setInvoiceSocialCode(coalTicket.getTicketCompanyCode());
         payReqData.setHandlingPerson(coalTicket.getDrawer());
         payReqData.setChecker(coalTicket.getCheck());
         payReqData.setEnterCode(coalTicket.getCompanyCode());
         payReqData.setDesc(coalPay.getBatchName());
 
-        PayReqData.Feedata feedata = new PayReqData.Feedata();
+
         List<PayReqData.Feedata> feedatas = new ArrayList<>();
         for (CoalCategory coalCategory : coalCategories) {
-            feedata.setAmount(1);
-            feedata.setPrice(coalCategory.getAmount());
-            feedata.setBusCode(coalCategory.getBusinessCode());
-            feedatas.add(feedata);
+            for (CoalPayStudent payStudent : coalPayStudent) {
+                PayReqData.Feedata feedata = new PayReqData.Feedata();
+                feedata.setAmount(1);
+                feedata.setPrice(coalCategory.getAmount());
+                feedata.setBusCode(coalCategory.getBusinessCode());
+                feedatas.add(feedata);
+            }
         }
         payReqData.setFeeDatas(feedatas);
 
-        CoalPayStudent payStudent = new CoalPayStudent();
-
-        RLock lock = redissonClient.getLock("SWSPKMAS_PAY_PERSON");
-        try {
-            lock.lock(10, TimeUnit.SECONDS);
-            if (coalPayStudent.getGovPayStatus()!=0){
-                throw new BusinessException(this.getClass(),ResultConstants.BUSINESS_ERROR,"请勿重复发起支付");
-            }
-            if (StringUtils.isEmpty(coalPayStudent.getPayCode())){
-
-            }
-
-
-            ResultVo resultVo = PayUtils.sendApiPost(payReqData);
-            if (resultVo.getRespcode().equals("BUS0000")){
-                payStudent.setId(studentId);
-                payStudent.setOrderId(resultVo.getRespdata().getOrderNo());
-                payStudent.setGovPayStatus(1);
-                payStudent.setPayCode(resultVo.getRespdata().getBillNo());
-                coalPayStudentService.updateByCoalPayStudent(payStudent);
-                return resultVo.getRespdata().getBillNo();
-            }else {
-                throw new BusinessException(this.getClass(),ResultConstants.BUSINESS_ERROR,"发起支付失败,请稍后重试");
-            }
-        }catch (BusinessException e){
-            throw new BusinessException(this.getClass(),ResultConstants.BUSINESS_ERROR,"请稍后重试");
-        } catch (IOException e) {
-            throw new RuntimeException(e);
-        } finally {
-            if(lock.isLocked()){
-                lock.unlock();
-            }
+        if (1==payType){
+            payReqData.setPayerName(coalPayStudent.get(0).getName());
+            payReqData.setCertNo(coalPayStudent.get(0).getIdCard());
+            payReqData.setPayerType(1);
+        }else if (2==payType){
+            payReqData.setPayerName(coalTeamPayReq.getPayCompanyName());
+            payReqData.setCertNo(coalTeamPayReq.getPayCompanyCard());
+            payReqData.setPayerType(2);
         }
+        return payReqData;
+
     }
 }

--
Gitblit v1.9.2