|
|
|
|
@ -188,20 +188,28 @@
|
|
|
|
|
{
|
|
|
|
|
header: '건물 부속 토지 시작 가격',
|
|
|
|
|
name: 'bldgAnxLandBgngPrc',
|
|
|
|
|
align: 'center',
|
|
|
|
|
align: 'right',
|
|
|
|
|
width: 200,
|
|
|
|
|
sortable: false
|
|
|
|
|
sortable: false,
|
|
|
|
|
formatter: function(props) {
|
|
|
|
|
var value = props.value;
|
|
|
|
|
return (value == null || value === '') ? '' : Number(value).toLocaleString();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
header: '건물 부속 토지 종료 가격',
|
|
|
|
|
name: 'bldgAnxLandEndPrc',
|
|
|
|
|
align: 'center',
|
|
|
|
|
width: 200
|
|
|
|
|
align: 'right',
|
|
|
|
|
width: 200,
|
|
|
|
|
formatter: function(props) {
|
|
|
|
|
var value = props.value;
|
|
|
|
|
return (value == null || value === '') ? '' : Number(value).toLocaleString();
|
|
|
|
|
}
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
header: '위치 지수',
|
|
|
|
|
name: 'pstnIdx',
|
|
|
|
|
align: 'center',
|
|
|
|
|
align: 'right',
|
|
|
|
|
width: 100
|
|
|
|
|
//minWidth: 100
|
|
|
|
|
},
|
|
|
|
|
@ -318,7 +326,7 @@
|
|
|
|
|
|
|
|
|
|
// 새 탭으로 열기 - 컨트롤러가 요구하는 파라미터명으로 전달 (ownrId)
|
|
|
|
|
var detailUrl = buildUrlWithParamCondAndMultipleKeys(null, {"mode":"V","pstnIdxNo": rowData.pstnIdxNo}, "<c:url value="/baseData/pstnIdx/pstnIdxPopup.do"/>");
|
|
|
|
|
window.open(detailUrl, 'pstnIdxView', 'width=1000,height=400,scrollbars=yes');
|
|
|
|
|
window.open(detailUrl, 'pstnIdxView', 'width=600,height=400,scrollbars=yes');
|
|
|
|
|
}
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
@ -330,13 +338,13 @@
|
|
|
|
|
* 팝업 관련 기능
|
|
|
|
|
*/
|
|
|
|
|
openRegisterPopup: function() {
|
|
|
|
|
window.open('<c:url value="/baseData/pstnIdx/pstnIdxPopup.do"/>?mode=C', 'pstnIdxView', 'width=1000,height=400,scrollbars=yes');
|
|
|
|
|
window.open('<c:url value="/baseData/pstnIdx/pstnIdxPopup.do"/>?mode=C', 'pstnIdxView', 'width=600,height=400,scrollbars=yes');
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
openViewPopup: function(pstnIdxNo) {
|
|
|
|
|
var url = '<c:url value="/baseData/pstnIdx/pstnIdxPopup.do"/>?mode=V&pstnIdxNo=' +
|
|
|
|
|
encodeURIComponent(pstnIdxNo);
|
|
|
|
|
window.open(url, 'pstnIdxView', 'width=1000,height=400,scrollbars=yes');
|
|
|
|
|
window.open(url, 'pstnIdxView', 'width=600,height=400,scrollbars=yes');
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|