Exemple #1
0
        public string Add(SupAndDrugRelation item)
        {
            if (this.exit(item.SupCode, item.UserId, item.GoodsCode) > 0)
            {
                return("当前供应商上已经存在该药品");
            }
            else
            {
                string datetime = DateTime.Now.ToString("yyy-MM-dd HH:mm:ss");

                string sql = "INSERT INTO supdrugrelation (USERID,SUPCODE,SUPNAME,GOODSCODE,GOODSNAME,GOODSSPEC,CREATEMAN,CREATEDATE,DELETEMAN,DELETEDATE,ISENABLED) VALUES (" + item.UserId + ",'" + item.SupCode + "','" + item.SupName + "','" + item.GoodsCode + "','" + item.GoodsName + "','" + item.GoodsSpec + "','" + item.CreateMan + "',TO_DATE('" + item.CreateDate + "','yyyy-MM-dd HH24:MI:SS'),'" + item.DeleteMan + "',TO_DATE('" + item.DeleteData + "','yyyy-MM-dd HH24:MI:SS'),'" + item.IsEnabled + "')";


                using (DbHelperOra _ora = new DbHelperOra(ConnName))
                {
                    int result = _ora.ExecuteSql(sql);
                    if (result > 0)
                    {
                        return("操作成功");
                    }
                    else
                    {
                        return("操作失败");
                    }
                }
            }
        }
Exemple #2
0
        public string Update(SupAndDrugRelation item, string userid, string supcode, string drugcode)
        {
            string sql = "update  supdrugrelation set USERID='" + item.UserId + "',SUPCODE='" + item.SupCode + "',SUPNAME='" + item.SupName + "',GOODSCODE='" + item.GoodsCode + "',GOODSNAME='" + item.GoodsName + "',GOODSSPEC='" + item.GoodsSpec + "'where userid=" + userid + " and supcode='" + supcode + "' and GOODSCODE='" + drugcode + "'";


            using (DbHelperOra _ora = new DbHelperOra(ConnName))
            {
                int result = _ora.ExecuteSql(sql);
                if (result > 0)
                {
                    return("操作成功");
                }
                else
                {
                    return("操作失败");
                }
            }
        }
Exemple #3
0
        public SupAndDrugRelation GetMoudel(string userid, string supcode, string drugcode)
        {
            string sql = "select USERID,SUPCODE,SUPNAME,GOODSCODE,GOODSNAME,GOODSSPEC,CREATEMAN,CREATEDATE,DELETEMAN,DELETEDATE,ISENABLED from supdrugrelation where userid=" + userid + " and supcode='" + supcode + "' and GOODSCODE='" + drugcode + "'";

            SupAndDrugRelation model = new SupAndDrugRelation();

            using (DbHelperOra _ora = new DbHelperOra(ConnName))
            {
                DataSet ds = _ora.Query(sql);
                if (ds != null && ds.Tables[0].Rows.Count > 0)
                {
                    if (ds.Tables[0].Rows[0]["USERID"] != null && ds.Tables[0].Rows[0]["USERID"].ToString() != "")
                    {
                        model.UserId = int.Parse(ds.Tables[0].Rows[0]["USERID"].ToString());
                    }
                    if (ds.Tables[0].Rows[0]["SUPCODE"] != null && ds.Tables[0].Rows[0]["SUPCODE"].ToString() != "")
                    {
                        model.SupCode = ds.Tables[0].Rows[0]["SUPCODE"].ToString();
                    }
                    if (ds.Tables[0].Rows[0]["SUPNAME"] != null && ds.Tables[0].Rows[0]["SUPNAME"].ToString() != "")
                    {
                        model.SupName = ds.Tables[0].Rows[0]["SUPNAME"].ToString();
                    }
                    if (ds.Tables[0].Rows[0]["GOODSCODE"] != null && ds.Tables[0].Rows[0]["GOODSCODE"].ToString() != "")
                    {
                        model.GoodsCode = ds.Tables[0].Rows[0]["GOODSCODE"].ToString();
                    }
                    if (ds.Tables[0].Rows[0]["GOODSNAME"] != null && ds.Tables[0].Rows[0]["GOODSNAME"].ToString() != "")
                    {
                        model.GoodsName = ds.Tables[0].Rows[0]["GOODSNAME"].ToString();
                    }
                    if (ds.Tables[0].Rows[0]["GOODSSPEC"] != null && ds.Tables[0].Rows[0]["GOODSSPEC"].ToString() != "")
                    {
                        model.GoodsSpec = ds.Tables[0].Rows[0]["GOODSSPEC"].ToString();
                    }
                    if (ds.Tables[0].Rows[0]["ISENABLED"] != null && ds.Tables[0].Rows[0]["ISENABLED"].ToString() != "")
                    {
                        model.IsEnabled = ds.Tables[0].Rows[0]["ISENABLED"].ToString();
                    }
                }
            }

            return(model);
        }