From 6b830ded7f4e32612c766f5048a79aed80ca2099 Mon Sep 17 00:00:00 2001 From: lsm Date: Thu, 8 Aug 2024 10:24:43 +0800 Subject: [PATCH] =?UTF-8?q?1=E3=80=81=E5=88=A4=E6=96=AD=E4=BF=9D=E5=AD=98?= =?UTF-8?q?=E7=BB=93=E6=9E=9C=E6=A3=80=E6=9F=A5=E5=8C=BB=E5=B8=88=E6=98=AF?= =?UTF-8?q?=E5=90=A6=E6=94=B9=E5=8F=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- PEIS/View/Exam/PartForm.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/PEIS/View/Exam/PartForm.cs b/PEIS/View/Exam/PartForm.cs index e9855fd..7df7c32 100644 --- a/PEIS/View/Exam/PartForm.cs +++ b/PEIS/View/Exam/PartForm.cs @@ -1096,6 +1096,9 @@ namespace PEIS.View.Exam _examPart.InputTime = time; _examPart.Inputer = currentUser.Name; _examPart.InputerCode = currentUser.Code; + _examPart.CheckTime = _examPart.CheckTime ?? time; + _examPart.Checker = string.IsNullOrEmpty(_examPart.Checker) ? currentUser.Name : _examPart.Checker; + _examPart.CheckerCode = string.IsNullOrEmpty(_examPart.CheckerCode) ? currentUser.Code : _examPart.CheckerCode; _examPart.CreateTime = _examPart.CreateTime ?? time; _examPart.Summary = txtSummary.Text; SaveExamPart?.Invoke(this, new Args()