|
@@ -227,7 +227,7 @@ public class TTsNewController extends BaseController {
|
|
if (tTsNew.getPlanStatus() == 0) {
|
|
if (tTsNew.getPlanStatus() == 0) {
|
|
return toAjax(tTsNewService.updateTTsNew(tTsNew));
|
|
return toAjax(tTsNewService.updateTTsNew(tTsNew));
|
|
}
|
|
}
|
|
- return toAjax(tTsNewService.updateTTsNew(tTsNew, getUserId(), getNickName()));
|
|
|
|
|
|
+ return toAjax(tTsNewService.updateTTsNew(tTsNew));
|
|
}
|
|
}
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -278,7 +278,7 @@ public class TTsNewController extends BaseController {
|
|
TTsNew tTsNew = tTsNewService.selectTTsNewById(newId);
|
|
TTsNew tTsNew = tTsNewService.selectTTsNewById(newId);
|
|
String appraisalFormWordPath = this.genAppraisalFormWord(tTsNew);
|
|
String appraisalFormWordPath = this.genAppraisalFormWord(tTsNew);
|
|
tTsNew.setAppraisalFormWordPath(appraisalFormWordPath);
|
|
tTsNew.setAppraisalFormWordPath(appraisalFormWordPath);
|
|
- tTsNewService.updateTTsNew(tTsNew, getUserId(), getNickName());
|
|
|
|
|
|
+ tTsNewService.updateTTsNew(tTsNew);
|
|
return AjaxResult.success(appraisalFormWordPath);
|
|
return AjaxResult.success(appraisalFormWordPath);
|
|
}
|
|
}
|
|
|
|
|