改bug
This commit is contained in:
+14
-5
@@ -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());
|
||||
|
||||
Reference in New Issue
Block a user