|
|
|
@ -56,20 +56,18 @@ public class OutSignSyncAction implements Action {
|
|
|
|
|
if (StringUtils.isNotBlank(nbtxr)) {
|
|
|
|
|
resourceid = resourceid + "," + nbtxr;
|
|
|
|
|
}
|
|
|
|
|
bb.writeLog("OutSignSyncAction-" + resourceid);
|
|
|
|
|
RecordSet rs = new RecordSet();
|
|
|
|
|
List<String> infos = new ArrayList<>();
|
|
|
|
|
String acqOutSignSql = "select a.id, c.signinfo " +
|
|
|
|
|
"from mobile_sign a " +
|
|
|
|
|
"left join uf_outsigntype c " +
|
|
|
|
|
"on c.outsignid = a.id " +
|
|
|
|
|
"where operate_date > '" + startDate + "' and operate_date < '" + endDate + "' and operate in (?) ";
|
|
|
|
|
"where operate_date > '" + startDate + "' and operate_date < '" + endDate + "' and operater in (?) ";
|
|
|
|
|
rs.executeQuery(acqOutSignSql, resourceid);
|
|
|
|
|
while (rs.next()) {
|
|
|
|
|
String signinfo = Util.null2String(rs.getString("signinfo"));
|
|
|
|
|
infos.add(signinfo);
|
|
|
|
|
}
|
|
|
|
|
bb.writeLog("OutSignSyncAction-infos-" + infos);
|
|
|
|
|
|
|
|
|
|
for (String inf : infos) {
|
|
|
|
|
if (inf != null) {
|
|
|
|
|