コード例 #1
0
 /**
  * Get amount of current orders (incomplete orders)
  *
  * @param shopID ID of current shop, get from session attribute
  * @return
  */
 public double getCurrentOrdersAmount(String shopID) {
   SaleDAO saleDAO = new SaleDAO();
   return saleDAO.getCurrentOrdersAmount(shopID);
 }