|  | @@ -4826,6 +4826,12 @@ public class OrderServiceImpl implements OrderService {
 | 
	
		
			
				|  |  |                                  .multiply(BigDecimal.valueOf(goodsDetailsDto.getSellVolume()));
 | 
	
		
			
				|  |  |                          skuTotalPrice = skuTotalPrice.add(skuActualPaymentAmount);
 | 
	
		
			
				|  |  |                      }
 | 
	
		
			
				|  |  | +                } else if (CollectionUtils.isEmpty(scoreDeductionAllowSkuList) && !CollectionUtils.isEmpty(scoreDeductionRejectSkuList)) {
 | 
	
		
			
				|  |  | +                    if (!scoreDeductionRejectSkuList.contains(sku)) {
 | 
	
		
			
				|  |  | +                        BigDecimal skuActualPaymentAmount = goodsDetailsDto.getActualPaymentAmount()
 | 
	
		
			
				|  |  | +                                .multiply(BigDecimal.valueOf(goodsDetailsDto.getSellVolume()));
 | 
	
		
			
				|  |  | +                        skuTotalPrice = skuTotalPrice.add(skuActualPaymentAmount);
 | 
	
		
			
				|  |  | +                    }
 | 
	
		
			
				|  |  |                  }
 | 
	
		
			
				|  |  |              }
 | 
	
		
			
				|  |  |          }
 |