|
|
|
@ -53,7 +53,7 @@ public class OutSignSyncAction implements Action {
|
|
|
|
|
if (StringUtils.isNotBlank(sjjsrq)) {
|
|
|
|
|
endDate = sjjsrq;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bb.writeLog("start to handle data.");
|
|
|
|
|
if (StringUtils.isNotBlank(startDate) && StringUtils.isNotBlank(endDate) && StringUtils.isNotBlank(resourceid)) {
|
|
|
|
|
// 内部同行人也要考虑
|
|
|
|
|
if (StringUtils.isNotBlank(nbtxr)) {
|
|
|
|
@ -71,9 +71,9 @@ public class OutSignSyncAction implements Action {
|
|
|
|
|
String signinfo = Util.null2String(rs.getString("signinfo"));
|
|
|
|
|
infos.add(signinfo);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bb.writeLog("infos is:" + infos);
|
|
|
|
|
for (String inf : infos) {
|
|
|
|
|
if (inf != null) {
|
|
|
|
|
if (StringUtils.isNotEmpty(inf)) {
|
|
|
|
|
Map<String, Object> in = mapStringToMap(inf);
|
|
|
|
|
String userId = Util.null2String(in.get("userId"));
|
|
|
|
|
String userType = Util.null2String(in.get("userType"));
|
|
|
|
@ -115,7 +115,7 @@ public class OutSignSyncAction implements Action {
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} catch (Exception e) {
|
|
|
|
|
bb.writeLog("OutSignSyncAction Exception: " + e);
|
|
|
|
|
bb.writeLog("OutSignSyncAction Exception: " + e.getMessage());
|
|
|
|
|
return Action.FAILURE_AND_CONTINUE;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|