diff --git a/WebContent/WEB-INF/view/partMng/openBomReportExcelImportPopUp.jsp b/WebContent/WEB-INF/view/partMng/openBomReportExcelImportPopUp.jsp
index 96aedd3..1b9a6a6 100644
--- a/WebContent/WEB-INF/view/partMng/openBomReportExcelImportPopUp.jsp
+++ b/WebContent/WEB-INF/view/partMng/openBomReportExcelImportPopUp.jsp
@@ -240,7 +240,10 @@ $(document).ready(function(){
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) : {};
-
+
+ var unit_dc_code_val = $("#unit_dc_code").val();
+ var unit_dc_code = unit_dc_code_val && unit_dc_code_val.trim() !== '' ? $.parseJSON(unit_dc_code_val) : {};
+
//Excel File Upload된 파일 목록 부분을 초기화 한다.
$("#excelImportList").hide();
@@ -384,16 +387,24 @@ $(document).ready(function(){
}
}
}
- ,{name:"UNIT_DC",index:"UNIT_DC", width: 70, align:"center", hidden: false, sortable:false, editable:true
+ ,{name:"UNIT_DC",index:"UNIT_DC", width: 80, align:"center", hidden: false, sortable:false, editable:true
+ ,edittype :"select"
+ ,formatter :"select"
,editoptions:{
- dataInit : function(e){
+ value: unit_dc_code
+ ,dataInit : function(e){
+ e.style.width = "92%";
e.style.fontSize = 13;
}
}
}
- ,{name:"UNITMANG_DC",index:"UNITMANG_DC", width: 70, align:"center", hidden: false, sortable:false, editable:true
+ ,{name:"UNITMANG_DC",index:"UNITMANG_DC", width: 80, align:"center", hidden: false, sortable:false, editable:true
+ ,edittype :"select"
+ ,formatter :"select"
,editoptions:{
- dataInit : function(e){
+ value: unit_dc_code
+ ,dataInit : function(e){
+ e.style.width = "92%";
e.style.fontSize = 13;
}
}
@@ -479,7 +490,7 @@ $(document).ready(function(){
//,cellsubmit : "clientArray"
,rownumbers : true
,viewrecords : true
- ,width : 1500
+ ,width : "auto"
,height : 420
,multiselect : false
,shrinkToFit : false
@@ -1369,6 +1380,7 @@ function fn_save(){
+