/// <summary> /// 畫面調整OR整批調整 /// </summary> /// <param name="ParameterList"></param> /// <param name="RootDBT"></param> /// <param name="type">1:比例調整、2:數量調整、3:加減本數</param> public void UpdateALO123(ArrayList ParameterList, DbTransaction RootDBT, char type) //ALO123 { #region bool IsRootTranscation = false; try { //判斷是否有傳入Root Transcation IsRootTranscation = (RootDBT == null) ? true : false; #region 啟動交易或指定RootTranscation if (IsRootTranscation) { //獨立呼叫啟動Transcation Conn = USEDB.CreateConnection(); Conn.Open(); DBT = Conn.BeginTransaction(); } else { DBT = RootDBT; } #endregion VDS_ALO12_DBO DBO = new VDS_ALO12_DBO(ref USEDB); if (type == '1') //比例調整 DBO.UpdateRatioDisStoreFor12(ParameterList, DBT); else if (type == '2') //數量調整 DBO.UpdateChangeQtyDisStoreFor12(ParameterList, DBT); else if (type == '3') //加減本數 DBO.UpdateRankDisStoreFor12(ParameterList, DBT); #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 } #endregion }