This commit is contained in:
hejinbo
2023-11-02 17:49:20 +08:00
parent 2c20dec85e
commit 9fdbc8712a
3 changed files with 395 additions and 10 deletions
@@ -102,13 +102,17 @@ public class AdjudicationServiceImpl implements IAdjudicationService {
} else if (identityType == 2) { //被申请人
datas.put("resName", affiliate.getName());
datas.put("resAddress", affiliate.getResidenAffili());
datas.put("resSex", affiliate.getResponSex());
String responSex = affiliate.getResponSex();
if (responSex.equals("0")){
datas.put("resSex","男");
}else{
datas.put("resSex","女");
}
Date responBirth = affiliate.getResponBirth();
if (responBirth != null) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
String responBirthStr = sdf.format(responBirth);
datas.put("resDateOfBirth", responBirthStr);
}
datas.put("resContactAddress", affiliate.getContactAddress());
nameAgentList.add(affiliate.getNameAgent());
@@ -253,7 +257,7 @@ public class AdjudicationServiceImpl implements IAdjudicationService {
//申请人证据材料
datas.put("appEvidenceMaterial", null);
//被申请人证据材料
datas.put("resEvidenceMaterial", null);
datas.put("resEvidenceMaterial","(详见附件列表)");
datas.put("applicaCrossOpin", caseApplication1.getApplicaCrossOpin());
if (arbitrateRecord1 != null) {
datas.put("factDetermi", arbitrateRecord1.getFactDetermi());
@@ -647,7 +651,12 @@ public class AdjudicationServiceImpl implements IAdjudicationService {
} else if (identityType == 2) { //被申请人
datas.put("resName", affiliate.getName());
datas.put("resAddress", affiliate.getResidenAffili());
datas.put("resSex", affiliate.getResponSex());
String responSex = affiliate.getResponSex();
if (responSex.equals("0")){
datas.put("resSex","男");
}else{
datas.put("resSex","女");
}
Date responBirth = affiliate.getResponBirth();
if (responBirth != null) {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
@@ -798,7 +807,7 @@ public class AdjudicationServiceImpl implements IAdjudicationService {
//申请人证据材料
datas.put("appEvidenceMaterial", null);
//被申请人证据材料
datas.put("resEvidenceMaterial", null);
datas.put("resEvidenceMaterial","(详见附件列表)");
datas.put("applicaCrossOpin", caseApplication1.getApplicaCrossOpin());
if (arbitrateRecord1 != null) {
datas.put("factDetermi", arbitrateRecord1.getFactDetermi());