|
@@ -113,13 +113,14 @@ public class PayController {
|
|
|
|
|
|
TzReqResultDTO<QueryOrderInfoDTO> resultDTO = tzBankService.payQueryOrder(requestDTO);
|
|
|
String retCode = resultDTO.getRetCode();
|
|
|
- if(!retCode.equals("000000")){
|
|
|
+ if(!retCode.equals("00000000")){
|
|
|
logger.info("台州银行支付回调查询失败:"+retCode);
|
|
|
return "";
|
|
|
}
|
|
|
String orderId = tzPaymentResultDTO.getOrderNo().replace("store","");
|
|
|
if(StringUtils.isNotBlank(orderId)){
|
|
|
- orderService.payConfirm(1, null, orderId, tzPaymentResultDTO.getOrderFlowNo(),tzPaymentResultDTO.getChlTrxId(),tzPaymentResultDTO.getOrderFlowNo());
|
|
|
+ orderService.payConfirm(1, null, tzPaymentResultDTO.getOrderNo(),
|
|
|
+ tzPaymentResultDTO.getOrderFlowNo(),tzPaymentResultDTO.getChlTrxId(),tzPaymentResultDTO.getOrderFlowNo());
|
|
|
}
|
|
|
}
|
|
|
return "";
|