太米支付

This commit is contained in:
磷叶 2024-11-28 17:47:20 +08:00
parent 523ef6958b
commit dad4dd742a
7 changed files with 39 additions and 9 deletions

View File

@ -53,7 +53,7 @@ public class TmPayService {
*/
public RefundInfo refund(RefundAble refundAble) {
HashMap<String, Object> body = new HashMap<>();
body.put("refundFee", String.valueOf(refundAble.refundAmount()));
body.put("refundFee", String.valueOf(refundAble.refundAmount().getTotal()));
body.put("terminalType", "1");
body.put("outTradeId", refundAble.refundOutTradeNo());
body.put("shopId", config.getShopId());

View File

@ -21,6 +21,9 @@ public class PayResultVO {
@ApiModelProperty("信息")
private String msg;
@ApiModelProperty("渠道信息")
private Object channelInfo;
public static PayResultVO fail(String msg) {
PayResultVO vo = new PayResultVO();
vo.setMsg(msg);
@ -34,4 +37,11 @@ public class PayResultVO {
vo.setSuccess(true);
return vo;
}
public static PayResultVO success(LocalDateTime payTime, Object channelInfo) {
PayResultVO vo = new PayResultVO();
vo.setPayTime(payTime);
vo.setSuccess(true);
vo.setChannelInfo(channelInfo);
return vo;
}
}

View File

@ -37,6 +37,12 @@ PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
<if test="query.status != null and query.status != ''"> and spb.status = #{query.status}</if>
<if test="query.startCreateTime != null">and spb.create_time >= #{query.startCreateTime}</if>
<if test="query.endCreateTime != null">and spb.create_time &lt;= #{query.endCreateTime}</if>
<if test="query.statusList != null and query.statusList.size() > 0">
and spb.status in
<foreach item="item" index="index" collection="query.statusList" open="(" separator="," close=")">
#{item}
</foreach>
</if>
<if test="query.bstIds != null and query.bstIds.size() > 0">
and spb.bst_id in
<foreach item="item" index="index" collection="query.bstIds" open="(" separator="," close=")">

View File

@ -5,6 +5,7 @@ import com.ruoyi.ss.payBill.domain.PayBillQuery;
import com.ruoyi.ss.payBill.domain.PayBillVO;
import com.ruoyi.ss.payBill.domain.dto.PayBillRefundDTO;
import com.ruoyi.ss.payBill.domain.vo.DoPayVO;
import com.ruoyi.ss.payBill.domain.vo.PayResultVO;
import com.ruoyi.ss.refund.domain.RefundVO;
import java.time.LocalDateTime;
@ -133,4 +134,9 @@ public interface PayBillService
* @param count 最大次数
*/
void refreshPayResultMaxCount(PayBillVO pay, long delay, TimeUnit timeUnit, int count);
/**
* 查询支付结果
*/
PayResultVO getPayResult(String payNo);
}

View File

@ -489,6 +489,12 @@ public class PayBillServiceImpl implements PayBillService
}
}
@Override
public PayResultVO getPayResult(String payNo) {
PayBillVO bill = selectByPayNo(payNo);
return getPayResult(bill);
}
private boolean closeById(Long payId) {
if (payId == null) {
return false;
@ -518,7 +524,7 @@ public class PayBillServiceImpl implements PayBillService
Transaction transaction = wxPayService.queryOrderByOutTradeNo(bill.getPayNo());
boolean success = WxPayUtil.isSuccess(transaction);
if (success) {
return PayResultVO.success(DateUtils.toLocalDateTimeByISO(transaction.getSuccessTime()));
return PayResultVO.success(DateUtils.toLocalDateTimeByISO(transaction.getSuccessTime()), transaction);
} else {
return PayResultVO.fail("暂未支付成功");
}
@ -526,7 +532,7 @@ public class PayBillServiceImpl implements PayBillService
// 通联微信支付
Map<String, String> result = sybPayService.queryOrderByOutTradeNo(bill.getPayNo());
if (SybTrxStatus.isSuccess(result)) {
return PayResultVO.success(DateUtils.toLocalDate(result.get("fintime"), "yyyyMMddHHmmss"));
return PayResultVO.success(DateUtils.toLocalDate(result.get("fintime"), "yyyyMMddHHmmss"), result);
} else {
return PayResultVO.fail("暂未支付成功");
}
@ -534,7 +540,7 @@ public class PayBillServiceImpl implements PayBillService
// 太米微信支付
TmTradeInfo result = tmPayService.orderQuery(bill.getPayNo());
if (result != null && TmPayStatus.isSuccess(result.getPayStatus())) {
return PayResultVO.success(DateUtils.toLocalDateTime(result.getPayTime(), "yyyy-MM-dd")); // TODO 支付时间
return PayResultVO.success(DateUtils.toLocalDateTime(result.getPayTime(), "yyyy-MM-dd HH:mm:ss"), result); // TODO 支付时间
} else {
return PayResultVO.fail("暂未支付成功");
}

View File

@ -218,7 +218,7 @@ public class RefundServiceImpl implements RefundService
// 太米退款是同步通知直接处理退款成功
scheduledExecutorService.schedule(() -> {
handleRefundSuccess(refund.getRefundNo());
}, 0, TimeUnit.SECONDS);
}, 10, TimeUnit.SECONDS);
}
else {
throw new ServiceException("当前支付方式不支持退款");

View File

@ -5,10 +5,7 @@ import com.ruoyi.common.core.domain.AjaxResult;
import com.ruoyi.ss.payBill.service.PayBillService;
import io.swagger.annotations.ApiOperation;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.PathVariable;
import org.springframework.web.bind.annotation.PutMapping;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;
import org.springframework.web.bind.annotation.*;
/**
* @author wjh
@ -27,4 +24,9 @@ public class AppPayBillController extends BaseController {
return toAjax(payBillService.refreshPayResult(payNo));
}
@GetMapping("/payResult")
public AjaxResult payResult(@RequestParam String payNo) {
return success(payBillService.getPayResult(payNo));
}
}