|
|
@@ -82,8 +82,12 @@
|
|
|
},
|
|
|
{headerName: "품목명", field: "itemkindNm", width: 300,
|
|
|
cellRenderer: function (params) {
|
|
|
- return params.value.replaceAll(">", ">");
|
|
|
- }
|
|
|
+ if (gagajf.isNull( params.value)){
|
|
|
+ return params.value;
|
|
|
+ }else{
|
|
|
+ return params.value.replaceAll(">", ">");
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
];
|
|
|
|
|
|
@@ -93,7 +97,15 @@
|
|
|
headerName: "카테고리구분", field: "cateGb", width: 120, cellClass: 'text-center',
|
|
|
cellRenderer: function (params) { return gagaAgGrid.lookupValue(cateGbList, params.value); }
|
|
|
},
|
|
|
- {headerName: "FULL카테고리명", field: "fullCateNm", width: 400},
|
|
|
+ {headerName: "FULL카테고리명", field: "fullCateNm", width: 400,
|
|
|
+ cellRenderer: function (params) {
|
|
|
+ if (gagajf.isNull( params.value)){
|
|
|
+ return params.value;
|
|
|
+ }else{
|
|
|
+ return params.value.replaceAll(">", ">");
|
|
|
+ }
|
|
|
+ }
|
|
|
+ },
|
|
|
{headerName: "카데고리명", field: "cateNm", width: 150, cellClass: 'text-center', hide: true},
|
|
|
{headerName: "분류레벨", field: "clsLvl", width: 100, hide: true}
|
|
|
];
|
|
|
@@ -109,13 +121,21 @@
|
|
|
{headerName: "카테고리번호", field: "cateNo", width: 150, cellClass: 'text-center'},
|
|
|
{headerName: "FULL카테고리번호", field: "fullCateNo", width: 200,
|
|
|
cellRenderer: function (params) {
|
|
|
- return params.value.replaceAll(">", ">");
|
|
|
- }
|
|
|
+ if (gagajf.isNull( params.value)){
|
|
|
+ return params.value;
|
|
|
+ }else{
|
|
|
+ return params.value.replaceAll(">", ">");
|
|
|
+ }
|
|
|
+ }
|
|
|
},
|
|
|
{headerName: "FULL카테고리명", field: "fullCateNm", width: 400,
|
|
|
cellRenderer: function (params) {
|
|
|
- return params.value.replaceAll(">", ">");
|
|
|
- }
|
|
|
+ if (gagajf.isNull( params.value)){
|
|
|
+ return params.value;
|
|
|
+ }else{
|
|
|
+ return params.value.replaceAll(">", ">");
|
|
|
+ }
|
|
|
+ }
|
|
|
}
|
|
|
];
|
|
|
|