|  | @@ -2314,7 +2314,7 @@ public class OrderServiceImpl implements OrderService {
 | 
	
		
			
				|  |  |                  }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |                  // 计算该购物车所需要的所有税费
 | 
	
		
			
				|  |  | -                BigDecimal tax = goodsDto.getGoodsRate();
 | 
	
		
			
				|  |  | +                BigDecimal tax = goodsDto.getGoodsTaxes();
 | 
	
		
			
				|  |  |                  totalTax = totalTax.add(tax).setScale(2, BigDecimal.ROUND_HALF_DOWN); // 计算总的税额
 | 
	
		
			
				|  |  |              }
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -4660,7 +4660,7 @@ public class OrderServiceImpl implements OrderService {
 | 
	
		
			
				|  |  |          //留言
 | 
	
		
			
				|  |  |          orderInfo.setPostscript("无");
 | 
	
		
			
				|  |  |          orderInfo.setAdd_time(new Date());
 | 
	
		
			
				|  |  | -        orderInfo.setGoods_price(goodsTotalPrice); // 商品总价
 | 
	
		
			
				|  |  | +        orderInfo.setGoods_price(actualPrice.subtract(totalTax));
 | 
	
		
			
				|  |  |          orderInfo.setOrder_price(orderTotalPrice);
 | 
	
		
			
				|  |  |          orderInfo.setActual_price(actualPrice); // 实际支付金额
 | 
	
		
			
				|  |  |          orderInfo.setOrder_type("1");
 |