스케줄 정기점검 입력 기능추가
@395f55db7a8685bf9f8ebbb4d6cb5a7a189a46b7
--- src/main/webapp/WEB-INF/jsp/uss/itsm/schdlr/schdlrList.jsp
+++ src/main/webapp/WEB-INF/jsp/uss/itsm/schdlr/schdlrList.jsp
... | ... | @@ -596,6 +596,26 @@ |
| 596 | 596 |
document.listForm.submit(); |
| 597 | 597 |
} |
| 598 | 598 |
|
| 599 |
+function perViewPopup() {
|
|
| 600 |
+ |
|
| 601 |
+ var docWidth = screen.availWidth; |
|
| 602 |
+ var docHeight = screen.availHeight; |
|
| 603 |
+ |
|
| 604 |
+ var scX = window.screenX||window.screenLeft||0; |
|
| 605 |
+ var scY = window.screenY||window.screenTop||0; |
|
| 606 |
+ |
|
| 607 |
+ var popupX = scX + (docWidth - 1366) / 2; |
|
| 608 |
+ var popupY = scY + (docHeight - 786) / 2; |
|
| 609 |
+ |
|
| 610 |
+ window.open('', "gamsaViewOpener", "width=1366, height=786, left="+popupX+", top="+popupY,"toolbar=0","location=no", "directories=0", "status=0", "menubar=0");
|
|
| 611 |
+ document.modiForm.method = "post"; |
|
| 612 |
+ document.modiForm.pageType.value = "Insert"; |
|
| 613 |
+ document.modiForm.periId.value = ""; //초기화 |
|
| 614 |
+ document.modiForm.action = "<c:url value='/uss/itsm/per/PerView.do'/>"; |
|
| 615 |
+ document.modiForm.target = "gamsaViewOpener" ; |
|
| 616 |
+ document.modiForm.submit(); |
|
| 617 |
+} |
|
| 618 |
+ |
|
| 599 | 619 |
</script> |
| 600 | 620 |
</head> |
| 601 | 621 |
<body> |
... | ... | @@ -603,7 +623,11 @@ |
| 603 | 623 |
<input type="hidden" name="periId" value="" /> |
| 604 | 624 |
<input type="hidden" name="pageType" value="" /> |
| 605 | 625 |
</form> |
| 606 |
- |
|
| 626 |
+ <form name="modiForm" method="get" action="<c:url value='/uss/itsm/audit/SciTecAuditView.do'/>" > |
|
| 627 |
+ <input type="hidden" name="periId" /> |
|
| 628 |
+ <input type="hidden" name="pageType" /> |
|
| 629 |
+ <input type="hidden" name="autCd" value="${auditVO.autCd}"/>
|
|
| 630 |
+ </form> |
|
| 607 | 631 |
<form name="listForm"> |
| 608 | 632 |
<input type="hidden" name="schdlrBgnDatetime" value="" /> |
| 609 | 633 |
<input type="hidden" name="schdlrEndDatetime" value="" /> |
... | ... | @@ -651,6 +675,7 @@ |
| 651 | 675 |
<div class="cal_sm"> |
| 652 | 676 |
<input type="button" value="일정목록" class="cal_list" onclick="selectSchList();"> |
| 653 | 677 |
<input type="button" value="일정추가" class="cal_add" onclick="selectListDt('');">
|
| 678 |
+ <input type="button" value="점검추가" class="cal_add" onclick="perViewPopup('');">
|
|
| 654 | 679 |
<input type="button" value="인쇄" class="calPrint" onclick="selectPrint();"> |
| 655 | 680 |
<input type="button" class="cal_setting" onclick="selectSchConfig();"> |
| 656 | 681 |
</div> |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?