/// <summary>
 /// 查詢配本區域暫存檔(區域比例計算使用)
 /// </summary>
 /// <param name="ParameterList"></param>
 /// <param name="RootDBT"></param>
 /// <returns></returns>
 public DataTable QueryDisAreaTmp(ArrayList ParameterList)
 {
     #region
     try
     {
         VDS_ALO11_DBO DBO = new VDS_ALO11_DBO(ref USEDB);
         return DBO.doQueryDisAreaTmp(ParameterList);
     }
     catch (Exception ex)
     {
         throw GetNewException(ex);
     }
     #endregion
 }
Esempio n. 2
0
 public Hashtable CheckItemPeriodDisState(ArrayList ParameterList)
 {
     #region
     try
     {
         VDS_ALO11_DBO DBO = new VDS_ALO11_DBO(ref USEDB);
         return DBO.doCheckItemPeriodDisState(ParameterList);
     }
     catch (Exception ex)
     {
         throw GetNewException(ex);
     }
     #endregion
 }
 /// <summary>
 /// 新增資料到計算比例暫存檔(在Procedure 處理 commit,AP端不處理)
 /// </summary>
 /// <param name="ParameterList"></param>
 /// <param name="RootDBT"></param>
 /// <returns></returns>
 public bool CreateALO116TMP(ArrayList ParameterList)
 {
     #region
     try
     {
         VDS_ALO11_DBO DBO = new VDS_ALO11_DBO(ref USEDB);
         return DBO.doCreateALO116TMP(ParameterList);
     }
     catch (Exception ex)
     {
         throw GetNewException(ex);
     }
     #endregion
 }
        /// <summary>
        /// 依照區域通路比例重新計算各分店配量
        /// </summary>
        /// <param name="ParameterList"></param>
        /// <param name="RootDBT"></param>
        /// <returns></returns>
        public bool CalculateDisQtyByAreaRatio(ArrayList ParameterList, DbTransaction RootDBT)
        {
            #region
            bool bResult = false;
            bool IsRootTranscation = false;

            try
            {
                VDS_ALO11_DBO DBO = new VDS_ALO11_DBO(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

                bResult = DBO.dolp_redistribute(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

            }

            return bResult;
            #endregion
        }
    /// <summary>
    /// 輔助項目計算(113)
    /// </summary>
    /// <param name="ParameterList"></param>
    /// <param name="RootDBT"></param>
    /// <returns></returns>
    public bool CalculateForAssistInfo(ArrayList ParameterList)
    {

        #region
        bool bResult = false;
        try
        {
            VDS_ALO11_DBO DBO = new VDS_ALO11_DBO(ref USEDB);
            bResult = DBO.doCalculateForAssistInfo(ParameterList);
            return bResult;
        }
        catch (Exception ex)
        {
            throw GetNewException(ex);
        }
        #endregion
    }
Esempio n. 6
0
 /// <summary>
 /// 依照條件,取得移行指數所需的去年期別資訊
 /// </summary>
 /// <param name="ParameterList"></param>
 /// <returns></returns>
 public DataTable QueryLastYear_PeriodSalesInfo(ArrayList ParameterList)
 {
     #region
     try
     {
         VDS_ALO11_DBO DBO = new VDS_ALO11_DBO(ref USEDB);
         return DBO.doQueryLastYear_PeriodSalesInfo(ParameterList);
     }
     catch (Exception ex)
     {
         throw GetNewException(ex);
     }
     #endregion
 }
Esempio n. 7
0
        public Int32 QueryParamUsedCount(ArrayList ParameterList)
        {
            #region
            try
            {

                VDS_ALO11_DBO DBO = new VDS_ALO11_DBO(ref USEDB);
                return DBO.doQueryParamUsedCount(ParameterList);
            }
            catch (Exception ex)
            {
                throw GetNewException(ex);
            }
            #endregion
        }