|
@@ -61,7 +61,8 @@ public class EvaluationDeptProcessController {
|
|
|
JSONObject data = (JSONObject) jsonArr.get("data");
|
|
|
if (data.toJSONString().length() > 0) {
|
|
|
EvaluationDeptProcess edp = evaluationDeptProcessService.getById(id);
|
|
|
- if (null != edp && businessType.equals(edp.getBusinessType())) {
|
|
|
+
|
|
|
+ if (null != edp) {
|
|
|
edp.setDeptPersonalName(String.valueOf(data.get("name")));
|
|
|
b = evaluationDeptProcessService.updateById(edp);
|
|
|
if (b) {
|