コード例 #1
0
ファイル: Dict.cs プロジェクト: luowenyuyu/DorllyWork
        private string updateaction(JsonArrayParse jp)
        {
            JsonObjectCollection collection = new JsonObjectCollection();
            string flag   = "1";
            string result = "";;

            try
            {
                Business.Base.BusinessDict bc = new project.Business.Base.BusinessDict();
                bc.load(jp.getValue("id"), type, user.Entity.AccID);

                collection.Add(new JsonStringValue("DictNo", bc.Entity.DictNo));
                collection.Add(new JsonStringValue("DictName", bc.Entity.DictName));
                collection.Add(new JsonStringValue("Remark", bc.Entity.Remark));
            }
            catch
            { flag = "2"; }

            collection.Add(new JsonStringValue("type", "update"));
            collection.Add(new JsonStringValue("flag", flag));

            result = collection.ToString();

            return(result);
        }
コード例 #2
0
ファイル: Dict.cs プロジェクト: luowenyuyu/DorllyWork
        private string deleteaction(JsonArrayParse jp)
        {
            JsonObjectCollection collection = new JsonObjectCollection();
            string flag = "1";

            try
            {
                Business.Base.BusinessDict bc = new project.Business.Base.BusinessDict();
                bc.load(jp.getValue("id"), type, user.Entity.AccID);

                if (type == "CustType")
                {
                    if (obj.ExecuteDataSet("select 1 from Base_Cust_Info where CustType='" + bc.Entity.DictNo + "' and AccID='" + user.Entity.AccID + "'").Tables[0].Rows.Count > 0)
                    {
                        flag = "3";
                    }
                }

                if (flag == "1")
                {
                    int r = bc.delete();
                    if (r <= 0)
                    {
                        flag = "2";
                    }
                }
            }
            catch { flag = "2"; }

            collection.Add(new JsonStringValue("type", "delete"));
            collection.Add(new JsonStringValue("flag", flag));
            collection.Add(new JsonStringValue("liststr", createList()));

            return(collection.ToString());
        }
コード例 #3
0
ファイル: Dict.cs プロジェクト: luowenyuyu/DorllyWork
        private string submitaction(JsonArrayParse jp)
        {
            JsonObjectCollection collection = new JsonObjectCollection();
            string flag = "1";

            try
            {
                Business.Base.BusinessDict bc = new project.Business.Base.BusinessDict();
                if (jp.getValue("tp") == "update")
                {
                    bc.load(jp.getValue("id"), type, user.Entity.AccID);
                    bc.Entity.DictName = jp.getValue("DictName");
                    bc.Entity.Remark   = jp.getValue("Remark");
                    int r = bc.Save("update");
                    if (r <= 0)
                    {
                        flag = "2";
                    }
                }
                else
                {
                    Data      obj = new Data();
                    DataTable dt  = obj.ExecuteDataSet("select cnt=COUNT(*) from Base_Dict where DictNo=N'" + jp.getValue("DictNo") + "' and DictType='" + jp.getValue("DictType") + "' and AccID='" + user.Entity.AccID + "'").Tables[0];
                    if (int.Parse(dt.Rows[0]["cnt"].ToString()) > 0)
                    {
                        flag = "3";
                    }
                    else
                    {
                        bc.Entity.DictNo   = jp.getValue("DictNo");
                        bc.Entity.DictName = jp.getValue("DictName");
                        bc.Entity.Remark   = jp.getValue("Remark");
                        bc.Entity.AccID    = user.Entity.AccID;
                        bc.Entity.DictType = type;
                        int r = bc.Save("insert");
                        if (r <= 0)
                        {
                            flag = "2";
                        }
                    }
                }
            }
            catch { flag = "2"; }

            collection.Add(new JsonStringValue("type", "submit"));
            collection.Add(new JsonStringValue("flag", flag));
            collection.Add(new JsonStringValue("liststr", createList()));

            return(collection.ToString());
        }
コード例 #4
0
ファイル: dict_bak.cs プロジェクト: luowenyuyu/DorllyWork
        private string deleteaction(JsonArrayParse jp)
        {
            JsonObjectCollection collection = new JsonObjectCollection();
            string flag = "1";

            try
            {
                Business.Base.BusinessDict bc = new project.Business.Base.BusinessDict();
                bc.load(jp.getValue("id"), user.Entity.AccID, jp.getValue("DictType"));
                int r = bc.delete();
                if (r <= 0)
                {
                    flag = "2";
                }
            }
            catch { flag = "2"; }

            collection.Add(new JsonStringValue("type", "delete"));
            collection.Add(new JsonStringValue("flag", flag));
            collection.Add(new JsonStringValue("liststr", createList(jp.getValue("DictType"))));

            return(collection.ToString());
        }