fix: 폐기신청서 결과 등록 이미지 처리 fix

dev
Jonguk. Lim 4 months ago
parent c4b6324ca5
commit b0f5354c03

@ -232,8 +232,8 @@ public class AddsNimsController extends ApplicationController {
// 폐기증거사진 - 폐기증거사진 등록 정보 조회
mav.addObject("dsuseRsltImgList","[]");
// 폐기일자가 있는 경우 - 폐기증거사진 등록 정보 조회
if(!isEmpty(dsuseRsltInfo.getDsuseDe())) {
// 신청서접수상태가 아닌 경우 - 폐기증거사진 등록 정보 조회
if(!"01".equals(dsuseRsltInfo.getPrgrsSttsCd())) {
mav.addObject(
"dsuseRsltImgList",
toJson(

@ -589,8 +589,8 @@
// 취급일자 및 페기일자에 값이 없는 경우 당일로 초기화.
if (($P.control.getValue("dsuseDe") == null || $P.control.getValue("dsuseDe") == "") &&
($P.control.getValue("hdrDe") == null || $P.control.getValue("hdrDe") == "")){
if (($P.control.getValue("dsuseDe") === null || $P.control.getValue("dsuseDe") === "") &&
($P.control.getValue("hdrDe") === null || $P.control.getValue("hdrDe") === "")){
$("#hdrDe--${pageName}").datepicker("setDate", new Date()); // 취급 일자
$("#dsuseDe--${pageName}").datepicker("setDate", new Date()); // 폐기 일자
}

Loading…
Cancel
Save