Commit a72f39c3 by lal Committed by chenzg

提交

parent 0d8dff2b
...@@ -592,25 +592,32 @@ public class TimeCardController { ...@@ -592,25 +592,32 @@ public class TimeCardController {
kqglassokqj.setLusjTime(new Date().getTime()); kqglassokqj.setLusjTime(new Date().getTime());
kqglassokqj.setQyid(userBean.getOrgCode()); kqglassokqj.setQyid(userBean.getOrgCode());
if(!kqglassokqj.insert()) KqglAssoKqj kqj = KqglAssoKqj.builder().build().selectOne(new QueryWrapper<KqglAssoKqj>().lambda().eq(KqglAssoKqj::getCode, kqglassokqj.getCode()));
return ResultUtil.error("操作失败--新增考勤机"); if(kqj == null) {
if(!kqglassokqj.insert())
String url = mac_command+"/addDev"; return ResultUtil.error("操作失败--新增考勤机");
HttpHeaders headers = new HttpHeaders();
MultiValueMap<String, Object> params = new LinkedMultiValueMap<>(); String url = mac_command+"/addDev";
params.add("orgCode", kqglassokqj.getType()); HttpHeaders headers = new HttpHeaders();
params.add("devId", kqglassokqj.getCode()); MultiValueMap<String, Object> params = new LinkedMultiValueMap<>();
RestTemplate restTemplate = new RestTemplate(); params.add("orgCode", kqglassokqj.getType());
HttpEntity httpEntity = new HttpEntity(params, headers); params.add("devId", kqglassokqj.getCode());
try { RestTemplate restTemplate = new RestTemplate();
ResponseEntity<String> request = restTemplate.postForEntity(url, httpEntity, String.class); HttpEntity httpEntity = new HttpEntity(params, headers);
System.err.print(request.getBody()); try {
} catch (RestClientException e) { ResponseEntity<String> request = restTemplate.postForEntity(url, httpEntity, String.class);
System.err.println("提示:考勤机服务出错"); System.err.print(request.getBody());
return ResultUtil.success("失败"); } catch (RestClientException e) {
System.err.println("提示:考勤机服务出错");
return ResultUtil.success("失败");
}
return ResultUtil.data(kqglassokqj,"操作成功!");
}else {
return ResultUtil.error("考勤机已存在或已被使用");
} }
return ResultUtil.data(kqglassokqj,"操作成功!");
} }
/** /**
...@@ -2176,6 +2183,8 @@ public class TimeCardController { ...@@ -2176,6 +2183,8 @@ public class TimeCardController {
} }
} }
// @GetMapping(value = "/summary_report") // @GetMapping(value = "/summary_report")
// @ApiOperation(value = "考勤汇总报表(暂时不用)", httpMethod = "GET", notes = "接口发布说明") // @ApiOperation(value = "考勤汇总报表(暂时不用)", httpMethod = "GET", notes = "接口发布说明")
// public Result<Object> attendance_summary_report() { // public Result<Object> attendance_summary_report() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment