m-bom 버전 이력 팝업 & 총단가 저장 안되는 오류 수정 등...
This commit is contained in:
@@ -1606,4 +1606,28 @@ public class ProductionPlanningController extends BaseService {
|
||||
}
|
||||
return resultMap;
|
||||
}
|
||||
|
||||
/**
|
||||
* M-BOM 이력 팝업
|
||||
*/
|
||||
@RequestMapping("/productionplanning/mBomHistoryPopup.do")
|
||||
public String mBomHistoryPopup(HttpServletRequest request, @RequestParam Map<String, Object> paramMap) {
|
||||
try {
|
||||
String mbomHeaderObjid = CommonUtils.checkNull(paramMap.get("mbomHeaderObjid"));
|
||||
|
||||
if(!"".equals(mbomHeaderObjid)) {
|
||||
// M-BOM 헤더 정보 조회
|
||||
paramMap.put("mbomHeaderObjid", mbomHeaderObjid);
|
||||
Map<String, Object> mbomHeader = commonService.selectOne("productionplanning.getMbomHeaderByObjid", request, paramMap);
|
||||
request.setAttribute("mbomHeader", mbomHeader);
|
||||
|
||||
// M-BOM 이력 조회
|
||||
List<Map<String, Object>> historyList = commonService.selectList("productionplanning.getMbomHistoryList", request, paramMap);
|
||||
request.setAttribute("historyList", historyList);
|
||||
}
|
||||
} catch(Exception e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
return "/productionplanning/mBomHistoryPopup";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user