Commit 1c9737d4 by caosy

去除测试支付 0.01

parent e6af9c38
......@@ -493,6 +493,10 @@ public abstract class AbstractNotifyService extends CorePaymentService {
return;
}
if (SUCCESS.equalsIgnoreCase(notifyRequestBean.getStatus())) {
if(!this.isAllRefund(notifyRequestBean, order)){
order.setProcessStatus(order.getProcessStatus()+3);
}
order.setProcessStatus(order.getProcessStatus()
| OrderStatusBitEnum.REFUNDED.getValue());
order.setOrderStatus("U");
......@@ -508,7 +512,7 @@ public abstract class AbstractNotifyService extends CorePaymentService {
} else {
order.setProcessStatus(order.getProcessStatus()
| OrderStatusBitEnum.PART_UNSUBSCRIBED.getValue());
order.setOrderUserStatus(6);
order.setOrderUserStatus(5);
}
BigDecimal oldRefundAmount = BigDecimal.ZERO;
if (order.getRefundAmount() != null) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment