diff --git a/WebContent/WEB-INF/view/partMng/openBomReportExcelImportPopUp.jsp b/WebContent/WEB-INF/view/partMng/openBomReportExcelImportPopUp.jsp
index 30ca2f3..3d2e2d7 100644
--- a/WebContent/WEB-INF/view/partMng/openBomReportExcelImportPopUp.jsp
+++ b/WebContent/WEB-INF/view/partMng/openBomReportExcelImportPopUp.jsp
@@ -233,10 +233,12 @@ $(document).ready(function(){
// JSON 파싱 시 에러 처리
var unit_cd_val = $("#unit_cd").val();
var part_type_val = $("#part_type").val();
+ var acctfg_code_val = $("#acctfg_code").val();
var sup_code_val = $("#sup_code").val();
var unit_cd = unit_cd_val && unit_cd_val.trim() !== '' ? $.parseJSON(unit_cd_val) : {};
var part_type = part_type_val && part_type_val.trim() !== '' ? $.parseJSON(part_type_val) : {};
+ var acctfg_code = acctfg_code_val && acctfg_code_val.trim() !== '' ? $.parseJSON(acctfg_code_val) : {};
var sup_code = sup_code_val && sup_code_val.trim() !== '' ? $.parseJSON(sup_code_val) : {};
//Excel File Upload된 파일 목록 부분을 초기화 한다.
@@ -356,7 +358,7 @@ $(document).ready(function(){
,edittype :"select"
,formatter :"select"
,editoptions:{
- value: {"":"선택","0":"원자재","1":"부재료"}
+ value: acctfg_code
,dataInit : function(e){
e.style.width = "92%";
e.style.fontSize = 13;
@@ -1267,6 +1269,7 @@ function fn_save(){
+