public DataTable QuerySwitch(QueryType QT,
                                     ArrayList ParameterList
                                     )
        {
            DBO.ITM_SKUPeriodDBO dbo = new ITM_SKUPeriodDBO(ref USEDB);
            DataTable Dt;

            try
            {
                switch (QT)
                {
                    case QueryType.ALL:
                        Dt = dbo.doQueryAll();
                        break;
                    case QueryType.CODE:
                        Dt = dbo.doQueryByCode(ParameterList);
                        break;
                    case QueryType.ID:
                        Dt = dbo.doQueryByID(ParameterList);
                        break;
                    case QueryType.Custom:
                        Dt = dbo.doQueryByFind(ParameterList);
                        break;
                    default:
                        Dt = new DataTable();
                        break;
                }

                return Dt;
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
 /// <summary>
 /// 查詢品號、期別的從屬關係是否正確(此函式有多系統使用,不可隨意修改
 /// </summary>
 /// <param name="ParameterList">傳入參數</param>
 /// <returns>回傳筆數,"0"表示無從屬關系</returns>
 public string QueryVDS_ITM_PERIOD_MAIN(ArrayList ParameterList)
 {
     try
     {
         DBO.ITM_SKUPeriodDBO dbo = new ITM_SKUPeriodDBO(ref USEDB);
         return dbo.QueryVDS_ITM_PERIOD_MAIN(ParameterList);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 public DataTable QuerySKUPeriodByALL()
 {
     try
     {
         DBO.ITM_SKUPeriodDBO dbo = new ITM_SKUPeriodDBO(ref USEDB);
         return dbo.doQueryAll();
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 /// <summary>
 /// 查詢店群、門市的從屬關係是否正確(此函式有多系統使用,不可隨意修改
 /// </summary>
 /// <param name="ParameterList">傳入參數(ArrayList)</param>
 /// <returns>回傳筆數,"0"表示無從屬關系</returns>
 public string QueryVDS_STM_STORE_UNIQUE(ArrayList ParameterList)
 {
     try
     {
         DBO.ITM_SKUPeriodDBO dbo = new ITM_SKUPeriodDBO(ref USEDB);
         return dbo.QueryVDS_STM_STORE_UNIQUE(ParameterList);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 public DataTable QUERYCHK_ITEM_BARCODE(ArrayList ParameterList)
 {
     try
     {
         DBO.ITM_SKUPeriodDBO dbo = new ITM_SKUPeriodDBO(ref USEDB);
         return dbo.QUERYCHK_ITEM_BARCODE(ParameterList);
     }
     catch (Exception ex)
     { throw ex; }
 }
        /// <summary>
        /// 測試SP交易失敗
        /// </summary>
        /// <param name="ParameterList">變數</param>
        /// <param name="RootDBT">是否有主交易,無主交易輸入null</param>
        public void TestTranscation(ArrayList ParameterList1,
                                    ArrayList ParameterList2,
                                    ArrayList ParameterList3,
                                    DbTransaction RootDBT
                                    )
        {
            bool IsRootTranscation = false;

            try
            {
                DBO.ITM_SKUPeriodDBO dbo = new ITM_SKUPeriodDBO(ref USEDB);

                //判斷是否有傳入Root Transcation 
                IsRootTranscation = (RootDBT == null) ? true : false;

                #region 啟動交易或指定RootTranscation

                if (IsRootTranscation)
                {
                    //獨立呼叫啟動Transcation
                    Conn = USEDB.CreateConnection();
                    Conn.Open();
                    DBT = Conn.BeginTransaction();
                }
                else
                {
                    DBT = RootDBT;
                }

                #endregion

                dbo.doCreate(ParameterList1, DBT);

                dbo.doUpdate(ParameterList2, DBT);

                dbo.doDelete(ParameterList3, DBT);

                throw new Exception("交易失敗");

                #region 交易成功

                if (IsRootTranscation)
                {
                    //獨立呼叫Transcation成立
                    DBT.Commit();
                }

                #endregion

            }
            catch (Exception ex)
            {
                #region 交易失敗

                if (IsRootTranscation)
                {
                    //獨立呼叫Transcation失敗
                    DBT.Rollback();
                }

                #endregion

                throw ex;
            }
            finally
            {
                #region 判斷是否關閉交易連線

                if (IsRootTranscation)
                {
                    //獨立呼叫Transcation,關閉連線
                    if (Conn.State == ConnectionState.Connecting)
                    {
                        Conn.Close();
                    }
                }

                #endregion
            }

        }
        public void UpdateSKUPeriod(ArrayList ParameterList, ArrayList Array_List, DbTransaction RootDBT, bool isEnd, DbConnection con)
        {
            bool IsRootTranscation = false;

            try
            {
                //判斷是否有傳入Root Transcation 
                IsRootTranscation = (RootDBT.Connection == null) ? true : false;

                #region 啟動交易或指定RootTranscation

                if (IsRootTranscation)
                {
                    //獨立呼叫啟動Transcation
                    Conn = USEDB.CreateConnection();
                    Conn.Open();
                    DBT = Conn.BeginTransaction();
                }
                else
                {
                    DBT = RootDBT;
                }

                #endregion

                DBO.ITM_SKUPeriodDBO dbo = new ITM_SKUPeriodDBO(ref USEDB);
                dbo.doUpdate(ParameterList, DBT);

                DBO.ITM_PeriodProfileDBO Dbo = new ITM_PeriodProfileDBO(ref USEDB);
                Dbo.doUpdate(Array_List, DBT);

                #region 交易成功

                if (isEnd)
                {
                    //獨立呼叫Transcation成立
                    DBT.Commit();
                }

                #endregion

            }
            catch (Exception ex)
            {
                #region 交易失敗

                if (!IsRootTranscation)
                {
                    //獨立呼叫Transcation失敗
                    DBT.Rollback();
                }

                #endregion

                throw ex;
            }
            finally
            {
                #region 判斷是否關閉交易連線

                if (isEnd)
                {
                    //獨立呼叫Transcation,關閉連線
                    //if (Conn.State == ConnectionState.Connecting)
                    //{
                    //    Conn.Close();
                    //}
                    if (con.State == ConnectionState.Connecting || con.State == ConnectionState.Open)
                    {
                        con.Close();
                    }
                }

                #endregion

            }
        }
        public DataTable QueryByLikeForSLP(ArrayList ParameterList)
        {
            try
            {
                DBO.ITM_SKUPeriodDBO dbo = new ITM_SKUPeriodDBO(ref USEDB);
                ParameterList[0] = ParameterList[0] + "%";
                ParameterList[1] = ParameterList[1];
                ParameterList[2] = ParameterList[2];
                ParameterList[3] = ParameterList[3];
                ParameterList[4] = ParameterList[4];
                ParameterList[5] = ParameterList[5];
                ParameterList[6] = ParameterList[6];
                ParameterList[7] = ParameterList[7];

                return dbo.doQueryByLikeForSLP(ParameterList);
            }
            catch (Exception ex)
            {
                throw ex;
            }
        }
 public DataTable QueryForSLP(ArrayList ParameterList)
 {
     try
     {
         DBO.ITM_SKUPeriodDBO dbo = new ITM_SKUPeriodDBO(ref USEDB);
         return dbo.doQueryForSLP(ParameterList);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }
 public string QueryChkItemPeriod(ArrayList ParameterList)
 {
     try
     {
         DBO.ITM_SKUPeriodDBO dbo = new ITM_SKUPeriodDBO(ref USEDB);
         return dbo.QueryChkItemPeriod(ParameterList);
     }
     catch (Exception ex)
     {
         throw ex;
     }
 }