/// <summary>
        /// 基本表單新增BCO
        /// </summary>
        /// <param name="ParameterList">傳入參數</param>
        /// <param name="dRow">傳入參數</param>
        /// <param name="RootDBT">是否有主交易,無主交易輸入null</param>
        /// <param name="d_Now">更新後的異動時間</param>
        /// <param name="dontUpdate">0:同時異動VDS_PUR_CHANNEL_PICK_CTL、1:不異動VDS_PUR_CHANNEL_PICK_CTL</param>
        /// <returns>回傳異動筆數</returns>
        public int CreateDetail(ArrayList ParameterList, DataRow dRow, DbTransaction RootDBT, DateTime d_Now, string dontUpdate)
        {
            bool IsRootTranscation = false;
            Int32 iResult = 0;
            string s_Log_User = string.Empty;

            try
            {
                DBO.PUR_PurchaseDeliveryGoodsDBO dbo = new PUR_PurchaseDeliveryGoodsDBO(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

                s_Log_User = ParameterList[2].ToString();

                iResult = dbo.doCreate(DBT, dRow, ParameterList, s_Log_User, d_Now, dontUpdate);

                #region 交易成功

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

                #endregion

                return iResult;
            }
            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

            }
        }