추가개발01/02_8

This commit is contained in:
김한진 2026-01-02 16:55:43 +09:00
parent 5e68d7face
commit 6304d2f5b7
1 changed files with 1 additions and 1 deletions

View File

@ -3,7 +3,7 @@
string exDate = "";
if (Model.LectEX.scdcmisno > 0) {
exDate = Model.LectEX.lectcdt.ToString("yyyy-MM-dd 00:00") + " ~ " + Model.LectEX.scdeend.ToString("yyyy-MM-dd hh:mm") + "까지(진도율 " + Model.LectEX.econdition + "%이상 응시가능)";
exDate = Model.LectEX.lectcdt.ToString("yyyy-MM-dd 00:00") + " ~ " + (Model.LectEX.testedate != null ? Convert.ToDateTime(Model.LectEX.testedate).ToString("yyyy-MM-dd hh:mm") : "") + "까지(진도율 " + Model.LectEX.econdition + "%이상 응시가능)";
} else {
exDate = Model.LectEX.lectcdt.ToString("yyyy-MM-dd 00:00") + " ~ " + Model.LectEX.edate.Value.ToString("yyyy-MM-dd hh:mm") + "까지(진도율 " + Model.LectEX.econdition + "%이상 응시가능)";
}