Exemplo n.º 1
0
 /**
  * 计算总价
  *
  * @param itemsList
  * @return
  */
 private double calculateTotalPrice(List<QueryHotelForWebSaleItems> itemsList) {
   double totalPrice = 0;
   for (QueryHotelForWebSaleItems item : itemsList) {
     totalPrice += item.getAgentReadComissionPrice();
   }
   return totalPrice;
 }