mirror of
http://git.mhez-qa.uplus.co.kr/hubez/hubez-admin.git
synced 2025-12-06 23:34:18 +09:00
어드민 발신번호 통신서비스 이용증명원 필수 -> 필수X
This commit is contained in:
@@ -356,9 +356,11 @@ public class SendNumMgtService {
|
||||
}
|
||||
|
||||
// 통신서비스이용 증명원 '01'
|
||||
MultipartFile communicationFile = multipartRequest.getFile("communicationFile");
|
||||
multipartFiles.add(communicationFile);
|
||||
docTpCd.add(Const.SNDRNO_DOC_TP_CD_01);
|
||||
if(multipartRequest.getFile("communicationFile") != null) {
|
||||
MultipartFile communicationFile = multipartRequest.getFile("communicationFile");
|
||||
multipartFiles.add(communicationFile);
|
||||
docTpCd.add(Const.SNDRNO_DOC_TP_CD_01);
|
||||
}
|
||||
|
||||
// // 재직증명서 '02'
|
||||
// if(multipartRequest.getFile("tenureFile") != null) {
|
||||
@@ -383,7 +385,6 @@ public class SendNumMgtService {
|
||||
}
|
||||
|
||||
} else if(StringUtils.equals(Const.SNDRNO_TP_CD_OTHER, insertNumberReqDto.getNmineeDivCd())){
|
||||
logger.debug("타사업자로 온거 맞아?");
|
||||
// 사업자등록증 '06'
|
||||
if(multipartRequest.getFile("businessFile") != null) {
|
||||
MultipartFile businessFile = multipartRequest.getFile("businessFile");
|
||||
@@ -393,10 +394,12 @@ public class SendNumMgtService {
|
||||
}
|
||||
|
||||
// 통신서비스이용 증명원 '01'
|
||||
MultipartFile communicationFile = multipartRequest.getFile("communicationFile");
|
||||
logger.debug("communicationFile={}",communicationFile.getName());
|
||||
multipartFiles.add(communicationFile);
|
||||
docTpCd.add(Const.SNDRNO_DOC_TP_CD_01);
|
||||
if(multipartRequest.getFile("communicationFile") != null) {
|
||||
MultipartFile communicationFile = multipartRequest.getFile("communicationFile");
|
||||
logger.debug("communicationFile={}",communicationFile.getName());
|
||||
multipartFiles.add(communicationFile);
|
||||
docTpCd.add(Const.SNDRNO_DOC_TP_CD_01);
|
||||
}
|
||||
|
||||
// 재직증명서(본인확인) '14'
|
||||
if(multipartRequest.getFile("identificationEvidenceFile") != null) {
|
||||
|
||||
Reference in New Issue
Block a user