申报没有线上数据做出提示
This commit is contained in:
parent
b572bd19d0
commit
e905bfacf4
|
|
@ -426,6 +426,10 @@ public class TaxDeclarationValueServiceImpl extends Service implements TaxDeclar
|
||||||
result.put("证件号码", local.get("证件号码"));
|
result.put("证件号码", local.get("证件号码"));
|
||||||
String no = local.getOrDefault("证件号码", "").toString();
|
String no = local.getOrDefault("证件号码", "").toString();
|
||||||
Map<String, Object> online = onlineNoMap.get(no);
|
Map<String, Object> online = onlineNoMap.get(no);
|
||||||
|
if (online == null) {
|
||||||
|
log.warn("线上没有该条数据,请检查!证件号码:{}", no);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
taxReportColumns.stream().map(TaxReportColumnPO::getReportColumnName).forEach(col -> {
|
taxReportColumns.stream().map(TaxReportColumnPO::getReportColumnName).forEach(col -> {
|
||||||
ContrastListDTO dto = new ContrastListDTO();
|
ContrastListDTO dto = new ContrastListDTO();
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue