|
|
@@ -497,7 +497,7 @@ public class AdminApiController extends CertifyApiController {
|
|
|
ui.setProcess(IdentityProcess.COMMITTED.getCode());
|
|
|
ui.setAuditStatus(IdentityAuditStatus.COMMITTED.getCode());
|
|
|
}
|
|
|
- res.setData(userIdentityService.updateUserDetail(ui, saveSign));
|
|
|
+ res.setData(userIdentityService.updateUserDetail(ui, saveSign, userIdentity.getLevel()));
|
|
|
return res;
|
|
|
}
|
|
|
|
|
|
@@ -564,6 +564,8 @@ public class AdminApiController extends CertifyApiController {
|
|
|
res.getError().add(buildError(ErrorConstants.PARAM_ERROR, "", "保存提交方式"));
|
|
|
return res;
|
|
|
}
|
|
|
+
|
|
|
+ //if (null == )
|
|
|
|
|
|
if (!StringUtils.isBlank(paymentDateFormattedDate)) {
|
|
|
try {
|
|
|
@@ -575,7 +577,7 @@ public class AdminApiController extends CertifyApiController {
|
|
|
OrganizationIdentity oi = new OrganizationIdentity();
|
|
|
BeanUtils.copyProperties(orgIdentity, oi);
|
|
|
|
|
|
- res.setData(organizationIdentityService.updateOrgDetail(oi, saveSign));
|
|
|
+ res.setData(organizationIdentityService.updateOrgDetail(oi, saveSign, orgIdentity.getLevel()));
|
|
|
return res;
|
|
|
}
|
|
|
|