|
|
@ -76,65 +76,88 @@
|
|
|
|
<script>
|
|
|
|
<script>
|
|
|
|
var openerPageName = "${openerPageName}";
|
|
|
|
var openerPageName = "${openerPageName}";
|
|
|
|
|
|
|
|
|
|
|
|
//FIXME: pw instance 변수명 변경시 paintweb.js의 imageSaveTo() 내의 2564 line if(pw.image.modified) 변경 필요
|
|
|
|
|
|
|
|
var pw;
|
|
|
|
var pw;
|
|
|
|
var originalInfomation = {};
|
|
|
|
var originalInfomation = {};
|
|
|
|
var editableImage = null;
|
|
|
|
var editableImage = null;
|
|
|
|
var isNumberPlate = false;
|
|
|
|
var isNumberPlate = false;
|
|
|
|
|
|
|
|
|
|
|
|
const initEditor = () => {
|
|
|
|
const initEditor = () => {
|
|
|
|
|
|
|
|
|
|
|
|
pw = new PaintWeb();
|
|
|
|
pw = new PaintWeb();
|
|
|
|
pw.config.imageLoad = editableImage;
|
|
|
|
pw.config.imageLoad = editableImage;
|
|
|
|
pw.config.guiPlaceholder = document.getElementById('paintWebTarget');
|
|
|
|
pw.config.guiPlaceholder = document.getElementById('paintWebTarget');
|
|
|
|
pw.config.imageSave = fnImageSaveTo;
|
|
|
|
pw.config.imageSave = fnImageSaveTo;
|
|
|
|
pw.config.afterImageSave = fnAfterImageSave;
|
|
|
|
pw.config.afterImageSave = fnAfterImageSave;
|
|
|
|
|
|
|
|
|
|
|
|
pw.init();
|
|
|
|
pw.init();
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
function fnImageSaveTo(file, imgWidth, imgHeight, doc, _self){
|
|
|
|
function fnImageSaveTo(file, imgWidth, imgHeight, doc, _self){
|
|
|
|
|
|
|
|
|
|
|
|
console.log(doc);
|
|
|
|
console.log(doc);
|
|
|
|
console.log(_self);
|
|
|
|
console.log(_self);
|
|
|
|
|
|
|
|
|
|
|
|
if(isNumberPlate){
|
|
|
|
if(isNumberPlate){
|
|
|
|
if(!confirm('번호판 이미지를 추가하시겠습니까?')) return;
|
|
|
|
if(!confirm('번호판 이미지를 추가하시겠습니까?')) return;
|
|
|
|
}else{
|
|
|
|
}else{
|
|
|
|
if(!confirm('편집한 단속이미지를 저장하시겠습니까?')) return;
|
|
|
|
if(!confirm('편집한 단속이미지를 저장하시겠습니까?')) return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
window.opener.pageObject[openerPageName].editPhotoCallback(file, originalInfomation, isNumberPlate);
|
|
|
|
window.opener.pageObject[openerPageName].editPhotoCallback(file, originalInfomation, isNumberPlate);
|
|
|
|
return true;
|
|
|
|
return true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
function fnAfterImageSave(){
|
|
|
|
function fnAfterImageSave(){
|
|
|
|
window.close();
|
|
|
|
window.close();
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
$(document).ready(function(){
|
|
|
|
$(document).ready(function(){
|
|
|
|
|
|
|
|
|
|
|
|
var fileInfo = [${fileInfo}];
|
|
|
|
var fileInfo = [${fileInfo}];
|
|
|
|
|
|
|
|
|
|
|
|
if(fileInfo.length > 0){
|
|
|
|
if(fileInfo.length > 0){
|
|
|
|
originalInfomation = fileInfo[0];
|
|
|
|
originalInfomation = fileInfo[0];
|
|
|
|
|
|
|
|
|
|
|
|
var fileUrl = fileInfo[0].URL;
|
|
|
|
var fileUrl = fileInfo[0].URL;
|
|
|
|
var fullSrc = "${pageContext.request.contextPath}" + "/" + fileUrl;
|
|
|
|
var fullSrc = "${pageContext.request.contextPath}" + "/" + fileUrl;
|
|
|
|
|
|
|
|
|
|
|
|
editableImage = document.getElementById('editableImage');
|
|
|
|
editableImage = document.getElementById('editableImage');
|
|
|
|
editableImage.src = fullSrc;
|
|
|
|
editableImage.src = fullSrc;
|
|
|
|
editableImage.onload = function () {
|
|
|
|
editableImage.onload = function () {
|
|
|
|
initEditor();
|
|
|
|
initEditor();
|
|
|
|
editableImage.style.display = 'none';
|
|
|
|
editableImage.style.display = 'none';
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
var vhclInfo = window.opener.pageObject[openerPageName].carInfoFunc();
|
|
|
|
|
|
|
|
$("input[name='vhrno']").val(vhclInfo.vhrno);
|
|
|
|
} else {
|
|
|
|
$("input[name='vhclNm']").val(vhclInfo.vhclNm);
|
|
|
|
alert("사진 파일이 없습니다.");
|
|
|
|
$("input[name='vhclColor']").val(vhclInfo.vhclColor);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
$("input[name='vhrno']").on("keyup",function(e){
|
|
|
|
});
|
|
|
|
if(e.key == "Enter"){
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
window.opener.pageObject[openerPageName].carLinkFunc(this.value).then(function(result){
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(result.vhrno == null || result.vhrno == ""){
|
|
|
|
|
|
|
|
$("input[name='vhclNm']").val("");
|
|
|
|
|
|
|
|
$("input[name='vhclColor']").val("");
|
|
|
|
|
|
|
|
alert("차량조회 결과가 없습니다.");
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
$("input[name='vhrno']").val(result.vhrno);
|
|
|
|
|
|
|
|
$("input[name='vhclNm']").val(result.vhclNm);
|
|
|
|
|
|
|
|
$("input[name='vhclColor']").val(result.vhclColor);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
alert("사진 파일이 없습니다.");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</body>
|
|
|
|