信用修复文书修复
This commit is contained in:
parent
6e589b649f
commit
2dc94b48db
|
|
@ -2,6 +2,7 @@ package com.chinaweal.aiccs.aiccs.abnormal.service.impl;
|
|||
|
||||
import com.baomidou.mybatisplus.core.conditions.query.LambdaQueryWrapper;
|
||||
import com.baomidou.mybatisplus.core.metadata.IPage;
|
||||
import com.baomidou.mybatisplus.core.toolkit.Wrappers;
|
||||
import com.baomidou.mybatisplus.extension.service.impl.ServiceImpl;
|
||||
import com.chinaweal.aiccs.aiccs.abnormal.entity.*;
|
||||
import com.chinaweal.aiccs.aiccs.abnormal.mapper.TSBizRemListMapper;
|
||||
|
|
@ -231,9 +232,10 @@ public class TSBizRemListServiceImpl extends ServiceImpl<TSBizRemListMapper, TSB
|
|||
|
||||
// 生成决定书附件
|
||||
HashMap<String, Object> map = new HashMap<>();
|
||||
String areaNameq = Constant.NM_LOC_REGION_CODE.get(tsWritModel.getAreaCode());
|
||||
String nmSareaName = Constant.NM_REGION_CODE.get(tsWritModel.getAreaCode().substring(0, 4) + "00");
|
||||
String areaName = nmSareaName + areaNameq;
|
||||
String cityName = Constant.NM_REGION_CODE.get(tsWritModel.getAreaCode().substring(0, 4) + "00");
|
||||
String locName = Constant.NM_LOC_REGION_CODE.get(tsWritModel.getAreaCode());
|
||||
String areaName = cityName + locName;
|
||||
areaName = StringUtils.equals(tsWritModel.getAreaCode(),"150000") ? "内蒙古自治区" : areaName;
|
||||
map.put("areaName", areaName);
|
||||
map.put("writsNo", tsWritModel.getWritsno());
|
||||
map.put("htmlContent", tsWritModel.getContent());
|
||||
|
|
|
|||
|
|
@ -240,9 +240,10 @@ public class TSBizSerIllegalRemServiceImpl extends BaseServiceImpl<TSBizSerIlleg
|
|||
|
||||
// 生成列异决定书附件
|
||||
HashMap<String, Object> map = new HashMap<>();
|
||||
String areaNameq = Constant.NM_LOC_REGION_CODE.get(tsWritModel.getAreaCode());
|
||||
String nmSareaName = Constant.NM_REGION_CODE.get(tsWritModel.getAreaCode().substring(0, 4) + "00");
|
||||
String areaName = nmSareaName + areaNameq;
|
||||
String cityName = Constant.NM_REGION_CODE.get(tsWritModel.getAreaCode().substring(0, 4) + "00");
|
||||
String locName = Constant.NM_LOC_REGION_CODE.get(tsWritModel.getAreaCode());
|
||||
String areaName = cityName + locName;
|
||||
areaName = StringUtils.equals(tsWritModel.getAreaCode(),"150000") ? "内蒙古自治区" : areaName;
|
||||
map.put("areaName", areaName);
|
||||
map.put("writsNo", tsWritModel.getWritsno());
|
||||
map.put("htmlContent", tsWritModel.getContent());
|
||||
|
|
|
|||
Loading…
Reference in New Issue