This commit is contained in:
wangjinlei
2024-07-17 17:02:49 +08:00
parent 2632d3a22c
commit c57077e35f
6 changed files with 49 additions and 6 deletions

View File

@@ -683,7 +683,7 @@ class Auto extends Base
public function add_reviewer($article)
{
$journal_info = $this->journal_obj->where('journal_id', $article['journal_id'])->find();
$editor_info = $this->user_obj->where('user_id', $article['editor_id'])->find();
$editor_info = $this->user_obj->where('user_id', $journal_info['editor_id'])->find();
//根据文章筛选候选人
$reviewer = $this->chose_reviewer($article);