コード例 #1
0
ファイル: Bll_WH_ApplyBuy.cs プロジェクト: huaminglee/hfoa
        /// <summary>
        /// 更新数据
        /// </summary>
        /// <param name='model'>实体</param>
        /// <returns>bool</returns>
        public bool Update(WH_ApplyBuy model)
        {
            bool result  = false;
            var  e       = new ModelExceptions();
            int  _rseult = instance.Update(model);

            if (_rseult > 0)
            {
                result = true;
            }
            return(result);
        }
コード例 #2
0
ファイル: Bll_WH_ApplyBuy.cs プロジェクト: huaminglee/hfoa
        /// <summary>
        /// 获取实体数据
        /// </summary>
        /// <param name='strCondition'>条件(AND Code='11')</param>
        /// <returns>model</returns>
        public WH_ApplyBuy GetModel(string strCondition)
        {
            List <WH_ApplyBuy> list  = instance.GetListByWhere(strCondition);
            WH_ApplyBuy        model = new WH_ApplyBuy();

            if (list != null && list.Count > 0)
            {
                model = list[0];
            }
            else
            {
                model = null;
            }
            return(model);
        }
コード例 #3
0
ファイル: Bll_WH_ApplyBuy.cs プロジェクト: huaminglee/hfoa
        /// <summary>
        /// 插入数据
        /// </summary>
        /// <param name='model'>实体</param>
        /// <param name='model'>是否完成验证</param>
        /// <returns>bool</returns>
        public bool Insert(WH_ApplyBuy model, bool IsValid)
        {
            var  e      = new ModelExceptions();
            bool result = false;

            if (e.IsValid && IsValid)
            {
                //完成了验证,开始更新数据库了
                int _result = instance.Add(model);
                if (_result > 0)
                {
                    result = true;
                }
            }
            return(result);
        }
コード例 #4
0
ファイル: Bll_WH_ApplyBuy.cs プロジェクト: huaminglee/hfoa
        /// <summary>
        /// 逻辑删除数据
        /// </summary>
        /// <param name='model'>model</param>
        /// <returns>bool</returns>
        public bool Delete(string Condition)
        {
            bool result             = false;
            List <WH_ApplyBuy> list = instance.GetListByWhere(Condition);

            if (list.Count > 0)
            {
                WH_ApplyBuy model = list[0];
                model.Stat = 1;
                int _rseult = instance.Update(model);
                if (_rseult > 0)
                {
                    result = true;
                }
            }
            return(result);
        }
コード例 #5
0
ファイル: Bll_WH_ApplyBuy.cs プロジェクト: huaminglee/hfoa
        /// <summary>
        /// 插入数据
        /// </summary>
        /// <param name='model'>实体</param>
        /// <returns>bool</returns>
        public bool Insert(WH_ApplyBuy model)
        {
            bool result = false;

            try
            {
                int _result = instance.Add(model);
                if (_result > 0)
                {
                    result = true;
                }
            }
            catch (Exception ex)
            {
                throw ex;
            }

            return(result);
        }
コード例 #6
0
        /// <summary>
        /// 获取所有的请购单 WH_ApplyBuy对象(即:一条记录
        /// </summary>
        public List <WH_ApplyBuy> GetAll()
        {
            List <WH_ApplyBuy> ret = new List <WH_ApplyBuy>();
            string             sql = "SELECT  MVI_ID,MVI_Code,MVI_RCode,MVI_Type,MVI_MCode,MVI_Spec,MVI_Sup,MVI_Num,MVI_Unit,MVI_MDPrice,Stat,MV_CustCode,MV_CustName,MV_CustRef,MV_CustDate,MV_VerifyStep,MV_VerifyStuff,MV_VerifyDate,MV_VerifyStat,MV_ContractNo FROM WH_ApplyBuy where 1=1 AND ((Stat is null) or (Stat=0) ) order by MVI_ID desc ";
            SqlDataReader      dr  = null;

            try {
                dr = (SqlDataReader)idb.ReturnReader(sql);
                while (dr.Read())
                {
                    WH_ApplyBuy wH_ApplyBuy = new WH_ApplyBuy();
                    if (dr["MVI_ID"] != DBNull.Value)
                    {
                        wH_ApplyBuy.MVI_ID = Convert.ToDecimal(dr["MVI_ID"]);
                    }
                    if (dr["MVI_Code"] != DBNull.Value)
                    {
                        wH_ApplyBuy.MVI_Code = Convert.ToString(dr["MVI_Code"]);
                    }
                    if (dr["MVI_RCode"] != DBNull.Value)
                    {
                        wH_ApplyBuy.MVI_RCode = Convert.ToString(dr["MVI_RCode"]);
                    }
                    if (dr["MVI_Type"] != DBNull.Value)
                    {
                        wH_ApplyBuy.MVI_Type = Convert.ToString(dr["MVI_Type"]);
                    }
                    if (dr["MVI_MCode"] != DBNull.Value)
                    {
                        wH_ApplyBuy.MVI_MCode = Convert.ToString(dr["MVI_MCode"]);
                    }
                    if (dr["MVI_Spec"] != DBNull.Value)
                    {
                        wH_ApplyBuy.MVI_Spec = Convert.ToString(dr["MVI_Spec"]);
                    }
                    if (dr["MVI_Sup"] != DBNull.Value)
                    {
                        wH_ApplyBuy.MVI_Sup = Convert.ToString(dr["MVI_Sup"]);
                    }
                    if (dr["MVI_Num"] != DBNull.Value)
                    {
                        wH_ApplyBuy.MVI_Num = Convert.ToInt32(dr["MVI_Num"]);
                    }
                    if (dr["MVI_Unit"] != DBNull.Value)
                    {
                        wH_ApplyBuy.MVI_Unit = Convert.ToString(dr["MVI_Unit"]);
                    }
                    if (dr["MVI_MDPrice"] != DBNull.Value)
                    {
                        wH_ApplyBuy.MVI_MDPrice = Convert.ToDouble(dr["MVI_MDPrice"]);
                    }
                    if (dr["Stat"] != DBNull.Value)
                    {
                        wH_ApplyBuy.Stat = Convert.ToInt32(dr["Stat"]);
                    }
                    if (dr["MV_CustCode"] != DBNull.Value)
                    {
                        wH_ApplyBuy.MV_CustCode = Convert.ToString(dr["MV_CustCode"]);
                    }
                    if (dr["MV_CustName"] != DBNull.Value)
                    {
                        wH_ApplyBuy.MV_CustName = Convert.ToString(dr["MV_CustName"]);
                    }
                    if (dr["MV_CustRef"] != DBNull.Value)
                    {
                        wH_ApplyBuy.MV_CustRef = Convert.ToString(dr["MV_CustRef"]);
                    }
                    if (dr["MV_CustDate"] != DBNull.Value)
                    {
                        wH_ApplyBuy.MV_CustDate = Convert.ToString(dr["MV_CustDate"]);
                    }
                    if (dr["MV_VerifyStep"] != DBNull.Value)
                    {
                        wH_ApplyBuy.MV_VerifyStep = Convert.ToString(dr["MV_VerifyStep"]);
                    }
                    if (dr["MV_VerifyStuff"] != DBNull.Value)
                    {
                        wH_ApplyBuy.MV_VerifyStuff = Convert.ToString(dr["MV_VerifyStuff"]);
                    }
                    if (dr["MV_VerifyDate"] != DBNull.Value)
                    {
                        wH_ApplyBuy.MV_VerifyDate = Convert.ToDateTime(dr["MV_VerifyDate"]);
                    }
                    if (dr["MV_VerifyStat"] != DBNull.Value)
                    {
                        wH_ApplyBuy.MV_VerifyStat = Convert.ToString(dr["MV_VerifyStat"]);
                    }
                    if (dr["MV_ContractNo"] != DBNull.Value)
                    {
                        wH_ApplyBuy.MV_ContractNo = Convert.ToString(dr["MV_ContractNo"]);
                    }
                    ret.Add(wH_ApplyBuy);
                }
            }catch (System.Exception ex) { throw ex; }  finally { if (dr != null)
                                                                  {
                                                                      dr.Close();
                                                                  }
                                                                  if (idb.GetConnection() != null && idb.GetConnection().State == ConnectionState.Open)
                                                                  {
                                                                      idb.GetConnection().Close();
                                                                  }
            }
            return(ret);
        }
コード例 #7
0
        /// <summary>
        /// 更新请购单 WH_ApplyBuy对象(即:一条记录
        /// </summary>
        public int Update(WH_ApplyBuy wH_ApplyBuy)
        {
            StringBuilder sbParameter = new StringBuilder();
            StringBuilder sb          = new StringBuilder();

            sb.Append(@"UPDATE       WH_ApplyBuy       SET ");
            if (wH_ApplyBuy.MVI_Code_IsChanged)
            {
                sbParameter.Append("MVI_Code=@MVI_Code, ");
            }
            if (wH_ApplyBuy.MVI_RCode_IsChanged)
            {
                sbParameter.Append("MVI_RCode=@MVI_RCode, ");
            }
            if (wH_ApplyBuy.MVI_Type_IsChanged)
            {
                sbParameter.Append("MVI_Type=@MVI_Type, ");
            }
            if (wH_ApplyBuy.MVI_MCode_IsChanged)
            {
                sbParameter.Append("MVI_MCode=@MVI_MCode, ");
            }
            if (wH_ApplyBuy.MVI_Spec_IsChanged)
            {
                sbParameter.Append("MVI_Spec=@MVI_Spec, ");
            }
            if (wH_ApplyBuy.MVI_Sup_IsChanged)
            {
                sbParameter.Append("MVI_Sup=@MVI_Sup, ");
            }
            if (wH_ApplyBuy.MVI_Num_IsChanged)
            {
                sbParameter.Append("MVI_Num=@MVI_Num, ");
            }
            if (wH_ApplyBuy.MVI_Unit_IsChanged)
            {
                sbParameter.Append("MVI_Unit=@MVI_Unit, ");
            }
            if (wH_ApplyBuy.MVI_MDPrice_IsChanged)
            {
                sbParameter.Append("MVI_MDPrice=@MVI_MDPrice, ");
            }
            if (wH_ApplyBuy.Stat_IsChanged)
            {
                sbParameter.Append("Stat=@Stat, ");
            }
            if (wH_ApplyBuy.MV_CustCode_IsChanged)
            {
                sbParameter.Append("MV_CustCode=@MV_CustCode, ");
            }
            if (wH_ApplyBuy.MV_CustName_IsChanged)
            {
                sbParameter.Append("MV_CustName=@MV_CustName, ");
            }
            if (wH_ApplyBuy.MV_CustRef_IsChanged)
            {
                sbParameter.Append("MV_CustRef=@MV_CustRef, ");
            }
            if (wH_ApplyBuy.MV_CustDate_IsChanged)
            {
                sbParameter.Append("MV_CustDate=@MV_CustDate, ");
            }
            if (wH_ApplyBuy.MV_VerifyStep_IsChanged)
            {
                sbParameter.Append("MV_VerifyStep=@MV_VerifyStep, ");
            }
            if (wH_ApplyBuy.MV_VerifyStuff_IsChanged)
            {
                sbParameter.Append("MV_VerifyStuff=@MV_VerifyStuff, ");
            }
            if (wH_ApplyBuy.MV_VerifyDate_IsChanged)
            {
                sbParameter.Append("MV_VerifyDate=@MV_VerifyDate, ");
            }
            if (wH_ApplyBuy.MV_VerifyStat_IsChanged)
            {
                sbParameter.Append("MV_VerifyStat=@MV_VerifyStat, ");
            }
            if (wH_ApplyBuy.MV_ContractNo_IsChanged)
            {
                sbParameter.Append("MV_ContractNo=@MV_ContractNo ");
            }
            sb.Append(sbParameter.ToString().Trim().TrimEnd(','));
            sb.Append(" WHERE 1=1 AND ((Stat is null) or (Stat=0))   and MVI_ID=@MVI_ID; ");
            string sql = sb.ToString();

            if (wH_ApplyBuy.MVI_Code_IsChanged)
            {
                if (string.IsNullOrEmpty(wH_ApplyBuy.MVI_Code))
                {
                    idb.AddParameter("@MVI_Code", DBNull.Value);
                }
                else
                {
                    idb.AddParameter("@MVI_Code", wH_ApplyBuy.MVI_Code);
                }
            }
            if (wH_ApplyBuy.MVI_RCode_IsChanged)
            {
                if (string.IsNullOrEmpty(wH_ApplyBuy.MVI_RCode))
                {
                    idb.AddParameter("@MVI_RCode", DBNull.Value);
                }
                else
                {
                    idb.AddParameter("@MVI_RCode", wH_ApplyBuy.MVI_RCode);
                }
            }
            if (wH_ApplyBuy.MVI_Type_IsChanged)
            {
                if (string.IsNullOrEmpty(wH_ApplyBuy.MVI_Type))
                {
                    idb.AddParameter("@MVI_Type", DBNull.Value);
                }
                else
                {
                    idb.AddParameter("@MVI_Type", wH_ApplyBuy.MVI_Type);
                }
            }
            if (wH_ApplyBuy.MVI_MCode_IsChanged)
            {
                if (string.IsNullOrEmpty(wH_ApplyBuy.MVI_MCode))
                {
                    idb.AddParameter("@MVI_MCode", DBNull.Value);
                }
                else
                {
                    idb.AddParameter("@MVI_MCode", wH_ApplyBuy.MVI_MCode);
                }
            }
            if (wH_ApplyBuy.MVI_Spec_IsChanged)
            {
                if (string.IsNullOrEmpty(wH_ApplyBuy.MVI_Spec))
                {
                    idb.AddParameter("@MVI_Spec", DBNull.Value);
                }
                else
                {
                    idb.AddParameter("@MVI_Spec", wH_ApplyBuy.MVI_Spec);
                }
            }
            if (wH_ApplyBuy.MVI_Sup_IsChanged)
            {
                if (string.IsNullOrEmpty(wH_ApplyBuy.MVI_Sup))
                {
                    idb.AddParameter("@MVI_Sup", DBNull.Value);
                }
                else
                {
                    idb.AddParameter("@MVI_Sup", wH_ApplyBuy.MVI_Sup);
                }
            }
            if (wH_ApplyBuy.MVI_Num_IsChanged)
            {
                if (wH_ApplyBuy.MVI_Num == 0)
                {
                    idb.AddParameter("@MVI_Num", 0);
                }
                else
                {
                    idb.AddParameter("@MVI_Num", wH_ApplyBuy.MVI_Num);
                }
            }
            if (wH_ApplyBuy.MVI_Unit_IsChanged)
            {
                if (string.IsNullOrEmpty(wH_ApplyBuy.MVI_Unit))
                {
                    idb.AddParameter("@MVI_Unit", DBNull.Value);
                }
                else
                {
                    idb.AddParameter("@MVI_Unit", wH_ApplyBuy.MVI_Unit);
                }
            }
            if (wH_ApplyBuy.MVI_MDPrice_IsChanged)
            {
                if (wH_ApplyBuy.MVI_MDPrice == 0)
                {
                    idb.AddParameter("@MVI_MDPrice", 0);
                }
                else
                {
                    idb.AddParameter("@MVI_MDPrice", wH_ApplyBuy.MVI_MDPrice);
                }
            }
            if (wH_ApplyBuy.Stat_IsChanged)
            {
                if (wH_ApplyBuy.Stat == 0)
                {
                    idb.AddParameter("@Stat", 0);
                }
                else
                {
                    idb.AddParameter("@Stat", wH_ApplyBuy.Stat);
                }
            }
            if (wH_ApplyBuy.MV_CustCode_IsChanged)
            {
                if (string.IsNullOrEmpty(wH_ApplyBuy.MV_CustCode))
                {
                    idb.AddParameter("@MV_CustCode", DBNull.Value);
                }
                else
                {
                    idb.AddParameter("@MV_CustCode", wH_ApplyBuy.MV_CustCode);
                }
            }
            if (wH_ApplyBuy.MV_CustName_IsChanged)
            {
                if (string.IsNullOrEmpty(wH_ApplyBuy.MV_CustName))
                {
                    idb.AddParameter("@MV_CustName", DBNull.Value);
                }
                else
                {
                    idb.AddParameter("@MV_CustName", wH_ApplyBuy.MV_CustName);
                }
            }
            if (wH_ApplyBuy.MV_CustRef_IsChanged)
            {
                if (string.IsNullOrEmpty(wH_ApplyBuy.MV_CustRef))
                {
                    idb.AddParameter("@MV_CustRef", DBNull.Value);
                }
                else
                {
                    idb.AddParameter("@MV_CustRef", wH_ApplyBuy.MV_CustRef);
                }
            }
            if (wH_ApplyBuy.MV_CustDate_IsChanged)
            {
                if (string.IsNullOrEmpty(wH_ApplyBuy.MV_CustDate))
                {
                    idb.AddParameter("@MV_CustDate", DBNull.Value);
                }
                else
                {
                    idb.AddParameter("@MV_CustDate", wH_ApplyBuy.MV_CustDate);
                }
            }
            if (wH_ApplyBuy.MV_VerifyStep_IsChanged)
            {
                if (string.IsNullOrEmpty(wH_ApplyBuy.MV_VerifyStep))
                {
                    idb.AddParameter("@MV_VerifyStep", DBNull.Value);
                }
                else
                {
                    idb.AddParameter("@MV_VerifyStep", wH_ApplyBuy.MV_VerifyStep);
                }
            }
            if (wH_ApplyBuy.MV_VerifyStuff_IsChanged)
            {
                if (string.IsNullOrEmpty(wH_ApplyBuy.MV_VerifyStuff))
                {
                    idb.AddParameter("@MV_VerifyStuff", DBNull.Value);
                }
                else
                {
                    idb.AddParameter("@MV_VerifyStuff", wH_ApplyBuy.MV_VerifyStuff);
                }
            }
            if (wH_ApplyBuy.MV_VerifyDate_IsChanged)
            {
                if (wH_ApplyBuy.MV_VerifyDate == DateTime.MinValue)
                {
                    idb.AddParameter("@MV_VerifyDate", DBNull.Value);
                }
                else
                {
                    idb.AddParameter("@MV_VerifyDate", wH_ApplyBuy.MV_VerifyDate);
                }
            }
            if (wH_ApplyBuy.MV_VerifyStat_IsChanged)
            {
                if (string.IsNullOrEmpty(wH_ApplyBuy.MV_VerifyStat))
                {
                    idb.AddParameter("@MV_VerifyStat", DBNull.Value);
                }
                else
                {
                    idb.AddParameter("@MV_VerifyStat", wH_ApplyBuy.MV_VerifyStat);
                }
            }
            if (wH_ApplyBuy.MV_ContractNo_IsChanged)
            {
                if (string.IsNullOrEmpty(wH_ApplyBuy.MV_ContractNo))
                {
                    idb.AddParameter("@MV_ContractNo", DBNull.Value);
                }
                else
                {
                    idb.AddParameter("@MV_ContractNo", wH_ApplyBuy.MV_ContractNo);
                }
            }

            idb.AddParameter("@MVI_ID", wH_ApplyBuy.MVI_ID);


            int Re = 0;
            //SQL日志记录
            var RunMethod = System.Reflection.MethodBase.GetCurrentMethod();

            System.Collections.Hashtable param = new System.Collections.Hashtable();
            string Ex = "0";

            foreach (System.Collections.DictionaryEntry item in idb.GetParameters())
            {
                param.Add(item.Key, item.Value);
            }
            try
            {
                Re = idb.ExeCmd(sql);
                Ex = Re.ToString();
            }
            catch (Exception ex)
            {
                Ex = ex.Message;
            }

            SysRunLog.InsertRunSql(sql, param, RunMethod.DeclaringType + "." + RunMethod.Name, Ex);

            return(Re);
        }
コード例 #8
0
        /// <summary>
        /// 添加请购单 WH_ApplyBuy对象(即:一条记录)
        /// </summary>
        public object AddWithReturn(WH_ApplyBuy wH_ApplyBuy)
        {
            string sql = "INSERT INTO WH_ApplyBuy (MVI_Code,MVI_RCode,MVI_Type,MVI_MCode,MVI_Spec,MVI_Sup,MVI_Num,MVI_Unit,MVI_MDPrice,Stat,MV_CustCode,MV_CustName,MV_CustRef,MV_CustDate,MV_VerifyStep,MV_VerifyStuff,MV_VerifyDate,MV_VerifyStat,MV_ContractNo) VALUES (@MVI_Code,@MVI_RCode,@MVI_Type,@MVI_MCode,@MVI_Spec,@MVI_Sup,@MVI_Num,@MVI_Unit,@MVI_MDPrice,@Stat,@MV_CustCode,@MV_CustName,@MV_CustRef,@MV_CustDate,@MV_VerifyStep,@MV_VerifyStuff,@MV_VerifyDate,@MV_VerifyStat,@MV_ContractNo);SELECT @@IDENTITY AS ReturnID;";

            if (string.IsNullOrEmpty(wH_ApplyBuy.MVI_Code))
            {
                idb.AddParameter("@MVI_Code", DBNull.Value);
            }
            else
            {
                idb.AddParameter("@MVI_Code", wH_ApplyBuy.MVI_Code);
            }
            if (string.IsNullOrEmpty(wH_ApplyBuy.MVI_RCode))
            {
                idb.AddParameter("@MVI_RCode", DBNull.Value);
            }
            else
            {
                idb.AddParameter("@MVI_RCode", wH_ApplyBuy.MVI_RCode);
            }
            if (string.IsNullOrEmpty(wH_ApplyBuy.MVI_Type))
            {
                idb.AddParameter("@MVI_Type", DBNull.Value);
            }
            else
            {
                idb.AddParameter("@MVI_Type", wH_ApplyBuy.MVI_Type);
            }
            if (string.IsNullOrEmpty(wH_ApplyBuy.MVI_MCode))
            {
                idb.AddParameter("@MVI_MCode", DBNull.Value);
            }
            else
            {
                idb.AddParameter("@MVI_MCode", wH_ApplyBuy.MVI_MCode);
            }
            if (string.IsNullOrEmpty(wH_ApplyBuy.MVI_Spec))
            {
                idb.AddParameter("@MVI_Spec", DBNull.Value);
            }
            else
            {
                idb.AddParameter("@MVI_Spec", wH_ApplyBuy.MVI_Spec);
            }
            if (string.IsNullOrEmpty(wH_ApplyBuy.MVI_Sup))
            {
                idb.AddParameter("@MVI_Sup", DBNull.Value);
            }
            else
            {
                idb.AddParameter("@MVI_Sup", wH_ApplyBuy.MVI_Sup);
            }
            if (wH_ApplyBuy.MVI_Num == 0)
            {
                idb.AddParameter("@MVI_Num", 0);
            }
            else
            {
                idb.AddParameter("@MVI_Num", wH_ApplyBuy.MVI_Num);
            }
            if (string.IsNullOrEmpty(wH_ApplyBuy.MVI_Unit))
            {
                idb.AddParameter("@MVI_Unit", DBNull.Value);
            }
            else
            {
                idb.AddParameter("@MVI_Unit", wH_ApplyBuy.MVI_Unit);
            }
            if (wH_ApplyBuy.MVI_MDPrice == 0)
            {
                idb.AddParameter("@MVI_MDPrice", 0);
            }
            else
            {
                idb.AddParameter("@MVI_MDPrice", wH_ApplyBuy.MVI_MDPrice);
            }
            if (wH_ApplyBuy.Stat == 0)
            {
                idb.AddParameter("@Stat", 0);
            }
            else
            {
                idb.AddParameter("@Stat", wH_ApplyBuy.Stat);
            }
            if (string.IsNullOrEmpty(wH_ApplyBuy.MV_CustCode))
            {
                idb.AddParameter("@MV_CustCode", DBNull.Value);
            }
            else
            {
                idb.AddParameter("@MV_CustCode", wH_ApplyBuy.MV_CustCode);
            }
            if (string.IsNullOrEmpty(wH_ApplyBuy.MV_CustName))
            {
                idb.AddParameter("@MV_CustName", DBNull.Value);
            }
            else
            {
                idb.AddParameter("@MV_CustName", wH_ApplyBuy.MV_CustName);
            }
            if (string.IsNullOrEmpty(wH_ApplyBuy.MV_CustRef))
            {
                idb.AddParameter("@MV_CustRef", DBNull.Value);
            }
            else
            {
                idb.AddParameter("@MV_CustRef", wH_ApplyBuy.MV_CustRef);
            }
            if (string.IsNullOrEmpty(wH_ApplyBuy.MV_CustDate))
            {
                idb.AddParameter("@MV_CustDate", DBNull.Value);
            }
            else
            {
                idb.AddParameter("@MV_CustDate", wH_ApplyBuy.MV_CustDate);
            }
            if (string.IsNullOrEmpty(wH_ApplyBuy.MV_VerifyStep))
            {
                idb.AddParameter("@MV_VerifyStep", DBNull.Value);
            }
            else
            {
                idb.AddParameter("@MV_VerifyStep", wH_ApplyBuy.MV_VerifyStep);
            }
            if (string.IsNullOrEmpty(wH_ApplyBuy.MV_VerifyStuff))
            {
                idb.AddParameter("@MV_VerifyStuff", DBNull.Value);
            }
            else
            {
                idb.AddParameter("@MV_VerifyStuff", wH_ApplyBuy.MV_VerifyStuff);
            }
            if (wH_ApplyBuy.MV_VerifyDate == DateTime.MinValue)
            {
                idb.AddParameter("@MV_VerifyDate", DBNull.Value);
            }
            else
            {
                idb.AddParameter("@MV_VerifyDate", wH_ApplyBuy.MV_VerifyDate);
            }
            if (string.IsNullOrEmpty(wH_ApplyBuy.MV_VerifyStat))
            {
                idb.AddParameter("@MV_VerifyStat", DBNull.Value);
            }
            else
            {
                idb.AddParameter("@MV_VerifyStat", wH_ApplyBuy.MV_VerifyStat);
            }
            if (string.IsNullOrEmpty(wH_ApplyBuy.MV_ContractNo))
            {
                idb.AddParameter("@MV_ContractNo", DBNull.Value);
            }
            else
            {
                idb.AddParameter("@MV_ContractNo", wH_ApplyBuy.MV_ContractNo);
            }


            int Re = 0;
            //SQL日志记录
            var RunMethod = System.Reflection.MethodBase.GetCurrentMethod();

            System.Collections.Hashtable param = new System.Collections.Hashtable();
            string Ex = "0";

            foreach (System.Collections.DictionaryEntry item in idb.GetParameters())
            {
                param.Add(item.Key, item.Value);
            }
            try
            {
                var Return = idb.ReturnValue(sql);
                Ex = Return.ToString();
            }
            catch (Exception ex)
            {
                Ex = ex.Message;
            }

            SysRunLog.InsertRunSql(sql, param, RunMethod.DeclaringType + "." + RunMethod.Name, Ex);

            return(Re);
        }
コード例 #9
0
ファイル: ADOApplyBuy.cs プロジェクト: huaminglee/hfoa
        public List <WH_ApplyBuy> GetApplyBuyDetailByVender(string code, string auditStat)
        {
            List <WH_ApplyBuy> ret = new List <WH_ApplyBuy>();
            string             sql = @" select b.* from Rec_Main a,
                            WH_ApplyBuy b
                            where a.RM_Code=MVI_RCode
                            and a.VerifyStat='{0}' and b.MV_CustCode='{1}' 
                            ";

            sql = string.Format(sql, auditStat, code);
            SqlDataReader dr = (SqlDataReader)idb.ReturnReader(sql);

            while (dr.Read())
            {
                WH_ApplyBuy wH_ApplyBuy = new WH_ApplyBuy();
                if (dr["MVI_ID"] != DBNull.Value)
                {
                    wH_ApplyBuy.MVI_ID = Convert.ToInt32(dr["MVI_ID"]);
                }
                if (dr["MVI_Code"] != DBNull.Value)
                {
                    wH_ApplyBuy.MVI_Code = Convert.ToString(dr["MVI_Code"]);
                }
                if (dr["MVI_RCode"] != DBNull.Value)
                {
                    wH_ApplyBuy.MVI_RCode = Convert.ToString(dr["MVI_RCode"]);
                }
                if (dr["MVI_Type"] != DBNull.Value)
                {
                    wH_ApplyBuy.MVI_Type = Convert.ToString(dr["MVI_Type"]);
                }
                if (dr["MVI_MCode"] != DBNull.Value)
                {
                    wH_ApplyBuy.MVI_MCode = Convert.ToString(dr["MVI_MCode"]);
                }
                if (dr["MVI_Spec"] != DBNull.Value)
                {
                    wH_ApplyBuy.MVI_Spec = Convert.ToString(dr["MVI_Spec"]);
                }
                if (dr["MVI_Sup"] != DBNull.Value)
                {
                    wH_ApplyBuy.MVI_Sup = Convert.ToString(dr["MVI_Sup"]);
                }
                if (dr["MVI_Num"] != DBNull.Value)
                {
                    wH_ApplyBuy.MVI_Num = Convert.ToInt32(dr["MVI_Num"]);
                }
                if (dr["MVI_Unit"] != DBNull.Value)
                {
                    wH_ApplyBuy.MVI_Unit = Convert.ToString(dr["MVI_Unit"]);
                }
                if (dr["MVI_MDPrice"] != DBNull.Value)
                {
                    wH_ApplyBuy.MVI_MDPrice = Convert.ToDouble(dr["MVI_MDPrice"]);
                }
                if (dr["Stat"] != DBNull.Value)
                {
                    wH_ApplyBuy.Stat = Convert.ToInt32(dr["Stat"]);
                }
                if (dr["MV_CustCode"] != DBNull.Value)
                {
                    wH_ApplyBuy.MV_CustCode = Convert.ToString(dr["MV_CustCode"]);
                }
                if (dr["MV_CustName"] != DBNull.Value)
                {
                    wH_ApplyBuy.MV_CustName = Convert.ToString(dr["MV_CustName"]);
                }
                if (dr["MV_CustRef"] != DBNull.Value)
                {
                    wH_ApplyBuy.MV_CustRef = Convert.ToString(dr["MV_CustRef"]);
                }
                if (dr["MV_CustDate"] != DBNull.Value)
                {
                    wH_ApplyBuy.MV_CustDate = Convert.ToString(dr["MV_CustDate"]);
                }
                if (dr["MV_VerifyStep"] != DBNull.Value)
                {
                    wH_ApplyBuy.MV_VerifyStep = Convert.ToString(dr["MV_VerifyStep"]);
                }
                if (dr["MV_VerifyStuff"] != DBNull.Value)
                {
                    wH_ApplyBuy.MV_VerifyStuff = Convert.ToString(dr["MV_VerifyStuff"]);
                }
                if (dr["MV_VerifyDate"] != DBNull.Value)
                {
                    wH_ApplyBuy.MV_VerifyDate = Convert.ToDateTime(dr["MV_VerifyDate"]);
                }
                if (dr["MV_VerifyStat"] != DBNull.Value)
                {
                    wH_ApplyBuy.MV_VerifyStat = Convert.ToString(dr["MV_VerifyStat"]);
                }
                if (dr["MV_ContractNo"] != DBNull.Value)
                {
                    wH_ApplyBuy.MV_ContractNo = Convert.ToString(dr["MV_ContractNo"]);
                }
                ret.Add(wH_ApplyBuy);
            }
            dr.Close();
            return(ret);
        }
コード例 #10
0
ファイル: Bll_WH_ApplyBuy.cs プロジェクト: huaminglee/hfoa
        /// <summary>
        /// 获取实体数据
        /// </summary>
        /// <param name='strCondition'>条件(AND Code='11')</param>
        /// <returns>model</returns>
        public WH_ApplyBuy GetModel(int id)
        {
            WH_ApplyBuy model = instance.GetByKey(id);

            return(model);
        }