|
|
|
@ -41,6 +41,7 @@ import org.apache.poi.ss.usermodel.Row;
|
|
|
|
|
import org.apache.poi.ss.usermodel.Sheet;
|
|
|
|
|
import org.apache.poi.ss.usermodel.Workbook;
|
|
|
|
|
import org.egovframe.rte.fdl.cmmn.EgovAbstractServiceImpl;
|
|
|
|
|
import org.jasypt.encryption.StringEncryptor;
|
|
|
|
|
import org.json.simple.JSONArray;
|
|
|
|
|
import org.json.simple.JSONObject;
|
|
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
@ -70,6 +71,7 @@ public class BizSisulService extends EgovAbstractServiceImpl implements IBizSisu
|
|
|
|
|
private final static int FMC_EXCEL_CELL_CNT = 58;
|
|
|
|
|
|
|
|
|
|
private static final Validator validator = Validation.buildDefaultValidatorFactory().getValidator();
|
|
|
|
|
private final StringEncryptor jasyptStringEncryptor;
|
|
|
|
|
private final INiceCiService niceCiService;
|
|
|
|
|
|
|
|
|
|
private final IBizSisulMapper mapper;
|
|
|
|
@ -350,7 +352,7 @@ public class BizSisulService extends EgovAbstractServiceImpl implements IBizSisu
|
|
|
|
|
.masterCols(ppMasterJson[0])
|
|
|
|
|
.masterRows(ppMasterJson[1])
|
|
|
|
|
.detailCols(ppDetailJson[0])
|
|
|
|
|
.detailRows(ppDetailJson[1])
|
|
|
|
|
.detailRows(jasyptStringEncryptor.encrypt(ppDetailJson[1]))
|
|
|
|
|
.register(register)
|
|
|
|
|
.build()
|
|
|
|
|
);
|
|
|
|
@ -1051,7 +1053,7 @@ public class BizSisulService extends EgovAbstractServiceImpl implements IBizSisu
|
|
|
|
|
details.add(getElementsObj(
|
|
|
|
|
"",
|
|
|
|
|
"PRE_TEXT",
|
|
|
|
|
" \\n※ 해당 고지서에 대한 연체료(공유재산법 의거 연7%~15%)는 최종 납부 이후 일할 정산하여 별도 고지서로 부과됩니다."
|
|
|
|
|
" \\n\u203B 해당 고지서에 대한 연체료(공유재산법 의거 연7%~15%)는 최종 납부 이후 일할 정산하여 별도 고지서로 부과됩니다."
|
|
|
|
|
));
|
|
|
|
|
|
|
|
|
|
els = new JSONArray();
|
|
|
|
@ -1081,7 +1083,7 @@ public class BizSisulService extends EgovAbstractServiceImpl implements IBizSisu
|
|
|
|
|
details.add(getElementsObj(
|
|
|
|
|
"",
|
|
|
|
|
"PRE_TEXT",
|
|
|
|
|
" \\n※ 2022.04.19.까지 연체료율 10%~15%\\n※ 체납 시 보중보험 청구, 재산 압류, 사용료 청구소송 등 조치가 이루어지며, 금융기관 및 신용정보기관에 연체정보가 등록되어 금융거래 등 각종 경제활동에 불이익이 있을 수 있습니다."
|
|
|
|
|
" \\n\u203B 2022.04.19.까지 연체료율 10%~15%\\n\u203B 체납 시 보중보험 청구, 재산 압류, 사용료 청구소송 등 조치가 이루어지며, 금융기관 및 신용정보기관에 연체정보가 등록되어 금융거래 등 각종 경제활동에 불이익이 있을 수 있습니다."
|
|
|
|
|
));
|
|
|
|
|
|
|
|
|
|
JSONObject json = new JSONObject();
|
|
|
|
|