优化消息推送逻辑

Signed-off-by: vilson <545522390@qq.com>
This commit is contained in:
vilson 2019-07-18 16:19:39 +08:00
parent efbd476378
commit 4e324bd199

View File

@ -264,7 +264,9 @@ class Task
}
}
//通知所有组织内的成员
$project = \app\common\Model\Project::where(['code' => $task['project_code']])->field('organization_code')->find();
$messageService->sendToGroup($project['organization_code'], $socketGroupMessage, 'organization:task');
if (isOpenNoticePush()) {
$project = \app\common\Model\Project::where(['code' => $task['project_code']])->field('organization_code')->find();
$messageService->sendToGroup($project['organization_code'], $socketGroupMessage, 'organization:task');
}
}
}