|  | @@ -619,13 +619,13 @@ public class OmsPortalOrderServiceImpl implements OmsPortalOrderService {
 | 
	
		
			
				|  |  |          BaseResult<Payment> executePayment = paymentClient.executePayment(payment);
 | 
	
		
			
				|  |  |          if (!executePayment.getStatus()) {
 | 
	
		
			
				|  |  |              // 异常将取消订单
 | 
	
		
			
				|  |  | -            cancelOrder(detail.getId(), executePayment.getMsg(), null);
 | 
	
		
			
				|  |  | +            // cancelOrder(detail.getId(), executePayment.getMsg(), null);
 | 
	
		
			
				|  |  |              throw new BizException(executePayment.getMsg());
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |          if (!executePayment.getData()
 | 
	
		
			
				|  |  |                             .getPayAmt()
 | 
	
		
			
				|  |  |                             .equals(detail.getPayAmount().setScale(2, RoundingMode.HALF_UP).toString())) {
 | 
	
		
			
				|  |  | -            cancelOrder(detail.getId(), "订单金额和实际支付金额不符", null);
 | 
	
		
			
				|  |  | +            // cancelOrder(detail.getId(), "订单金额和实际支付金额不符", null);
 | 
	
		
			
				|  |  |              throw new BizException("订单金额和实际支付金额不符");
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |  
 |