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

@@ -478,8 +478,8 @@ class Reviewer extends Base
$data = $this->request->post();
$artrev_info = $this->article_reviewer_obj->where('art_rev_id', $data['artrevid'])->find();
$article_info = $this->article_obj->where('article_id', $artrev_info['article_id'])->find();
$editor_info = $this->user_obj->where('user_id', $article_info['editor_id'])->find();
$journal_info = $this->journal_obj->where('journal_id', $article_info['journal_id'])->find();
$editor_info = $this->user_obj->where('user_id', $journal_info['editor_id'])->find();
if ($type == 'editor') {
$up_data['editor_act'] = 1;
$user_msg_url = '/reviewerArticleDetail?id=' . $data['artrevid'];