1.各个业务处新增资金流水记录

This commit is contained in:
邱贞招 2024-05-24 17:04:18 +08:00
parent d7c391c4bb
commit aca76f9809
7 changed files with 173 additions and 11 deletions

View File

@ -155,23 +155,44 @@ qiniu:
expireSeconds: 600
# 七牛云GET请求域名
domain: https://lxnapi.ccttiot.com
#wx:
# appid: wx4d178f8c80348214
# appSecret: 37ef923d4d7cba2070c3956503fc90a3
# # 微信支付配置
# pay:
# # 微信小程序id
# appId: wx4d178f8c80348214
# # 商户id 嵛山岛 1630064104
# merchantId: 1630064104
# # apiV3密钥 嵛山岛 yusandaowenlvyusandaowenlvyusand
# apiV3Key: yusandaowenlvyusandaowenlvyusand
# # 通知回调地址
# notifyUrl: https://dianche.chuantewulian.cn/prod-api/payment/callback/wechat/
# # 密钥所在位置
# privateKeyPath: D:/wxpay/ysd/apiclient_key.pem
# # 证书序列号 7DDDDEED9A8DF3DD8363E49D636D3F551FFC8A19
# merchantSerialNumber: 7A2C87FC5F19620271872A70B971FE60F734FB64
# refund:
# # 退款回调地址
# notifyUrl: https://dianche.chuantewulian.cn/prod-api/payment/callback/wechat/refund
wx:
appid: wx4d178f8c80348214
appSecret: 37ef923d4d7cba2070c3956503fc90a3
appid: wx3428c498d5061192
appSecret: 398d2cd38583a33233eef897996cc7ca
# 微信支付配置
pay:
# 微信小程序id
appId: wx4d178f8c80348214
appId: wx3428c498d5061192
# 商户id 嵛山岛 1630064104
merchantId: 1630064104
merchantId: 1656437344
# apiV3密钥 嵛山岛 yusandaowenlvyusandaowenlvyusand
apiV3Key: yusandaowenlvyusandaowenlvyusand
apiV3Key: 49819e0f0abdb2df3246f7b27f264d75
# 通知回调地址
notifyUrl: https://dianche.chuantewulian.cn/prod-api/payment/callback/wechat/
# 密钥所在位置
privateKeyPath: D:/wxpay/ysd/apiclient_key.pem
privateKeyPath: D:/wxpay/apiclient_key.pem
# 证书序列号 7DDDDEED9A8DF3DD8363E49D636D3F551FFC8A19
merchantSerialNumber: 7A2C87FC5F19620271872A70B971FE60F734FB64
merchantSerialNumber: 66910F800A60768020F07D39A56AE701574A16AE
refund:
# 退款回调地址
notifyUrl: https://dianche.chuantewulian.cn/prod-api/payment/callback/wechat/refund
@ -202,5 +223,7 @@ iot:
# 推送消息token
token: tVpNdGKrAFHfKZNgpIWQfZukrcYHNfFM
geo:
# 高德地图key web服务
# 高德地图key web服务 手续费
key: 834f1f029671d84272554528311ff0f1
# 手续费 4/1000 千分之几
handlingCharge: 4

View File

@ -25,6 +25,11 @@ public class ServiceConstants {
*/
public static final String ORDER_TYPE_DEPOSIT_REFUND = "3";
/**
* 订单类型: 4-骑行订单退款包含调度费管理费等
*/
public static final String ORDER_TYPE_RIDING_REFUND = "4";
/**----------------------------订单类型end----------------------------*/
/**----------------------------支付场景start----------------------------*/
/** 支付场景: 1-骑行支付,2-取消预约支付,3-套餐支付,4-押金支付 */
@ -92,6 +97,21 @@ public class ServiceConstants {
public static final String ORDER_PAY_STATUS_PAID = "1";
/**----------------------------支付状态end----------------------------*/
/**----------------------------类型start----------------------------*/
/** 支付方式wx-微信alipay-支付宝 */
/**
* 支付方式: wx-微信
*/
public static final String PAY_TYPE_WX = "wx";
/**
* 支付方式: alipay-支付宝
*/
public static final String PAY_TYPE_ALIPAY = "alipay";
/**----------------------------支付类型end----------------------------*/
/**----------------------------车辆状态start----------------------------*/
/** 车辆状态: 0 未上架1-正常2-预约中3-骑行中4-临时锁车8-下线9-废弃 */
/**
@ -407,4 +427,19 @@ public class ServiceConstants {
/**----------------------------充值状态end----------------------------*/
/**----------------------------收支类型start----------------------------*/
/** 收支类型1-收入2-支出 */
/**
* 充值状态1-收入
*/
public static final String FLOW_TYPE_INCOME = "1";
/**
* 充值状态2-支出
*/
public static final String FLOW_TYPE_DISBURSE = "2";
/**----------------------------收支类型end----------------------------*/
}

View File

@ -74,4 +74,12 @@ public interface EtRefundMapper
* @return 退款订单
*/
EtRefund selectEtRefundByOrderNo(String orderNo);
/**
* 根据订单号查询退款订单对象
*
* @param refundNo 退款订号
* @return 退款订单
*/
EtRefund selectEtRefundByRefundNo(String refundNo);
}

View File

@ -27,6 +27,14 @@ public interface IEtRefundService
*/
public EtRefund selectEtRefundByOrderNo(String orderNo);
/**
* 根据退款单号查询退款订单对象
*
* @param refundNo 订单号
* @return 退款订单
*/
public EtRefund selectEtRefundByRefundNo(String refundNo);
/**
* 查询退款订单列表
*

View File

@ -8,6 +8,7 @@ import com.ruoyi.common.constant.CacheConstants;
import com.ruoyi.common.constant.Constants;
import com.ruoyi.common.constant.ServiceConstants;
import com.ruoyi.common.core.domain.entity.AsUser;
import com.ruoyi.common.core.domain.entity.SysUser;
import com.ruoyi.common.core.redis.RedisCache;
import com.ruoyi.common.exception.ServiceException;
import com.ruoyi.common.pay.wx.domain.NotifyEventType;
@ -27,6 +28,7 @@ import com.wechat.pay.java.service.refund.model.Status;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.beans.factory.annotation.Value;
import org.springframework.stereotype.Service;
import org.springframework.transaction.annotation.Transactional;
import org.springframework.transaction.support.TransactionTemplate;
@ -71,6 +73,16 @@ public class CallbackServiceImpl implements CallbackService {
@Autowired
private IEtOperatingAreaService etOperatingAreaService;
@Autowired
private IEtCapitalFlowService etCapitalFlowService;
@Value("${handlingCharge}")
private String handlingCharge;
@Autowired
private ISysUserService sysUserService;
/**
* 微信支付回调
*/
@ -107,7 +119,7 @@ public class CallbackServiceImpl implements CallbackService {
// 更新订单状态pay_timepay_type默认是wxtotal_fee等于预约费+骑行费+管理费+调度费状态改为4 订单结束保存微信内部订单号 callbackVo.getOutTradeNo()
order.setPaid("1");
order.setPayTime(DateUtils.getNowDate());
order.setPayType("wx");
order.setPayType(ServiceConstants.PAY_TYPE_WX);
if(attachVo.getType().equals(ServiceConstants.BUSINESS_TYPE_RIDING)){
logger.info("【微信支付回调】骑行支付");
// 1-骑行支付 关锁
@ -116,6 +128,9 @@ public class CallbackServiceImpl implements CallbackService {
// deviceService.sendCommand(order.getSn(), token,"开锁命令","套餐开锁");
asDevice.setStatus(ServiceConstants.VEHICLE_STATUS_NORMAL);//还车后车辆正常运营
asDevice.setLockStatus(ServiceConstants.LOCK_STATUS_CLOSE);
// 新增资金流水记录
capitalFlowRecords(order,ServiceConstants.FLOW_TYPE_INCOME,ServiceConstants.ORDER_TYPE_RIDING);
// 还车结算___小时后自动退押金---创建一个定时器TimerTask计算出退还时间后执行退款操作
EtFeeRule rule = etFeeRuleService.selectEtFeeRuleByRuleId(order.getRuleId());
Integer autoRefundDeposit = rule.getAutoRefundDeposit();
@ -153,6 +168,9 @@ public class CallbackServiceImpl implements CallbackService {
if(i>0){
logger.info("【自动退款】保存退款对象成功");
}
// 新增资金流水记录
capitalFlowRecords(newestOrder,ServiceConstants.FLOW_TYPE_DISBURSE,ServiceConstants.ORDER_TYPE_DEPOSIT_REFUND);
} else {
throw new ServiceException("没有找到押金充值记录");
}
@ -169,7 +187,7 @@ public class CallbackServiceImpl implements CallbackService {
order.setMark("取消预约支付");
asDevice.setStatus(ServiceConstants.VEHICLE_STATUS_NORMAL);//取消预约支付后车辆正常运营
asDevice.setLockStatus(ServiceConstants.LOCK_STATUS_CLOSE);
}else if(attachVo.getType().equals(ServiceConstants.BUSINESS_TYPE_MEAL)){
}else if(attachVo.getType().equals(ServiceConstants.BUSINESS_TYPE_MEAL)){//废弃
logger.info("【微信支付回调】套餐支付");
// 3-套餐支付 套餐支付中分为预约车辆和立即开锁骑行
if(attachVo.getIsAppointment()){//购买套餐后预约
@ -206,6 +224,8 @@ public class CallbackServiceImpl implements CallbackService {
asUser.setBalance(asUser.getBalance().add(order.getTotalFee()));
order.setMark("押金支付");
// 新增资金流水记录
capitalFlowRecords(order,ServiceConstants.FLOW_TYPE_INCOME,ServiceConstants.ORDER_TYPE_DEPOSIT);
// 删除用户缓存
String token = attachVo.getToken();
logger.info("【微信支付回调】删除用户缓存:"+token);
@ -237,6 +257,53 @@ public class CallbackServiceImpl implements CallbackService {
}
}
/**
* 资金流水记录
* */
private void capitalFlowRecords(EtOrder order,String type,String busType) {
EtCapitalFlow capitalFlow = new EtCapitalFlow();
capitalFlow.setAreaId(order.getAreaId());
capitalFlow.setOrderNo(order.getOrderNo());
capitalFlow.setOutTradeNo(order.getOutTradeNo());
capitalFlow.setType(type);
capitalFlow.setBusType(busType);
capitalFlow.setAmount(order.getTotalFee());
if(busType.equals(ServiceConstants.ORDER_TYPE_DEPOSIT) || busType.equals(ServiceConstants.ORDER_TYPE_DEPOSIT_REFUND)){
capitalFlow.setOperatorBalance(BigDecimal.ZERO);
capitalFlow.setOperatorDividend(BigDecimal.ZERO);
capitalFlow.setPartnerDividend(BigDecimal.ZERO);
}else{
//获取所有合伙人列表
SysUser sysUser = new SysUser();
sysUser.setUserType("03");
List<SysUser> sysUsers = sysUserService.selectUserList(sysUser);
double totalDividendProportion = sysUsers.stream()
.mapToDouble(SysUser::getDividendProportion)
.sum();//算出总的分成比例
BigDecimal decimal = new BigDecimal(totalDividendProportion).divide(new BigDecimal(100), 2, BigDecimal.ROUND_HALF_UP);
BigDecimal partnerDividend = order.getTotalFee().multiply(decimal);
BigDecimal operatorDividend = order.getTotalFee().subtract(capitalFlow.getPartnerDividend());
if(type.equals(ServiceConstants.FLOW_TYPE_INCOME)){
capitalFlow.setPartnerDividend(partnerDividend);
capitalFlow.setOperatorDividend(operatorDividend);
// todo capitalFlow.setOperatorBalance();
}else{
capitalFlow.setPartnerDividend(partnerDividend.negate());
capitalFlow.setOperatorDividend(operatorDividend.negate());
// todo capitalFlow.setOperatorBalance();
}
}
BigDecimal bigDecimal = new BigDecimal(handlingCharge);
capitalFlow.setHandlingCharge(bigDecimal.multiply(order.getTotalFee()));//手续费
capitalFlow.setPayType(ServiceConstants.PAY_TYPE_WX);
capitalFlow.setCreateTime(DateUtils.getNowDate());
int i = etCapitalFlowService.insertEtCapitalFlow(capitalFlow);
if(i==0){
throw new ServiceException("保存资金流水记录失败");
}
}
/**
* 微信退款回调
*/
@ -264,6 +331,10 @@ public class CallbackServiceImpl implements CallbackService {
logger.error("【微信退款回调】更新退款单失败");
throw new ServiceException("【微信退款回调】更新退款单失败");
}
EtRefund refund = etRefundService.selectEtRefundByRefundNo(outRefundNo);
EtOrder order = orderService.selectEtOrderByOrderNo(refund.getOrderNo());
// 新增资金流水记录
capitalFlowRecords(order,ServiceConstants.FLOW_TYPE_DISBURSE,ServiceConstants.ORDER_TYPE_RIDING_REFUND);
}
}
}

View File

@ -44,6 +44,18 @@ public class EtRefundServiceImpl implements IEtRefundService
return etRefundMapper.selectEtRefundByOrderNo(orderNo);
}
/**
* 根据退款单号查询退款订单对象
*
* @param refundNo 退款订号
* @return 退款订单
*/
@Override
public EtRefund selectEtRefundByRefundNo(String refundNo)
{
return etRefundMapper.selectEtRefundByRefundNo(refundNo);
}
/**
* 查询退款订单列表

View File

@ -46,6 +46,11 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
where order_no = #{orderNo}
</select>
<select id="selectEtRefundByRefundNo" resultMap="EtRefundResult">
<include refid="selectEtRefundVo"/>
where refund_no = #{refundNo}
</select>
<insert id="insertEtRefund" parameterType="EtRefund">
insert into et_refund
<trim prefix="(" suffix=")" suffixOverrides=",">
@ -113,7 +118,7 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="itemDesc != null">item_desc = #{itemDesc},</if>
<if test="refundResult != null">refund_result = #{refundResult},</if>
</trim>
where orderNo = #{orderNo}
where refund_no = #{refundNo}
</update>
<delete id="deleteEtRefundById" parameterType="Long">