|
@@ -73,7 +73,7 @@ const gridColModel = {
|
73
|
73
|
},
|
74
|
74
|
{
|
75
|
75
|
index: 'LOCATION_NM', name: 'locationNm',
|
76
|
|
- label: "Location명",
|
|
76
|
+ label: "로케이션명",
|
77
|
77
|
width: '10', fixed: false, align: 'left',
|
78
|
78
|
sortable: false, hidden: false, classes: 'ui-ellipsis'
|
79
|
79
|
},
|
|
@@ -87,7 +87,7 @@ const gridColModel = {
|
87
|
87
|
index: 'ITEM_NM', name: 'itemNm',
|
88
|
88
|
label: "품목명",
|
89
|
89
|
width: '10', fixed: false, align: 'left',
|
90
|
|
- sortable: false, hidden: false
|
|
90
|
+ sortable: false, hidden: false, classes: 'ui-ellipsis'
|
91
|
91
|
},
|
92
|
92
|
{
|
93
|
93
|
index: 'UNIT', name: 'unit',
|
|
@@ -102,7 +102,7 @@ const gridColModel = {
|
102
|
102
|
width: '10', fixed: false, align: 'right',
|
103
|
103
|
sortable: false, editable: true, edittype: 'text',
|
104
|
104
|
editrules: {required: false},
|
105
|
|
- editoptions: {"onKeyup": "this.value=this.value.replace(/[^0-9]/g,'');"},
|
|
105
|
+ editoptions: {"onKeyup": "this.value=this.value.replace(/[^0-9]/g,'');", maxlength: 10},
|
106
|
106
|
formatter: 'integer', formatoptions: {thousandsSeparator: ','}
|
107
|
107
|
},
|
108
|
108
|
{
|
|
@@ -112,7 +112,7 @@ const gridColModel = {
|
112
|
112
|
width: '9', fixed: false, align: 'right',
|
113
|
113
|
sortable: false, editable: true, edittype: 'text',
|
114
|
114
|
editrules: {required: false},
|
115
|
|
- editoptions: {"onKeyup": "this.value=this.value.replace(/[^0-9]/g,'');"}
|
|
115
|
+ editoptions: {"onKeyup": "this.value=this.value.replace(/[^0-9]/g,'');", maxlength: 10}
|
116
|
116
|
}
|
117
|
117
|
]
|
118
|
118
|
};
|
|
@@ -182,7 +182,7 @@ let pageObj = {
|
182
|
182
|
case 'ITP_BTN_STOCKMNG03010_SAVE' : listObj.button.save(); break; // 저장 버튼
|
183
|
183
|
case 'ITP_BTN_STOCKMNG03010_DETAIL_ADDROW' : listObj.button.addItem(); break; // 품목추가 버튼
|
184
|
184
|
case 'ITP_BTN_STOCKMNG03010_DETAIL_DELROW' : listObj.button.removeItem(); break; // 품목삭제 버튼
|
185
|
|
- case 'ITP_BTN_STOCKMNG03010_EXCEL' : listObj.excelDown(); break; // 엑셀
|
|
185
|
+ // case 'ITP_BTN_STOCKMNG03010_EXCEL' : listObj.excelDown(); break; // 엑셀
|
186
|
186
|
}
|
187
|
187
|
});
|
188
|
188
|
});
|
|
@@ -444,7 +444,7 @@ let listObj = {
|
444
|
444
|
unload : function() {
|
445
|
445
|
$.jgrid.gridUnload(STOCKMNG03010_GRID_ID);
|
446
|
446
|
}
|
447
|
|
- },
|
|
447
|
+ }/*,
|
448
|
448
|
excelDown: function() {
|
449
|
449
|
var param = {
|
450
|
450
|
'url': STOCK_BASE_MNG_DETAIL_GRID_LIST,
|
|
@@ -454,7 +454,7 @@ let listObj = {
|
454
|
454
|
'sheetName': '재고기준정보리스트'
|
455
|
455
|
};
|
456
|
456
|
itp_fn_remote_to_excel(param);
|
457
|
|
- }
|
|
457
|
+ }*/
|
458
|
458
|
};
|
459
|
459
|
|
460
|
460
|
var itemClassLevel = {
|