/// <summary>
        /// 工位资源同步
        /// </summary>
        /// <param name="model">au=>add or update(添加或修改);del=>删除</param>
        /// <returns></returns>
        public string SyncResource(string model)
        {
            string result = string.Empty;

            if (ConfigurationManager.AppSettings["IsPutZY"].ToString().Equals("Y"))
            {
                try
                {
                    ResourceService.ResourceService srv = new ResourceService.ResourceService
                    {
                        Timeout = 5000,
                        Url     = ConfigurationManager.AppSettings["ResourceUrl"].ToString()
                    };
                    if (model.Equals("au"))
                    {
                        result = srv.AddOrUpdateWorkPlace(JsonConvert.SerializeObject(Entity));
                    }
                    else
                    {
                        result = srv.DeleteResource(Entity.WPNo);
                    }
                }
                catch (Exception ex)
                {
                    result = ex.ToString();
                }
            }
            else
            {
                result = "已配置不同步";
            }
            return(result);
        }
Beispiel #2
0
        private string validaction(JsonArrayParse jp)
        {
            JsonObjectCollection collection = new JsonObjectCollection();
            string flag = "1";

            try
            {
                Business.Base.BusinessWorkPlace bc = new project.Business.Base.BusinessWorkPlace();
                bc.load(jp.getValue("id"));
                bc.Entity.WPISEnable = !bc.Entity.WPISEnable;

                int r = bc.valid();
                if (r <= 0)
                {
                    flag = "2";
                }
                else
                {
                    #region  步到资源系统

                    string syncResult = string.Empty;
                    try
                    {
                        ResourceService.ResourceService srv = new ResourceService.ResourceService();
                        srv.Url    = ConfigurationManager.AppSettings["ResourceServiceUrl"].ToString();
                        syncResult = srv.AddOrUpdateWorkPlace(JsonConvert.SerializeObject(bc.Entity));
                    }
                    catch (Exception ex)
                    {
                        syncResult = ex.ToString();
                    }
                    collection.Add(new JsonStringValue("sync", syncResult));

                    #endregion
                }
                if (bc.Entity.WPISEnable)
                {
                    collection.Add(new JsonStringValue("stat", "<span class=\"label radius\">禁用</span>"));
                }
                else
                {
                    collection.Add(new JsonStringValue("stat", "<span class=\"label label-success radius\">正常</span>"));
                }

                collection.Add(new JsonStringValue("id", jp.getValue("id")));
            }
            catch { flag = "2"; }

            collection.Add(new JsonStringValue("type", "valid"));
            collection.Add(new JsonStringValue("flag", flag));
            collection.Add(new JsonStringValue("liststr", createList(jp.getValue("WPNoS"), jp.getValue("WPTypeS"), jp.getValue("WPLOCNo1S"), jp.getValue("WPLOCNo2S"),
                                                                     jp.getValue("WPLOCNo3S"), jp.getValue("WPLOCNo4S"), jp.getValue("WPRMIDS"), jp.getValue("WPStatusS"), ParseIntForString(jp.getValue("page")))));
            return(collection.ToString());
        }
Beispiel #3
0
        private string submitaction(JsonArrayParse jp)
        {
            JsonObjectCollection collection = new JsonObjectCollection();
            string flag = "1";

            try
            {
                Business.Base.BusinessWorkPlace bc = new project.Business.Base.BusinessWorkPlace();
                if (jp.getValue("tp") == "update")
                {
                    bc.load(jp.getValue("id"));
                    bc.Entity.WPType       = jp.getValue("WPType");
                    bc.Entity.WPSeat       = ParseIntForString(jp.getValue("WPSeat"));
                    bc.Entity.WPSeatPrice  = ParseDecimalForString(jp.getValue("WPSeatPrice"));
                    bc.Entity.WPLOCNo1     = jp.getValue("WPLOCNo1");
                    bc.Entity.WPLOCNo2     = jp.getValue("WPLOCNo2");
                    bc.Entity.WPLOCNo3     = jp.getValue("WPLOCNo3");
                    bc.Entity.WPLOCNo4     = jp.getValue("WPLOCNo4");
                    bc.Entity.WPRMID       = jp.getValue("WPRMID");
                    bc.Entity.WPProject    = jp.getValue("WPProject");
                    bc.Entity.WPAddr       = jp.getValue("WPAddr");
                    bc.Entity.IsStatistics = bool.Parse(jp.getValue("IsStatistics"));
                    int r = bc.Save("update");

                    if (r <= 0)
                    {
                        flag = "2";
                    }
                    else
                    {
                        #region  步到资源系统

                        string syncResult = string.Empty;
                        try
                        {
                            ResourceService.ResourceService srv = new ResourceService.ResourceService();
                            srv.Url    = ConfigurationManager.AppSettings["ResourceServiceUrl"].ToString();
                            syncResult = srv.AddOrUpdateWorkPlace(JsonConvert.SerializeObject(bc.Entity));
                        }
                        catch (Exception ex)
                        {
                            syncResult = ex.ToString();
                        }
                        collection.Add(new JsonStringValue("sync", syncResult));

                        #endregion
                    }
                }
                else
                {
                    Data      obj = new Data();
                    DataTable dt  = obj.PopulateDataSet("select cnt=COUNT(*) from Mstr_WorkPlace where WPNo='" + jp.getValue("WPNo") + "'").Tables[0];
                    if (int.Parse(dt.Rows[0]["cnt"].ToString()) > 0)
                    {
                        flag = "3";
                    }
                    else
                    {
                        bc.Entity.WPNo         = jp.getValue("WPNo");
                        bc.Entity.WPType       = jp.getValue("WPType");
                        bc.Entity.WPSeat       = ParseIntForString(jp.getValue("WPSeat"));
                        bc.Entity.WPSeatPrice  = ParseDecimalForString(jp.getValue("WPSeatPrice"));
                        bc.Entity.WPLOCNo1     = jp.getValue("WPLOCNo1");
                        bc.Entity.WPLOCNo2     = jp.getValue("WPLOCNo2");
                        bc.Entity.WPLOCNo3     = jp.getValue("WPLOCNo3");
                        bc.Entity.WPLOCNo4     = jp.getValue("WPLOCNo4");
                        bc.Entity.WPRMID       = jp.getValue("WPRMID");
                        bc.Entity.WPProject    = jp.getValue("WPProject");
                        bc.Entity.WPAddr       = jp.getValue("WPAddr");
                        bc.Entity.IsStatistics = bool.Parse(jp.getValue("IsStatistics"));
                        bc.Entity.WPCreator    = user.Entity.UserName;
                        bc.Entity.WPCreateDate = GetDate();

                        int r = bc.Save("insert");
                        if (r <= 0)
                        {
                            flag = "2";
                        }
                        else
                        {
                            #region  步到资源系统

                            string syncResult = string.Empty;
                            try
                            {
                                ResourceService.ResourceService srv = new ResourceService.ResourceService();
                                srv.Url    = ConfigurationManager.AppSettings["ResourceServiceUrl"].ToString();
                                syncResult = srv.AddOrUpdateWorkPlace(JsonConvert.SerializeObject(bc.Entity));
                            }
                            catch (Exception ex)
                            {
                                syncResult = ex.ToString();
                            }
                            collection.Add(new JsonStringValue("sync", syncResult));

                            #endregion
                        }
                    }
                }
            }
            catch { flag = "2"; }


            collection.Add(new JsonStringValue("type", "submit"));
            collection.Add(new JsonStringValue("flag", flag));
            collection.Add(new JsonStringValue("liststr", createList(jp.getValue("WPNoS"), jp.getValue("WPTypeS"), jp.getValue("WPLOCNo1S"), jp.getValue("WPLOCNo2S"),
                                                                     jp.getValue("WPLOCNo3S"), jp.getValue("WPLOCNo4S"), jp.getValue("WPRMIDS"), jp.getValue("WPStatusS"), ParseIntForString(jp.getValue("page")))));

            return(collection.ToString());
        }