this is 4.2 update
This commit is contained in:
parent
30702deba7
commit
dea671cc22
|
@ -417,4 +417,6 @@ public class GlobalController {
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -34,6 +34,7 @@ import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
import org.springframework.web.bind.annotation.RestController;
|
import org.springframework.web.bind.annotation.RestController;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
import java.math.BigDecimal;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 微信小程序相关接口
|
* 微信小程序相关接口
|
||||||
|
@ -87,7 +88,8 @@ public class WeChatPayController {
|
||||||
if (!loginUser.getId().equals(order.getUserId())) {
|
if (!loginUser.getId().equals(order.getUserId())) {
|
||||||
throw new BusinessException(ErrorCode.NO_AUTH_ERROR, "你不是该订单用户!");
|
throw new BusinessException(ErrorCode.NO_AUTH_ERROR, "你不是该订单用户!");
|
||||||
}
|
}
|
||||||
PrepayWithRequestPaymentResponse response = weChatService.createPayment(String.valueOf(orderId), miniOpenId, order.getTotalAmount());
|
BigDecimal total = order.getTotalAmount().add(order.getPostage());
|
||||||
|
PrepayWithRequestPaymentResponse response = weChatService.createPayment(String.valueOf(orderId), miniOpenId, total);
|
||||||
return ResultUtils.success(response);
|
return ResultUtils.success(response);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user