@@ -37,6 +37,7 @@ public class EssPdfServiceImpl implements EssPdfService {
//同时盖多个章有先后顺序 目前设置 先盖骑缝章再盖普通章
+ // 骑缝章不能重复盖章,接口会报错 普通章是可以重复盖章的
public void init() throws Exception {
// http://223.70.139.221:8888
// 测试环境相关信息如下,请注意查收:
@@ -108,6 +108,10 @@ public class ToDoMessagePushJob extends BaseJob2 {
// 添加过期事务表数据
addGqswData(task , taskId , createTime , send);
+ // delete processed task message
+ String sQL = "delete from ibps_msg_inner where task_id_ <>'' and task_id_ not in(select id_ from ibps_bpm_tasks)";
+ commonDao.execute(sQL);
+
}