public void CalBoxNum(ArrayList ParameterList, out string CountQty)
 {
     try
     {
         DBO.PUR_PurchaseDeliveryGoodsDBO dbo = new PUR_PurchaseDeliveryGoodsDBO(ref USEDB);
         dbo.CalBoxNum(ParameterList, out CountQty);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 /// <summary>
 /// 計算箱數
 /// </summary>
 /// <param name="ParameterList"></param>
 /// <returns></returns>
 public int CalBoxNum(DateTime ST_ACCEPT_DATE, string PICK_BATCH)
 {
     try
     {
         DBO.PUR_PurchaseDeliveryGoodsDBO dbo = new PUR_PurchaseDeliveryGoodsDBO(ref USEDB);
         return dbo.CalBoxNum(ST_ACCEPT_DATE, PICK_BATCH);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }