위택스 운전자변경 완료

main
이범준 2 weeks ago
parent 6bac40d7a6
commit e392ae92a9

@ -265,11 +265,14 @@ public class Rent04Controller extends ApplicationController {
if(find) {
resultRow.set("K", searchResult1.string("HIRER_NM"));
if(searchResult1.string("HIRER_SE_CD").equals("99")) { //TODO: 면허번호입력여부
resultRow.set("L", searchResult1.string("HIRER_REG_NO"));
} else {
resultRow.set("M", searchResult1.string("HIRER_REG_NO"));
}
String hirerRegNo = searchResult1.string("HIRER_REG_NO");
if(hirerRegNo.length() == 13 || hirerRegNo.length() == 10) {
resultRow.set("M", hirerRegNo);
} else {
resultRow.set("L", hirerRegNo);
}
resultRow.set("N", searchResult1.string("HIRER_ADDR"));
resultRow.set("O", searchResult1.string("HIRER_DTL_ADDR"));
resultRow.set("P", searchResult1.string("HIRER_ZIP"));

Loading…
Cancel
Save