가공업체 기본 RPS 선택 수정(objid값 변경)

This commit is contained in:
2026-02-09 13:59:32 +09:00
parent 859041d758
commit 5a1626f494
2 changed files with 4 additions and 4 deletions

View File

@@ -669,9 +669,9 @@ function fn_initGrid() {
formatter: function(cell) {
var value = cell.getValue();
// 저장된 값이 없으면 기본값 '5001'(RPS) 설정
// 저장된 값이 없으면 기본값 '0000008377'(RPS) 설정
if(value === undefined || value === null || value === '') {
value = '5001';
value = '0000008377';
cell.getRow().update({PROCESSING_VENDOR: value}, false);
}

View File

@@ -678,9 +678,9 @@ function fn_initGrid() {
formatter: function(cell) {
var value = cell.getValue();
// 저장된 값이 없으면 기본값 '5001'(RPS) 설정
// 저장된 값이 없으면 기본값 '0000008377'(RPS) 설정
if(value === undefined || value === null || value === '') {
value = '5001';
value = '0000008377';
cell.getRow().update({PROCESSING_VENDOR: value}, false);
}