diff --git a/BO/Controllers/croomController.cs b/BO/Controllers/croomController.cs index e2e2aee..f9ef563 100644 --- a/BO/Controllers/croomController.cs +++ b/BO/Controllers/croomController.cs @@ -877,6 +877,7 @@ namespace NP.BO.Controllers vm.LectSDs = new List() { }; ht.Add("sdstate", vm.addstringval2); ht.Add("cpointchk", vm.addstringval3); + ht.Add("mosarate", vm.addstringval4); ht.Add("isproduct" + (GetConfig("isstaging") == "1" ? "x" : ""), 1); vm.LectSDs = Dao.Get("lect.lectsds.all", ht); /*to-do*/ diff --git a/BO/Views/croom/gradeall4.cshtml b/BO/Views/croom/gradeall4.cshtml index 46fcf88..9daf186 100644 --- a/BO/Views/croom/gradeall4.cshtml +++ b/BO/Views/croom/gradeall4.cshtml @@ -6,7 +6,11 @@
@Html.Partial("./Partial/Select", null, new ViewDataDictionary { { "valuetext", ":-응시상태;1:제출;0:미제출" }, { "name", "addstringval2" }, { "selected", Model.addstringval2 }, { "onchange", "findme()" }, { "style", "vertical-align: middle;" } }) + @Html.Partial("./Partial/Select", null, new ViewDataDictionary { { "valuetext", ":-채점상태;1:채점완료;0:미채점" }, { "name", "addstringval3" }, { "selected", Model.addstringval3 }, { "onchange", "findme()" }, { "style", "vertical-align: middle;" } }) + + @Html.Partial("./Partial/Select", null, new ViewDataDictionary { { "valuetext", ":-모사;9950:100%" }, { "name", "addstringval4" }, { "selected", Model.addstringval4 }, { "onchange", "findme()" }, { "style", "vertical-align: middle;" } }) + @Html.Partial("./Partial/pagerow", new ViewDataDictionary { { "tbodyid", "tbody1" }, { "searchmethod", "submit()" }, { "pagesize", Model.pagerowcount } }) @*엑셀다운로드*@ 엑셀다운로드 diff --git a/Dao/MyBatis/Maps/Lect.xml b/Dao/MyBatis/Maps/Lect.xml index 78a6474..e598e94 100644 --- a/Dao/MyBatis/Maps/Lect.xml +++ b/Dao/MyBatis/Maps/Lect.xml @@ -1508,6 +1508,10 @@ and ifnull(c.cpoint,0) > 0 and d.status = #ustatus# + + + and f.MAX_SCORE >= #mosarate# +