|
|
|
|
@ -317,7 +317,7 @@
|
|
|
|
|
return totalCount - (page - 1) * perPage - rowIndex;
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{ header: '조회ID', name: 'carBassMatterInqire', align: 'center', width: 150, hidden: true },
|
|
|
|
|
{ header: '조회ID', name: 'carBassMatterInqireId', align: 'center', width: 150, hidden: true },
|
|
|
|
|
{ header: '정보시스템ID', name: 'infoSysId', align: 'center', width: 120 },
|
|
|
|
|
{ header: '정보시스템IP', name: 'infoSysIp', align: 'center', width: 120 },
|
|
|
|
|
{ header: '시군구코드', name: 'sigunguCode', align: 'center', width: 100 },
|
|
|
|
|
@ -331,7 +331,7 @@
|
|
|
|
|
{ header: '요청차대번호', name: 'dmndVin', align: 'center', width: 150 },
|
|
|
|
|
{ header: '연계결과코드', name: 'cntcResultCode', align: 'center', width: 100 },
|
|
|
|
|
{ header: '연계결과상세', name: 'cntcResultDtls', align: 'left', width: 200 },
|
|
|
|
|
{ header: '차량번호', name: 'vhclno', align: 'center', width: 120 },
|
|
|
|
|
{ header: '차량번호', name: 'vhrno', align: 'center', width: 120 },
|
|
|
|
|
{ header: '차대번호', name: 'vin', align: 'center', width: 150 },
|
|
|
|
|
{ header: '차명', name: 'cnm', align: 'left', width: 150 },
|
|
|
|
|
{ header: '연식', name: 'prye', align: 'center', width: 80 },
|
|
|
|
|
@ -461,7 +461,7 @@
|
|
|
|
|
this.instance.on('dblclick', function(ev) {
|
|
|
|
|
var rowData = self.instance.getRow(ev.rowKey);
|
|
|
|
|
if (rowData) {
|
|
|
|
|
VehicleApiHistoryList.showDetailModalBasic(rowData.carBassMatterInqire);
|
|
|
|
|
VehicleApiHistoryList.showDetailModalBasic(rowData.carBassMatterInqireId);
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
}
|
|
|
|
|
@ -659,11 +659,11 @@
|
|
|
|
|
/**
|
|
|
|
|
* 자동차 기본정보 조회 이력 상세 모달 표시
|
|
|
|
|
*/
|
|
|
|
|
showDetailModalBasic: function(carBassMatterInqire) {
|
|
|
|
|
showDetailModalBasic: function(carBassMatterInqireId) {
|
|
|
|
|
$.ajax({
|
|
|
|
|
url: '<c:url value="/carInspectionPenalty/history/carBassMatterInqire/selectOne.ajax"/>',
|
|
|
|
|
type: 'GET',
|
|
|
|
|
data: {carBassMatterInqire: carBassMatterInqire},
|
|
|
|
|
data: {carBassMatterInqireId: carBassMatterInqireId},
|
|
|
|
|
dataType: 'json',
|
|
|
|
|
success: function(response) {
|
|
|
|
|
if (response.result) {
|
|
|
|
|
@ -672,7 +672,7 @@
|
|
|
|
|
|
|
|
|
|
// 모든 필드를 2열로 표시
|
|
|
|
|
var fields = [
|
|
|
|
|
{label: '조회ID', key: 'carBassMatterInqire'},
|
|
|
|
|
{label: '조회ID', key: 'carBassMatterInqireId'},
|
|
|
|
|
{label: '정보시스템ID', key: 'infoSysId'},
|
|
|
|
|
{label: '정보시스템IP', key: 'infoSysIp'},
|
|
|
|
|
{label: '시군구코드', key: 'sigunguCode'},
|
|
|
|
|
@ -686,7 +686,7 @@
|
|
|
|
|
{label: '요청차대번호', key: 'dmndVin'},
|
|
|
|
|
{label: '연계결과코드', key: 'cntcResultCode'},
|
|
|
|
|
{label: '연계결과상세', key: 'cntcResultDtls'},
|
|
|
|
|
{label: '차량번호', key: 'vhclno'},
|
|
|
|
|
{label: '차량번호', key: 'vhrno'},
|
|
|
|
|
{label: '차대번호', key: 'vin'},
|
|
|
|
|
{label: '차명', key: 'cnm'},
|
|
|
|
|
{label: '연식', key: 'prye'},
|
|
|
|
|
|