diff --git a/FO/Views/Course/ApplyEdu.cshtml b/FO/Views/Course/ApplyEdu.cshtml index fe24e34..311689b 100644 --- a/FO/Views/Course/ApplyEdu.cshtml +++ b/FO/Views/Course/ApplyEdu.cshtml @@ -96,7 +96,7 @@ } - @if (Model.CM.cshape == 1) + @if ((Model.CM.cshape == 1 || Model.CM.cshape == 2) && Model.CM.isaccommodation == 1) {

합숙여부

+ } + + @if (Model.CM.cshape == 1) + {

환급여부선택

diff --git a/Model/PPLog.cs b/Model/PPLog.cs index 0dca488..ba4bc87 100644 --- a/Model/PPLog.cs +++ b/Model/PPLog.cs @@ -55,7 +55,13 @@ namespace NP.Model public int pstatus { get; set; } public int infee { get; set; } public int accommofee { get; set; } + /// + /// 합숙여부 - null,0:비합숙,1:합숙 + /// public int? isaccommodation { get; set; } + /// + /// 계산서발행여부 - 0:미발행,1:발행 + /// public int isbill { get; set; } } }