Admin
2025-12-03 d41acebbd89f171b0eeb205fca4f68043ca85f95
ÏîÄ¿´úÂë/WMS/WIDESEA_WMSServer/WIDESEA_Common/LevelChange/CheckTaskChangeHelper.cs
@@ -44,10 +44,11 @@
        public static string CheckTaskwheelsProps(string wxrw)
        {
            string wheelsNewOld = string.Empty;
            if (wxrw.Contains("换轮盘(旧)"))
            if (wxrw.Contains("换轮盘(旧)") )
            {
                wheelsNewOld = "新轮旧盘";
            }else if (wxrw.Contains("换轮组成(新)"))
            }else if (wxrw.Contains("换轮组成(新)") || wxrw.Contains("换轮(新)") || wxrw.Contains("新轮新盘"))
            {
                wheelsNewOld = "新轮新盘";
            }
@@ -66,15 +67,15 @@
        public static string CheckZdpPost(string Posttype)
        {
            string PostContainer = string.Empty;
            if (Posttype=="左侧")
            if (Posttype.Contains("å·¦"))
            {
                PostContainer = "left";
            }
            else if (Posttype == "右侧")
            else if (Posttype.Contains("右"))
            {
                PostContainer = "right";
            }
            else
            else if(Posttype.Contains("中"))
            {
                PostContainer = "middle";
            }