This commit is contained in:
杨红卫 2022-09-20 17:50:09 +08:00
parent 7412e411a7
commit 8474675b90
3 changed files with 4 additions and 3 deletions

View File

@ -57,7 +57,7 @@ namespace FineUIPro.Web.HSSE.EduTrain
(CASE WHEN TestPlan.PlanName IS NULL THEN Training.TrainingName ELSE TestPlan.PlanName END) AS PlanName,Person.IdentityCard,WorkPost.WorkPostName,Person.PersonId,SitePerson.SitePersonId,
(CASE WHEN TestRecord.TestScores>=60 THEN '是' ELSE '否' END) AS IsPass,
ISNULL(TestPlan.Duration,90) AS Duration,ISNULL(TestPlan.TotalScore,100) AS TotalScore,TestPlan.TestPalce,ISNULL(TestPlan.QuestionCount,95) AS QuestionCount,TestRecord.TemporaryUser,Person.PersonName AS TestManName
,Unit.UnitName
,Unit.UnitName,Person.Telephone
FROM dbo.Training_TestRecord AS TestRecord
LEFT JOIN dbo.Training_TestPlan AS TestPlan ON TestPlan.TestPlanId=TestRecord.TestPlanId
LEFT JOIN dbo.Training_TestTraining AS Training ON Training.TrainingId = TestRecord.TestType

View File

@ -102,6 +102,7 @@ namespace FineUIPro.Web.HSSE.Manager
/// <param name="e"></param>
protected void ddlPageSize_SelectedIndexChanged(object sender, EventArgs e)
{
Grid1.PageSize = Convert.ToInt32(ddlPageSize.SelectedValue);
BindGrid();
}

View File

@ -129,13 +129,13 @@
</f:FormRow>
<f:FormRow>
<Items>
<f:TextArea ID="txtDailySummary" runat="server" Label="今日小结" Readonly="true" LabelWidth="90px" Height="64px">
<f:TextArea ID="txtDailySummary" runat="server" Label="今日小结" Readonly="true" LabelWidth="90px" Height="90px">
</f:TextArea>
</Items>
</f:FormRow>
<f:FormRow>
<Items>
<f:TextArea ID="txtTomorrowPlan" runat="server" Label="明日计划" Readonly="true" LabelWidth="90px" Height="64px">
<f:TextArea ID="txtTomorrowPlan" runat="server" Label="明日计划" Readonly="true" LabelWidth="90px" Height="90px">
</f:TextArea>
</Items>
</f:FormRow>