feat: PART 관리 기능 개선 및 Excel 업로드 수정

- PART 관리 목록에 열처리경도, 열처리방법, 표면처리, 공급업체 필드 추가
- Excel 업로드 시 공급업체 및 범주 이름 검증 로직 추가 (띄어쓰기 무시)
- partMng.xml: SUPPLY_CODE 중복 제거 및 쿼리 최적화
- PartMngController: sup_code 코드맵 활성화
- common.js: jqGrid 호환성 개선 (getRows 에러 수정)
- header.jsp, menu.jsp: 메뉴 UI 개선
- CSS: 로고 및 메뉴 스타일 조정
This commit is contained in:
2025-10-21 16:23:07 +09:00
parent ca25e0de56
commit 5794895dcb
13 changed files with 1047 additions and 434 deletions

View File

@@ -2982,7 +2982,12 @@ $(document).ready(function() {
var gridToUse = typeof _tabulGrid !== 'undefined' ? _tabulGrid :
typeof grid !== 'undefined' ? grid : null;
if (gridToUse && gridToUse.getRows().length > 0) {
// jqGrid 체크 - jqGrid는 이 기능을 사용하지 않음
if (gridToUse && typeof gridToUse.jqGrid === 'function') {
return; // jqGrid는 별도 처리
}
if (gridToUse && gridToUse.getRows && gridToUse.getRows().length > 0) {
var pageTitle = $('.plm_menu_name_gdnsi h2 span').text().trim();
$('.btnArea').append("<input type='button' class='plm_btns excelBtn' value='Excel Download'>");