|
@@ -48,7 +48,7 @@ public class OrderPaymentService extends ServiceBase {
|
|
|
* @return {@link List<OrderPayment>}
|
|
|
*/
|
|
|
public List<OrderPayment> getOrderPaymentListByOrderIds(List<Integer> orderIds) {
|
|
|
- orderIds = orderIds.stream().filter(p-> !Checker.isNone(p) && Checker.getIntegerValue(p) > 0).collect(Collectors.toList());
|
|
|
+ orderIds = orderIds.stream().filter(p -> !Checker.isNone(p) && Checker.getIntegerValue(p) > 0).collect(Collectors.toList());
|
|
|
int size = orderIds.size();
|
|
|
if (!Checker.isNone(orderIds)) {
|
|
|
// payment_status:2 表示支付成功
|
|
@@ -171,8 +171,11 @@ public class OrderPaymentService extends ServiceBase {
|
|
|
if (orderPayment != null && !Checker.isNone(orderPayment.getTransactionId())) {
|
|
|
return orderPayment.getTransactionId();
|
|
|
}
|
|
|
- if (orderPayment != null && !Checker.isNone(orderPayment.getAlipayTradeNo())) {
|
|
|
- return orderPayment.getAlipayTradeNo();
|
|
|
+ if (orderPayment != null
|
|
|
+ && Checker.getIntegerValue(orderPayment.getPaymentChannel()) != PaymentChannelEnum.WeChat.getValue()
|
|
|
+ && Checker.getIntegerValue(orderPayment.getPaymentStatus()) == PaymentStatusEnum.Success.getValue()
|
|
|
+ && !Checker.isNone(orderPayment.getPaymentNo())) {
|
|
|
+ return orderPayment.getPaymentNo();
|
|
|
}
|
|
|
}
|
|
|
return "";
|
|
@@ -202,8 +205,11 @@ public class OrderPaymentService extends ServiceBase {
|
|
|
if (orderPayment != null && !Checker.isNone(orderPayment.getTransactionId())) {
|
|
|
return orderPayment.getTransactionId();
|
|
|
}
|
|
|
- if (orderPayment != null && !Checker.isNone(orderPayment.getAlipayTradeNo())) {
|
|
|
- return orderPayment.getAlipayTradeNo();
|
|
|
+ if (orderPayment != null
|
|
|
+ && Checker.getIntegerValue(orderPayment.getPaymentChannel()) != PaymentChannelEnum.WeChat.getValue()
|
|
|
+ && Checker.getIntegerValue(orderPayment.getPaymentStatus()) == PaymentStatusEnum.Success.getValue()
|
|
|
+ && !Checker.isNone(orderPayment.getPaymentNo())) {
|
|
|
+ return orderPayment.getPaymentNo();
|
|
|
}
|
|
|
}
|
|
|
return "";
|