diff --git a/WebContent/WEB-INF/view/partMng/openPartExcelImportPopUp.jsp b/WebContent/WEB-INF/view/partMng/openPartExcelImportPopUp.jsp
index 1be877a..58e1b91 100644
--- a/WebContent/WEB-INF/view/partMng/openPartExcelImportPopUp.jsp
+++ b/WebContent/WEB-INF/view/partMng/openPartExcelImportPopUp.jsp
@@ -38,6 +38,7 @@ $(document).ready(function(){
var part_type = $.parseJSON($("#part_type").val()); //jqGrid 구분
var acctfg_code = $.parseJSON($("#acctfg_code").val()); //jqGrid 계정구분
var sup_code = $.parseJSON($("#sup_code").val()); //jqGrid 구분
+ var unit_dc_code = $("#unit_dc_code").val() ? $.parseJSON($("#unit_dc_code").val()) : {}; //jqGrid 단위
//Excel File Upload된 파일 목록 부분을 초기화 한다.
$("#excelImportList").hide();
@@ -187,16 +188,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;
}
}
@@ -293,7 +302,7 @@ $(document).ready(function(){
,height : 530 //'auto' //520
,multiselect : false
,shrinkToFit : false
- ,autowidth : true
+ ,autowidth : false
,sortable : false
,rowNum : 5000
,forceFit : false //컬럼의 width를 변화시킬때 그리드의 width를 고정 여부
@@ -1084,6 +1093,7 @@ function fn_save(){
+