|
|
@@ -208,7 +208,7 @@
|
|
|
if (params.data.useYn == 'N') {
|
|
|
btnNm = '미사용';
|
|
|
} else {
|
|
|
- if (gagajf.isNull(params.data.batchStat) || params.data.batchStat == 'F') {
|
|
|
+ if (gagajf.isNull(params.data.batchStat) || params.data.batchStat == 'F' || params.data.batchStat == 'E') {
|
|
|
btnNm = '<button type="button" class="btn btn-base btn-lg" onclick="fnExcuteBatch(\'' + params.data.batchId + '\',\'' + params.data.batchStat + '\',\'' + params.data.batchUrl + '\');">실행</button>';
|
|
|
} else {
|
|
|
btnNm = '실행중';
|
|
|
@@ -242,9 +242,13 @@
|
|
|
{
|
|
|
headerName: "상태", field: "batchStat", width: 80, cellClass: 'text-center',
|
|
|
cellRenderer: function(params) {
|
|
|
- return params.value == 'I' ? '실행중' : '실행완료';
|
|
|
+ if (params.value == 'I') return '실행중';
|
|
|
+ if (params.value == 'F') return '실행완료';
|
|
|
+ if (params.value == 'E') return '실패';
|
|
|
+ return '';
|
|
|
}
|
|
|
},
|
|
|
+ {headerName: "오류메시지", field: "errorMsg", width: 200},
|
|
|
{headerName: "시작일시", field: "batchStdt", width: 180, cellClass: 'text-center'},
|
|
|
{headerName: "종료일시", field: "batchEddt", width: 180, cellClass: 'text-center'},
|
|
|
{
|