|
|
@@ -207,8 +207,12 @@
|
|
|
{headerName: "상품명", field: "goodsNm", width: 200, cellClass: 'text-left'},
|
|
|
{headerName: "품목", field: "itemkindNm", width: 180, cellClass: 'text-left',
|
|
|
cellRenderer: function (params) {
|
|
|
- return params.value.replaceAll(">", ">");
|
|
|
- }
|
|
|
+ if (gagajf.isNull( params.value)){
|
|
|
+ return params.value;
|
|
|
+ }else{
|
|
|
+ return params.value.replaceAll(">", ">");
|
|
|
+ }
|
|
|
+ }
|
|
|
},
|
|
|
{headerName: "상품상태", field: "goodsStat" , width: 120, cellClass: 'text-center',
|
|
|
cellEditorParams: { values: gagaAgGrid.extractValues(goodsStatList) },
|