반제품, 원자재 소요량 엠봄선택 품명자동표시 오류 수정

This commit is contained in:
2025-12-23 16:31:08 +09:00
parent 2ee76a8f20
commit bfc9d768c8
5 changed files with 68 additions and 8 deletions

View File

@@ -1863,6 +1863,10 @@ public class ProductionPlanningController extends BaseService {
// M-BOM 목록 (셀렉트박스용)
code_map.put("mbom_list", commonService.bizMakeOptionList("", "", "productionplanning.getMbomListForSelect2"));
// M-BOM 목록 (품명 포함) - 품명 자동 입력용
List<Map> mbomListWithPartName = productionPlanningService.getMbomListWithPartName();
request.setAttribute("mbom_part_name_list", mbomListWithPartName);
request.setAttribute("code_map", code_map);
} catch(Exception e) {
e.printStackTrace();
@@ -1902,6 +1906,10 @@ public class ProductionPlanningController extends BaseService {
// M-BOM 목록 (셀렉트박스용)
code_map.put("mbom_list", commonService.bizMakeOptionList("", "", "productionplanning.getMbomListForSelect2"));
// M-BOM 목록 (품명 포함) - 품명 자동 입력용
List<Map> mbomListWithPartName = productionPlanningService.getMbomListWithPartName();
request.setAttribute("mbom_part_name_list", mbomListWithPartName);
request.setAttribute("code_map", code_map);
} catch(Exception e) {
e.printStackTrace();