duheng
2024-08-29 ee20bdede31f85312ba4029773037bfa2117cbad
WinFrmUI/HStation.WinFrmUI.Xhs.Core/02-project/01-import/05-ImportCompleted/ImportXhsProjectCompletedCtrl.cs
@@ -50,6 +50,23 @@
                    }
                }
            }
            else
            {
                this.stepProgressBar1.SelectNext();
                if (vm.ProjectID.HasValue)
                {
                    this.stepProgressBar1.SelectNext();
                    if (!vm.MapInfoID.HasValue)
                    {
                        this.stepItemFormMap.ContentBlock2.Description = "自动跳过";
                    }
                    this.stepItemForBimfaceRelation.ContentBlock2.Description = "未上传模型或模型有误 已跳过...";
                    this.stepItemForBimfaceUpload.ContentBlock2.Description = "未上传模型或模型有误 已跳过...";
                    this.stepItemForHydro.ContentBlock2.Description = "未上传模型或模型有误 已跳过...";
                     this.stepItemForHydroRelation.ContentBlock2.Description = "未上传模型或模型有误 已跳过...";
                    this.stepItemForBimfaceTranslate.ContentBlock2.Description = "未上传模型或模型有误 已跳过...";
                }
            }
        }
        /// <summary>
@@ -65,7 +82,7 @@
        /// </summary>
        public bool AllowNext
        {
            get { return true; }
            get { return false; }
        }
        /// <summary>
@@ -81,7 +98,7 @@
        /// </summary>
        public bool AllowComplete
        {
            get { return false; }
            get { return true; }
        }
        /// <summary>
@@ -97,7 +114,7 @@
        /// </summary>
        public bool CanNext()
        {
            return true;
            return false;
        }
        /// <summary>
@@ -113,8 +130,8 @@
        /// </summary>
        public bool CanComplete()
        {
            _vm.IsCompleted = false;
            return false;
            _vm.IsCompleted = true;
            return true;
        }
    }
}