상세수정
Some checks failed
Close Pull Request / main (pull_request_target) Has been cancelled

This commit is contained in:
yangsh
2026-01-22 17:02:14 +09:00
parent 64b9491157
commit abf369dcd6
13 changed files with 7133 additions and 2156 deletions

View File

@@ -101,6 +101,15 @@
// 3. 끝 슬래시 정리
$path = rtrim($path, '/');
switch ($path) {
case "/article/receipt/detail":
$path = "/article/receipt/lists";
break;
case "/article/dept/detail":
$path = "/article/dept/lists";
break;
case "/article/record/detail":
$path = "/article/record/lists";
break;
case "/board/notice/write":
case "/board/notice/modify":
case "/board/notice/detail":

File diff suppressed because it is too large Load Diff

View File

@@ -778,6 +778,27 @@ $usr_nm = session('usr_nm');
});
});
// 배정내역 excel
$("#excel-download2").on("click", function () {
$.ajax({
url: "/article/dept/excel",
method: "GET",
dataType: "json",
data: $("#frm_srch_info").serialize(),
beforeSend: function () {
blockUI.blockPage({
message: tpl
})
},
complete: function () {
blockUI.unblockPage()
},
success: function (result) {
downloadExcel(result.data);
}
});
});
});
function initForm() {

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff