许鹏程
2023-05-24 34ff70bc904e68548b5996561d5da52a67a46d24
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
package com.product.admin.controller;
 
import com.alibaba.fastjson.JSON;
import com.alibaba.fastjson.JSONArray;
import com.alibaba.fastjson.JSONObject;
import com.product.admin.config.CmnConst;
import com.product.admin.config.SystemCode;
import com.product.admin.service.SelectPersonnelService;
import com.product.admin.service.idel.ISelectPersonnelService;
import com.product.admin.util.ResultInfo;
import com.product.core.config.CoreConst;
import com.product.core.controller.support.AbstractBaseController;
import com.product.core.entity.DataTableEntity;
import com.product.core.entity.FieldSetEntity;
import com.product.core.entity.RequestParameterEntity;
import com.product.core.exception.BaseException;
import com.product.core.permission.PermissionService;
import com.product.core.spring.context.SpringMVCContextHolder;
import com.product.module.sys.config.SystemErrorCode;
import com.product.module.sys.entity.SystemUser;
import com.product.module.sys.version.ApiVersion;
import com.product.util.BaseUtil;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;
 
import javax.servlet.http.HttpServletRequest;
 
/**
 *
 * @Title: SelectPersonnelController
 * @Date: 2020年8月26日 17:27:23
 * @Author: luoxin
 * @Description: 部门组织架构选择
 */
@RestController
@RequestMapping("/api/select")
public class SelectPersonnelController extends AbstractBaseController {
 
    /**
     * 数据权限验证
     */
    @Autowired
    PermissionService permissionService;
    @Autowired
    private SelectPersonnelService selectPersonnelService;
 
    /**
     * 获取组织架构树
     */
    @RequestMapping(value = "/list-organization/{version}", method = RequestMethod.POST)
    @ApiVersion(1)
    public String getOrganization(HttpServletRequest request) {
        //获取参数
        FieldSetEntity fse = null;
        Object bean = request.getAttribute(CoreConst.API_POST_REQUEST_DATA);
        if (bean != null) {
            RequestParameterEntity reqp = (RequestParameterEntity) bean;
            fse = reqp.getFormData();
        }
        //判断参数是否为空
        if (bean == null || fse == null) {
            SpringMVCContextHolder.getSystemLogger().error(SystemCode.SYSTEM_FORM_NODATA.getValue(), SystemCode.SYSTEM_FORM_NODATA.getText());
            return this.error(SystemCode.SYSTEM_FORM_NODATA.getValue(), SystemCode.SYSTEM_FORM_NODATA.getText());
        }
        //单位uuid
        try {
            JSONObject jsonObject = selectPersonnelService.getOrganizationStructureTree(SpringMVCContextHolder.getCurrentUser().getOrg_level_uuid());
            return ResultInfo.success(jsonObject);
        } catch (BaseException e) {
            SpringMVCContextHolder.getSystemLogger().error(e);
            return this.error(e);
        } catch (Exception e) {
            SpringMVCContextHolder.getSystemLogger().error(e);
            return error(SystemCode.SYSTEM_GET_DEPARTMENT_ERROR.getValue(), SystemCode.SYSTEM_GET_DEPARTMENT_ERROR.getText());
        }
    }
 
    /**
     * 通过uuid获取公司或部门下人员或岗位的信息
     */
    @RequestMapping(value = "/list-department/{version}", method = RequestMethod.POST)
    @ApiVersion(1)
    public String getOrganizationThoseWho(HttpServletRequest request) {
        //获取参数
        FieldSetEntity fse = null;
        Object bean = request.getAttribute(CoreConst.API_POST_REQUEST_DATA);
        if (bean != null) {
            RequestParameterEntity reqp = (RequestParameterEntity) bean;
            fse = reqp.getFormData();
        }
        //判断参数是否为空
        if (fse == null) {
            SpringMVCContextHolder.getSystemLogger().error(SystemCode.SYSTEM_FORM_NODATA.getValue(), SystemCode.SYSTEM_FORM_NODATA.getText());
            return this
                    .error(SystemCode.SYSTEM_FORM_NODATA.getValue(), SystemCode.SYSTEM_FORM_NODATA.getText());
        }
        try {
            //单位或公司uuid
            String uuid = fse.getString("uuid");
            //表名
            String tableName = fse.getTableName();
            JSONArray array = selectPersonnelService
                    .getOrganizationThoseWho(tableName, uuid);
            return ResultInfo.success(array);
        } catch (BaseException e) {
            SpringMVCContextHolder.getSystemLogger().error(e);
            return this.error(e);
        } catch (Exception e) {
            SpringMVCContextHolder.getSystemLogger().error(e);
            return error(SystemCode.SYSTEM_THE_EMPLOYEE_ERROR.getValue(), SystemCode.SYSTEM_THE_EMPLOYEE_ERROR.getText());
        }
    }
 
    /**
     * 获取个人组信息及组内容 解析并保存getTheGroup
     */
    @RequestMapping(value = "/save-personage-the-group/{version}", method = RequestMethod.POST)
    @ApiVersion(1)
    public String savePersonageTheGroup(HttpServletRequest request) {
        //获取参数
        FieldSetEntity fse = null;
        Object bean = request.getAttribute(CoreConst.API_POST_REQUEST_DATA);
        if (bean != null) {
            RequestParameterEntity reqp = (RequestParameterEntity) bean;
            fse = reqp.getFormData();
        }
        //判断参数是否为空
        if (fse == null) {
            SpringMVCContextHolder.getSystemLogger().error(SystemCode.SYSTEM_FORM_NODATA.getValue(), SystemCode.SYSTEM_FORM_NODATA.getText());
            return this
                    .error(SystemCode.SYSTEM_FORM_NODATA.getValue(), SystemCode.SYSTEM_FORM_NODATA.getText());
        }
        try {
            ISelectPersonnelService service = (ISelectPersonnelService) getProxyInstance(selectPersonnelService);
            String uuid = service.savePersonageTheGroup(fse);
            //表名
            if (!BaseUtil.strIsNull(uuid)) {
                JSONObject object = new JSONObject();
                object.put("uuid", uuid);
                return ResultInfo.success(object);
            } else {
                return error(SystemCode.SYSTEM_SAVE_GROUP_ERROR.getText(),
                        SystemCode.SYSTEM_SAVE_GROUP_ERROR.getValue());
            }
        } catch (BaseException e) {
            SpringMVCContextHolder.getSystemLogger().error(e);
            return this.error(e);
        } catch (Exception e) {
            SpringMVCContextHolder.getSystemLogger().error(e);
            return error(SystemCode.SYSTEM_SAVE_GROUP_ERROR.getValue(), SystemCode.SYSTEM_SAVE_GROUP_ERROR.getText());
        }
    }
 
    /**
     * 保存公司组信息及组内容
     */
    @RequestMapping(value = "/save-company-the-group/{version}", method = RequestMethod.POST)
    @ApiVersion(1)
    public String saveCompanyTheGroup(HttpServletRequest request) {
        //获取参数
        FieldSetEntity fse = null;
        Object bean = request.getAttribute(CoreConst.API_POST_REQUEST_DATA);
        if (bean != null) {
            RequestParameterEntity reqp = (RequestParameterEntity) bean;
            fse = reqp.getFormData();
        }
        //判断参数是否为空
        if (fse == null) {
            SpringMVCContextHolder.getSystemLogger().error(SystemCode.SYSTEM_FORM_NODATA.getValue(), SystemCode.SYSTEM_FORM_NODATA.getText());
            return this
                    .error(SystemCode.SYSTEM_FORM_NODATA.getValue(), SystemCode.SYSTEM_FORM_NODATA.getText());
        }
        //数据操作的权限验证
        if (!BaseUtil.strIsNull(fse.getString(CmnConst.UUID))) {
            if (!permissionService.validDataPermission(fse, CoreConst.DATA_PERMISSION_VALID_TYPE_ORG)) {
                SpringMVCContextHolder.getSystemLogger().error(SystemErrorCode.SYSTEM_NOT_OPER_PERMISSION.getValue(),
                        SystemErrorCode.SYSTEM_NOT_OPER_PERMISSION.getText());
                return this.error(SystemErrorCode.SYSTEM_NOT_OPER_PERMISSION.getValue(), SystemErrorCode.SYSTEM_NOT_OPER_PERMISSION.getText());
            }
        }
        try {
            ISelectPersonnelService service = (ISelectPersonnelService) getProxyInstance(selectPersonnelService);
            String uuid = service.saveCompanyTheGroup(fse);
            //表名
            if (uuid != null && !uuid.isEmpty()) {
                JSONObject object = new JSONObject();
                object.put("uuid", uuid);
                return ResultInfo.success(object);
            } else {
                SpringMVCContextHolder.getSystemLogger().error(SystemCode.SYSTEM_SAVE_GROUP_ERROR.getValue(), SystemCode.SYSTEM_SAVE_GROUP_ERROR.getText());
                return error(SystemCode.SYSTEM_SAVE_GROUP_ERROR.getValue(), SystemCode.SYSTEM_SAVE_GROUP_ERROR.getText());
            }
        } catch (BaseException e) {
            SpringMVCContextHolder.getSystemLogger().error(e);
            return this.error(e);
        } catch (Exception e) {
            SpringMVCContextHolder.getSystemLogger().error(e);
            return error(SystemCode.SYSTEM_SAVE_GROUP_ERROR.getValue(), SystemCode.SYSTEM_SAVE_GROUP_ERROR.getText());
        }
    }
 
    /**
     * 删除组信息及组内容
     */
    @RequestMapping(value = "/delete-the-group/{version}", method = RequestMethod.POST)
    @ApiVersion(1)
    public String deleteTheGroup(HttpServletRequest request) {
        //获取参数
        FieldSetEntity fse = null;
        Object bean = request.getAttribute(CoreConst.API_POST_REQUEST_DATA);
        if (bean != null) {
            RequestParameterEntity reqp = (RequestParameterEntity) bean;
            fse = reqp.getFormData();
        }
        //判断参数是否为空
        if (fse == null) {
            SpringMVCContextHolder.getSystemLogger().error(SystemCode.SYSTEM_FORM_NODATA.getValue(), SystemCode.SYSTEM_FORM_NODATA.getText());
            return this
                    .error(SystemCode.SYSTEM_FORM_NODATA.getValue(), SystemCode.SYSTEM_FORM_NODATA.getText());
        }
        String uuids = fse.getString("uuids");
        //普通管理员为2
        SystemUser currentUser = SpringMVCContextHolder.getCurrentUser();
        //如果为普通管理员
        if (currentUser.getUserType() == 2) {
            //数据操作的权限验证
            if (!permissionService.validDataPermission(CmnConst.PRODUCT_SYS_GROUP, uuids, CoreConst.DATA_PERMISSION_VALID_TYPE_ORG)) {
                SpringMVCContextHolder.getSystemLogger().error(SystemErrorCode.SYSTEM_NOT_OPER_PERMISSION.getValue(),
                        SystemErrorCode.SYSTEM_NOT_OPER_PERMISSION.getText());
                return this.error(SystemErrorCode.SYSTEM_NOT_OPER_PERMISSION.getValue(), SystemErrorCode.SYSTEM_NOT_OPER_PERMISSION.getText());
            }
        } else {
            //数据操作的权限验证
            if (!permissionService.validDataPermission(CmnConst.PRODUCT_SYS_GROUP, uuids, CoreConst.DATA_PERMISSION_VALID_TYPE_USER)) {
                SpringMVCContextHolder.getSystemLogger().error(SystemErrorCode.SYSTEM_NOT_OPER_PERMISSION.getValue(),
                        SystemErrorCode.SYSTEM_NOT_OPER_PERMISSION.getText());
                return this.error(SystemErrorCode.SYSTEM_NOT_OPER_PERMISSION.getValue(), SystemErrorCode.SYSTEM_NOT_OPER_PERMISSION.getText());
            }
        }
        try {
            ISelectPersonnelService service = (ISelectPersonnelService) getProxyInstance(selectPersonnelService);
            //表名
            if (service.deleteTheGroup(fse)) {
                return OK();
            } else {
                SpringMVCContextHolder.getSystemLogger().error(SystemCode.SYSTEM_ERROR_GROUP_CITED.getValue(), SystemCode.SYSTEM_ERROR_GROUP_CITED.getText());
                return error(SystemCode.SYSTEM_ERROR_GROUP_CITED.getValue(), SystemCode.SYSTEM_ERROR_GROUP_CITED.getText());
            }
        } catch (BaseException e) {
            SpringMVCContextHolder.getSystemLogger().error(e);
            return this.error(e);
        } catch (Exception e) {
            SpringMVCContextHolder.getSystemLogger().error(e);
            return error(SystemCode.SYSTEM_DELETE_GROUP_ERROR.getValue(), SystemCode.SYSTEM_DELETE_GROUP_ERROR.getText());
        }
    }
 
    /**
     * 点击组获取用户信息
     */
    @RequestMapping(value = "/get-the-group/{version}", method = RequestMethod.POST)
    @ApiVersion(1)
    public String getTheGroup(HttpServletRequest request) {
        //获取参数
        FieldSetEntity fse = null;
        Object bean = request.getAttribute(CoreConst.API_POST_REQUEST_DATA);
        if (bean != null) {
            RequestParameterEntity reqp = (RequestParameterEntity) bean;
            fse = reqp.getFormData();
        }
        //判断参数是否为空
        if (fse == null) {
            SpringMVCContextHolder.getSystemLogger().error(SystemCode.SYSTEM_FORM_NODATA.getValue(), SystemCode.SYSTEM_FORM_NODATA.getText());
            return this
                    .error(SystemCode.SYSTEM_FORM_NODATA.getValue(), SystemCode.SYSTEM_FORM_NODATA.getText());
        }
        //数据操作的权限验证
        if (!permissionService.validDataPermission(fse, CoreConst.DATA_PERMISSION_VALID_TYPE_USER) && !permissionService.validDataPermission(fse, CoreConst.DATA_PERMISSION_VALID_TYPE_ORG)) {
            SpringMVCContextHolder.getSystemLogger().error(SystemErrorCode.SYSTEM_NOT_OPER_PERMISSION.getValue(),
                    SystemErrorCode.SYSTEM_NOT_OPER_PERMISSION.getText());
            return this.error(SystemErrorCode.SYSTEM_NOT_OPER_PERMISSION.getValue(), SystemErrorCode.SYSTEM_NOT_OPER_PERMISSION.getText());
        }
        try {
            //表名
            DataTableEntity dataTableEntity = selectPersonnelService.getTheGroup(fse);
            return OK_List(dataTableEntity);
        } catch (BaseException e) {
            SpringMVCContextHolder.getSystemLogger().error(e);
            return this.error(e);
        } catch (Exception e) {
            SpringMVCContextHolder.getSystemLogger().error(e);
            return error(SystemCode.SYSTEM_GET_GROUP_ERROR.getValue(), SystemCode.SYSTEM_GET_GROUP_ERROR.getText());
        }
    }
 
    /**
     * 弹框获取当前公司组和个人组
     */
    @RequestMapping(value = "/list-all-group/{version}", method = RequestMethod.POST)
    @ApiVersion(1)
    public String listAllGroup(HttpServletRequest request) {
        //获取参数
        FieldSetEntity fse = null;
        Object bean = request.getAttribute(CoreConst.API_POST_REQUEST_DATA);
        if (bean != null) {
            RequestParameterEntity reqp = (RequestParameterEntity) bean;
            fse = reqp.getFormData();
        }
        //判断参数是否为空
        if (fse == null) {
            SpringMVCContextHolder.getSystemLogger().error(SystemCode.SYSTEM_FORM_NODATA.getValue(), SystemCode.SYSTEM_FORM_NODATA.getText());
            return this
                    .error(SystemCode.SYSTEM_FORM_NODATA.getValue(), SystemCode.SYSTEM_FORM_NODATA.getText());
        }
        try {
            return OK_List(selectPersonnelService.listAllGroup(fse));
        } catch (BaseException e) {
            SpringMVCContextHolder.getSystemLogger().error(e);
            return this.error(e);
        } catch (Exception e) {
            SpringMVCContextHolder.getSystemLogger().error(e);
            return error(SystemCode.SYSTEM_GET_GROUP_ERROR.getValue(), SystemCode.SYSTEM_GET_GROUP_ERROR.getText());
        }
    }
 
    /**
     * 获取公司组列表
     */
    @RequestMapping(value = "/list-company-group/{version}", method = RequestMethod.POST)
    @ApiVersion(1)
    public String listCompanyGroup(HttpServletRequest request) {
        //获取参数
        FieldSetEntity fse = null;
        Object bean = request.getAttribute(CoreConst.API_POST_REQUEST_DATA);
        if (bean != null) {
            RequestParameterEntity reqp = (RequestParameterEntity) bean;
            fse = reqp.getFormData();
        }
        //判断参数是否为空
        if (fse == null) {
            SpringMVCContextHolder.getSystemLogger().error(SystemCode.SYSTEM_FORM_NODATA.getValue(), SystemCode.SYSTEM_FORM_NODATA.getText());
            return this
                    .error(SystemCode.SYSTEM_FORM_NODATA.getValue(), SystemCode.SYSTEM_FORM_NODATA.getText());
        }
        try {
            JSONObject object = selectPersonnelService.listCompanyGroup(fse);
            if (object.size() == 1) {
                DataTableEntity data = (DataTableEntity) object.get("data");
                return OK_List(data);
            } else {
                DataTableEntity data = (DataTableEntity) object.get("datatable");
                if (!BaseUtil.dataTableIsEmpty(data)) {
                    JSONObject jsonObject = JSON.parseObject(OK_List(data));
                    if (jsonObject != null) {
                        JSONArray systemFieldMeta = jsonObject.getJSONArray("systemFieldMeta");
                        if (systemFieldMeta != null) {
                            object.put("systemFieldMeta", systemFieldMeta);
                        }
                    }
                }
                return ResultInfo.success(object);
            }
        } catch (BaseException e) {
            SpringMVCContextHolder.getSystemLogger().error(e);
            return this.error(e);
        } catch (Exception e) {
            SpringMVCContextHolder.getSystemLogger().error(e);
            return error(SystemCode.SYSTEM_GET_GROUP_ERROR.getValue(), SystemCode.SYSTEM_GET_GROUP_ERROR.getText());
        }
    }
 
    /**
     * 获取公司组详情
     */
    @RequestMapping(value = "/get-company-group-info/{version}", method = RequestMethod.POST)
    @ApiVersion(1)
    public String getCompanyGroupInfo(HttpServletRequest request) {
        //获取参数
        FieldSetEntity fse = null;
        Object bean = request.getAttribute(CoreConst.API_POST_REQUEST_DATA);
        if (bean != null) {
            RequestParameterEntity reqp = (RequestParameterEntity) bean;
            fse = reqp.getFormData();
        }
        //判断参数是否为空
        if (fse == null) {
            SpringMVCContextHolder.getSystemLogger().error(SystemCode.SYSTEM_FORM_NODATA.getValue(), SystemCode.SYSTEM_FORM_NODATA.getText());
            return this
                    .error(SystemCode.SYSTEM_FORM_NODATA.getValue(), SystemCode.SYSTEM_FORM_NODATA.getText());
        }
        //普通管理员为2
        SystemUser currentUser = SpringMVCContextHolder.getCurrentUser();
        //数据操作的权限验证
        if (currentUser.getUserType() != 2 || !permissionService.validDataPermission(fse, CoreConst.DATA_PERMISSION_VALID_TYPE_ORG)) {
            SpringMVCContextHolder.getSystemLogger().error(SystemErrorCode.SYSTEM_NOT_OPER_PERMISSION.getValue(),
                    SystemErrorCode.SYSTEM_NOT_OPER_PERMISSION.getText());
            return this.error(SystemErrorCode.SYSTEM_NOT_OPER_PERMISSION.getValue(), SystemErrorCode.SYSTEM_NOT_OPER_PERMISSION.getText());
        }
        try {
            FieldSetEntity fieldSetEntity = selectPersonnelService.getCompanyGroupInfo(fse);
            return OK_List(fieldSetEntity);
        } catch (BaseException e) {
            SpringMVCContextHolder.getSystemLogger().error(e);
            return this.error(e);
        } catch (Exception e) {
            SpringMVCContextHolder.getSystemLogger().error(e);
            return error(SystemCode.SYSTEM_GET_MANNING_ERROR.getValue(), SystemCode.SYSTEM_GET_MANNING_ERROR.getText());
        }
    }
 
    /**
     * 保存已经选择的人员,部门,组织架构,岗位。
     */
    @RequestMapping(value = "/save-organization/{version}", method = RequestMethod.POST)
    @ApiVersion(1)
    public String saveOrganization(HttpServletRequest request) {
        //获取参数
        FieldSetEntity fse = null;
        Object bean = request.getAttribute(CoreConst.API_POST_REQUEST_DATA);
        if (bean != null) {
            RequestParameterEntity reqp = (RequestParameterEntity) bean;
            fse = reqp.getFormData();
        }
        //判断参数是否为空
        if (fse == null) {
            SpringMVCContextHolder.getSystemLogger().error(SystemCode.SYSTEM_FORM_NODATA.getValue(), SystemCode.SYSTEM_FORM_NODATA.getText());
            return this
                    .error(SystemCode.SYSTEM_FORM_NODATA.getValue(), SystemCode.SYSTEM_FORM_NODATA.getText());
        }
 
        try {
            ISelectPersonnelService service = (ISelectPersonnelService) getProxyInstance(selectPersonnelService);
            String uuid = service.saveOrganization(fse);
            if (uuid != null && !uuid.isEmpty()) {
                JSONObject object = new JSONObject();
                object.put("uuid", uuid);
                return ResultInfo.success(object);
            } else {
                SpringMVCContextHolder.getSystemLogger().error(SystemCode.SYSTEM_SAVE_ORGAMIZTION_ERROR.getValue(), SystemCode.SYSTEM_SAVE_ORGAMIZTION_ERROR.getText());
                return error(SystemCode.SYSTEM_SAVE_ORGAMIZTION_ERROR.getValue(), SystemCode.SYSTEM_SAVE_ORGAMIZTION_ERROR.getText());
            }
        } catch (BaseException e) {
            SpringMVCContextHolder.getSystemLogger().error(e);
            return this.error(e);
        } catch (Exception e) {
            SpringMVCContextHolder.getSystemLogger().error(e);
            return error(SystemCode.SYSTEM_SAVE_ORGAMIZTION_ERROR.getValue(), SystemCode.SYSTEM_SAVE_ORGAMIZTION_ERROR.getText());
        }
    }
 
    /**
     * 获取已经选择的人员,部门,组织架构,岗位。
     */
    @RequestMapping(value = "/get-at-present-organization/{version}", method = RequestMethod.POST)
    @ApiVersion(1)
    public String getAtPresentOrganization(HttpServletRequest request) {
        //获取参数
        FieldSetEntity fse = null;
        Object bean = request.getAttribute(CoreConst.API_POST_REQUEST_DATA);
        if (bean != null) {
            RequestParameterEntity reqp = (RequestParameterEntity) bean;
            fse = reqp.getFormData();
        }
        //判断参数是否为空
        if (fse == null) {
            SpringMVCContextHolder.getSystemLogger().error(SystemCode.SYSTEM_FORM_NODATA.getValue(), SystemCode.SYSTEM_FORM_NODATA.getText());
            return this.error(SystemCode.SYSTEM_FORM_NODATA.getValue(), SystemCode.SYSTEM_FORM_NODATA.getText());
        }
        try {
            JSONArray array = selectPersonnelService.getAtPresentOrganization(fse);
            if (array == null) {
                return OK();
            }
            return ResultInfo.success(array);
        } catch (BaseException e) {
            SpringMVCContextHolder.getSystemLogger().error(e);
            return this.error(e);
        } catch (Exception e) {
            SpringMVCContextHolder.getSystemLogger().error(e);
            return error(SystemCode.SYSTEM_GET_ORGAMIZTION_ERROR.getValue(), SystemCode.SYSTEM_GET_ORGAMIZTION_ERROR.getText());
        }
    }
 
}