首节已办发送

This commit is contained in:
fang 2025-07-02 18:50:26 +08:00
parent e596019958
commit 05c555b621
1 changed files with 3 additions and 3 deletions

View File

@ -76,7 +76,7 @@ public class BacklogServiceHandle extends AbstractServiceHandler {
return; return;
}*/ }*/
// 发送首节的已办 // 发送首节的已办
sendToDo(ctx,todoInfo); sendToDo(ctx);
} catch (Exception e) { } catch (Exception e) {
logger.info("###获得缓存失败,发送首节的已办失败:" + e.getMessage()+" ctx:"+ctx.toString()+" ctx.getBusinessKey"+ctx.getBusinessKey()); logger.info("###获得缓存失败,发送首节的已办失败:" + e.getMessage()+" ctx:"+ctx.toString()+" ctx.getBusinessKey"+ctx.getBusinessKey());
} }
@ -140,7 +140,7 @@ public class BacklogServiceHandle extends AbstractServiceHandler {
* 首节已办数据发送 * 首节已办数据发送
* @param ctx 信息 * @param ctx 信息
*/ */
private void sendToDo(MessageContext ctx,ToDoInfo todoInfo) { private void sendToDo(MessageContext ctx) {
logger.info("###进入首节已办推送方法"); logger.info("###进入首节已办推送方法");
String accountId = System.getProperty("backlog-accountid"); String accountId = System.getProperty("backlog-accountid");
Object shkd_type = SystemParamServiceHelper.getPublicParameter("shkd_type"); Object shkd_type = SystemParamServiceHelper.getPublicParameter("shkd_type");
@ -245,7 +245,7 @@ public class BacklogServiceHandle extends AbstractServiceHandler {
throw new KDException(errorCode, e); throw new KDException(errorCode, e);
} }
//判断是否移动端 //判断是否移动端
boolean allowMobApprove = allowMobApprove(ctx,todoInfo); boolean allowMobApprove = allowMobApprove(next.get("fid"));
if (allowMobApprove) { if (allowMobApprove) {
continue; continue;
} }