diff --git a/Tiobon.Core.Api/Tiobon.Core.Model.xml b/Tiobon.Core.Api/Tiobon.Core.Model.xml index 40067397..73008b44 100644 --- a/Tiobon.Core.Api/Tiobon.Core.Model.xml +++ b/Tiobon.Core.Api/Tiobon.Core.Model.xml @@ -6140,7 +6140,7 @@ 讲师上级ID - + 上级反馈单ID @@ -24797,7 +24797,7 @@ 讲师上级ID - + 上级反馈单ID diff --git a/Tiobon.Core.Model/Base/Ghre/Ghre_OpenClass.Dto.Base.cs b/Tiobon.Core.Model/Base/Ghre/Ghre_OpenClass.Dto.Base.cs index dbd0fe3e..06d650cc 100644 --- a/Tiobon.Core.Model/Base/Ghre/Ghre_OpenClass.Dto.Base.cs +++ b/Tiobon.Core.Model/Base/Ghre/Ghre_OpenClass.Dto.Base.cs @@ -326,7 +326,7 @@ public class Ghre_OpenClassBase /// /// 上级反馈单ID /// - public int? ParentFeedbackIdbig { get; set; } + public long? ParentFeedbackId { get; set; } diff --git a/Tiobon.Core.Model/Models/Ghre/Ghre_OpenClass.cs b/Tiobon.Core.Model/Models/Ghre/Ghre_OpenClass.cs index 51ccccdd..4fb39637 100644 --- a/Tiobon.Core.Model/Models/Ghre/Ghre_OpenClass.cs +++ b/Tiobon.Core.Model/Models/Ghre/Ghre_OpenClass.cs @@ -327,5 +327,5 @@ public class Ghre_OpenClass : BasePoco /// /// 上级反馈单ID /// - public int? ParentFeedbackIdbig { get; set; } + public long? ParentFeedbackId { get; set; } } diff --git a/Tiobon.Core.Services/Ghre/Ghre_StudyRecordServices.cs b/Tiobon.Core.Services/Ghre/Ghre_StudyRecordServices.cs index c60b0730..d52ec200 100644 --- a/Tiobon.Core.Services/Ghre/Ghre_StudyRecordServices.cs +++ b/Tiobon.Core.Services/Ghre/Ghre_StudyRecordServices.cs @@ -1135,7 +1135,8 @@ public class Ghre_StudyRecordServices : BaseServices= dt) x.DisableExamBtn = false; - if ((x.StudyProgress < 100 || x.ExamId.IsNull()) && x.IsRequireStudy != false) - x.DisableExamBtn = true; + if (x.StudyProgress >= 100 && x.ExamId.IsNotEmptyOrNull() && x.IsRequireStudy != false) + x.DisableExamBtn = false; + if (x.FeedbackOrderId.IsNull()) + { x.ShowFeedbackBtn = false; + x.DisableFeedbackBtn = false; + + } #region 处理学习进度 diff --git a/Tiobon.Core/Tiobon.Core.Model.xml b/Tiobon.Core/Tiobon.Core.Model.xml index 91779e8e..73008b44 100644 --- a/Tiobon.Core/Tiobon.Core.Model.xml +++ b/Tiobon.Core/Tiobon.Core.Model.xml @@ -6140,7 +6140,7 @@ 讲师上级ID - + 上级反馈单ID @@ -9190,6 +9190,11 @@ 预留字段12 + + + 开班ID + + Ghre_SurveyRecordDetail (Dto.Base) @@ -24792,7 +24797,7 @@ 讲师上级ID - + 上级反馈单ID @@ -27752,6 +27757,11 @@ 预留字段12 + + + 开班ID + + Ghre_SurveyRecordDetail (Model) diff --git a/Tiobon.Core/Tiobon.Core.xml b/Tiobon.Core/Tiobon.Core.xml index 5b627a90..90ecfb15 100644 --- a/Tiobon.Core/Tiobon.Core.xml +++ b/Tiobon.Core/Tiobon.Core.xml @@ -1521,6 +1521,14 @@ + + + 查询 + + + 开班ID + + 提交