erp 메일stmp 정보 변경 및 프로젝트 wbs 연결

This commit is contained in:
2026-02-06 16:16:49 +09:00
parent 26452c46e2
commit 78af06f8fc
3 changed files with 20 additions and 4 deletions

View File

@@ -297,7 +297,7 @@ var columns = [
formatter:fnc_subInfoValueFormatter,
cellClick:function(e, cell){
var objid = fnc_checkNull(cell.getData().OBJID);
fn_WBSRegist(objid);
wbs_popup(objid);
}
},
@@ -441,6 +441,17 @@ function getCheckedRows() {
}
return [];
}
function wbs_popup(objId,categoryCd){
var popup_width = 1700;
var popup_height = 800;
var objId = objId;
var params = "?OBJID="+objId+"&CATEGORY_CD="+categoryCd;
//var url = "/project/wbsTaskProductGanttFormPopUp.do"+params;
var url = "/project/wbsTaskProductFormPopUp.do"+params;
fn_centerPopup(popup_width, popup_height, url);
}
</script>
<!-- hiddenForm: POST 방식 팝업 전송용 -->