#endregion
        }


        /// <summary>
        /// 根據條件,逾期客訂品項轉手開單
        /// 本功能僅針對群分類=1的資料進行處理,(因為=2/圖書的資料在CRM07訂單擷轉時就已經轉手開單了)
        /// </summary>
        /// <param name="ParameterList">
        /// @訂單擷轉日、@門市進貨日、@群分類=1、@執行者
        /// </param>
        /// <returns>
        /// @處理訊息、@處理筆數、@成功筆數
        /// </returns>
        public ArrayList ProcessCreateDisRecord(ArrayList ParameterList, DbTransaction RootDBT)
        {
            #region
            bool IsRootTranscation = false;
            ArrayList arl_Return = new ArrayList();

            try
            {
                DBO.VDS_CRM_ORDER_MAINDBO VCOM = new VDS_CRM_ORDER_MAINDBO(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

                #region 逾期客訂品項轉手開單

                arl_Return = VCOM.ProcessCreateDisRecord(ParameterList, DBT);

                #endregion

                #region 交易成功

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

                #endregion

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

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

                #endregion

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

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