|
|
@@ -84,19 +84,22 @@ public class AdjudicationServiceImpl implements IAdjudicationService {
|
|
84
|
84
|
int identityType = affiliate.getIdentityType();
|
|
85
|
85
|
if (identityType == 1) { //申请人
|
|
86
|
86
|
datas.put("appName", affiliate.getName());
|
|
87
|
|
- datas.put("appAddress", affiliate.getContactAddress());
|
|
88
|
|
- datas.put("appContactAddress", null);
|
|
|
87
|
+ datas.put("appAddress", affiliate.getResidenAffili());
|
|
|
88
|
+ datas.put("appContactAddress", affiliate.getContactAddress());
|
|
89
|
89
|
datas.put("appLegalPerson", affiliate.getCompLegalPerson());
|
|
90
|
90
|
datas.put("appLegalPersonTitle", affiliate.getCompLegalperPost());
|
|
91
|
91
|
datas.put("appAgentName", affiliate.getNameAgent());
|
|
92
|
|
- datas.put("appAgentTitle", null);
|
|
|
92
|
+ datas.put("appAgentTitle", affiliate.getAppliAgentTitle());
|
|
93
|
93
|
nameAgentList.add(affiliate.getNameAgent());
|
|
94
|
94
|
} else if (identityType == 2) { //被申请人
|
|
95
|
95
|
datas.put("resName", affiliate.getName());
|
|
96
|
|
- datas.put("resAddress", affiliate.getContactAddress());
|
|
|
96
|
+ datas.put("resAddress", affiliate.getResidenAffili());
|
|
97
|
97
|
datas.put("resSex", affiliate.getResponSex());
|
|
98
|
|
- datas.put("resDateOfBirth", affiliate.getResponBirth());
|
|
99
|
|
- datas.put("resContactAddress", null);
|
|
|
98
|
+ Date responBirth = affiliate.getResponBirth();
|
|
|
99
|
+ SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd");
|
|
|
100
|
+ String responBirthStr = sdf.format(responBirth);
|
|
|
101
|
+ datas.put("resDateOfBirth",responBirthStr);
|
|
|
102
|
+ datas.put("resContactAddress", affiliate.getContactAddress());
|
|
100
|
103
|
nameAgentList.add(affiliate.getNameAgent());
|
|
101
|
104
|
}
|
|
102
|
105
|
}
|