프로젝트관리 초기커밋

This commit is contained in:
Johngreen
2025-10-21 16:39:00 +09:00
parent 6af7fb6b6d
commit dbc26fb35b
7 changed files with 354 additions and 23 deletions

View File

@@ -3220,4 +3220,56 @@ public class ProjectController {
return "/project/wbsTaskProductSetupFormPopUp";
}
/**
* 프로젝트 진행 현황
* @param request
* @param paramMap
* @return
*/
@RequestMapping("/project/projectMgmtWbsList3.do")
public String projectMgmtWbsList3(HttpServletRequest request, @RequestParam Map paramMap){
//List list = service.getProjectMgntList(request,paramMap);
Map code_map = new HashMap();
try{
//String bizMakeOptionList(String code_id, String selValue, String sql_id)
//구분
code_map.put("category_cd" , commonService.bizMakeOptionList("0000167", CommonUtils.nullToEmpty((String)paramMap.get("category_cd")) , "common.getCodeselect"));
//고객사
code_map.put("customer_cd",commonService.bizMakeOptionList("", CommonUtils.nullToEmpty((String)paramMap.get("customer_objid")),"common.getsupplyselect"));
//당사프로젟트번호
code_map.put("project_no",commonService.bizMakeOptionList("", CommonUtils.nullToEmpty((String)paramMap.get("project_no")),"common.getCusProjectNoList"));
//제품구분
code_map.put("product_cd", commonService.bizMakeOptionList("0000001", CommonUtils.nullToEmpty((String)paramMap.get("product")),"common.getCodeselect")); //공장
//진행상황
code_map.put("status_cd" , commonService.bizMakeOptionList("0000932", CommonUtils.nullToEmpty((String)paramMap.get("status_cd")) , "common.getCodeselect"));
//결과
code_map.put("result_cd", commonService.bizMakeOptionList("0000963", CommonUtils.nullToEmpty((String)paramMap.get("result_cd")), "common.getCodeselect"));
//PM
code_map.put("pm_user_id", commonService.bizMakeOptionList("", CommonUtils.nullToEmpty((String)paramMap.get("pm_user_id")), "common.getUserselect")); //구매 PM
request.setAttribute("code_map",code_map);
request.setAttribute("cu01_file", Constants.CUSTOMER_CODE01);
request.setAttribute("cu02_file", Constants.CUSTOMER_CODE02);
//request.setAttribute("LIST", list);
PersonBean person = (PersonBean)request.getSession().getAttribute(Constants.PERSON_BEAN);
String writer = CommonUtils.checkNull(person.getUserId());
request.setAttribute("writer", writer);
}catch(Exception e){
e.printStackTrace();
}
return "/project/projectMgmtWbsList3";
}
}