|
|
@@ -259,6 +259,8 @@ public class EsignController extends ApiBaseController {
|
|
|
Boolean success = obj.getBoolean("success");
|
|
|
if (success) {
|
|
|
int result = userService.updateIsAuthentication("1", accountId);
|
|
|
+ /*设置静默签署*/
|
|
|
+ signService.signAuth(accountId);
|
|
|
if (result > 0) {
|
|
|
return AjaxResult.success().putKV("result", result);
|
|
|
} else {
|
|
|
@@ -310,6 +312,8 @@ public class EsignController extends ApiBaseController {
|
|
|
String accountId = obj.getString("accountId");
|
|
|
Boolean success = obj.getBoolean("success");
|
|
|
if (success) {
|
|
|
+ /*设置静默签署*/
|
|
|
+ signService.signAuth(accountId);
|
|
|
int result = customersExtService.updateCustomersIsAuthentication("1", accountId);
|
|
|
if (result > 0) {
|
|
|
return AjaxResult.success().putKV("result", result);
|