|
@@ -1,18 +1,15 @@
|
|
|
package org.fouram.service;
|
|
|
|
|
|
import java.util.Iterator;
|
|
|
-import java.util.List;
|
|
|
-import java.util.Map;
|
|
|
|
|
|
import org.fouram.core.base.service.BaseService;
|
|
|
import org.fouram.core.base.service.RequestService;
|
|
|
import org.fouram.core.util.JsonNodeUtil;
|
|
|
-import org.fouram.entity.SapUser;
|
|
|
+import org.fouram.entity.SapEmpTermination;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Service;
|
|
|
|
|
|
import com.fasterxml.jackson.databind.JsonNode;
|
|
|
-import com.google.common.collect.Maps;
|
|
|
|
|
|
@Service
|
|
|
public class SapEmpTerminationService extends BaseService {
|
|
@@ -20,20 +17,28 @@ public class SapEmpTerminationService extends BaseService {
|
|
|
@Autowired
|
|
|
private RequestService requestService;
|
|
|
|
|
|
- public void setEndDate(List<SapUser> sapUsers) {
|
|
|
- String url = "https://api15.sapsf.cn/odata/v2/EmpEmploymentTermination?$filter=userId in %s&$format=json";
|
|
|
- url = String.format(url, getUserIds(sapUsers));
|
|
|
+ public void saveSapData() throws Exception {
|
|
|
+ String url = "https://api15.sapsf.cn/odata/v2/EmpEmploymentTermination?$format=json";
|
|
|
JsonNode node = requestService.getForObject(url, getHttpHeaders());
|
|
|
- Map<String, String> map = Maps.newHashMap();
|
|
|
if (node != null) {
|
|
|
Iterator<JsonNode> iterator = node.get("d").get("results").elements();
|
|
|
while (iterator.hasNext()) {
|
|
|
JsonNode userNode = iterator.next();
|
|
|
- map.put(JsonNodeUtil.getValue(userNode, "userId"), JsonNodeUtil.getValue(userNode, "endDate"));
|
|
|
+ String userId = JsonNodeUtil.getValue(userNode, "userId");
|
|
|
+ String endDate = JsonNodeUtil.getValue(userNode, "endDate");
|
|
|
+ if(selectOneByUserId(userId) == null) {
|
|
|
+ SapEmpTermination entity = SapEmpTermination.builder().userId(userId).endDate(endDate).build();
|
|
|
+ save("SapEmpTerminationMapper.save", entity);
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
- for (SapUser sapUser : sapUsers) {
|
|
|
- sapUser.setEndDate(map.get(sapUser.getUserId()));
|
|
|
- }
|
|
|
+ }
|
|
|
+
|
|
|
+ public SapEmpTermination selectOneByUserId(String personId) throws Exception {
|
|
|
+ return (SapEmpTermination) findObject("SapEmpTerminationMapper.selectOneByUserId", personId);
|
|
|
+ }
|
|
|
+
|
|
|
+ public void updateAllUserEndDate() throws Exception {
|
|
|
+ update("SapEmpTerminationMapper.updateAllUserEndDate", null);
|
|
|
}
|
|
|
}
|