public void CheckTrankData(DataTable dt_Temp, string user, DbTransaction RootDBT)
        {
            bool IsRootTranscation = false;
            string s_Return_Msg = string.Empty;

            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 先確認 VDS_CRM_08_TMP 的資料

                DateTime Dt = DateTime.Now;
                ArrayList ParameterList = new ArrayList();

                foreach (DataRow dRow in dt_Temp.Rows)
                {
                    if (dRow["CHECKED"].ToString() == "TRUE")
                    {
                        ParameterList.Clear();
                        ParameterList.Add(dRow["ID"].ToString());
                        ParameterList.Add(dRow["PID"].ToString());
                        ParameterList.Add(Dt);
                        ParameterList.Add(user);
                        VCOM.CheckTrankData(ParameterList, DBT);
                    }
                }

                #endregion

                #region 交易成功

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

                #endregion

            }
            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();
                    }
                }

                #endregion
            }
        }