This commit is contained in:
wangjinlei
2022-05-16 12:18:31 +08:00
parent 464d3b4cdf
commit 154f90ce3d
3 changed files with 44 additions and 13 deletions

View File

@@ -718,12 +718,12 @@ class Reviewer extends Controller
}
//添加文章状态信息
$insert_data['article_id'] = $article_info['article_id'];
$insert_data['content'] = 'Comments from the reviewer has been received';
$insert_data['state_from'] = $article_info['state'];
$insert_data['state_to'] = $article_info['state'];
$insert_data['ctime'] = time();
$this->article_msg_obj->insert($insert_data);
$in_data['article_id'] = $article_info['article_id'];
$in_data['content'] = 'Comments from the reviewer has been received';
$in_data['state_from'] = $article_info['state'];
$in_data['state_to'] = $article_info['state'];
$in_data['ctime'] = time();
$this->article_msg_obj->insert($in_data);
//记录log
//生成pdf文件
@@ -1006,12 +1006,12 @@ class Reviewer extends Controller
sendEmail($user_info['email'], $journal_info['title'], $journal_info['title'], $tt, $journal_info['email'], $journal_info['epassword']);
//添加文章状态信息
$insert_data['article_id'] = $article_info['article_id'];
$insert_data['content'] = 'The reviewer has been appointed';
$insert_data['state_from'] = $article_info['state'];
$insert_data['state_to'] = $article_info['state'];
$insert_data['ctime'] = time();
$this->article_msg_obj->insert($insert_data);
$in_data['article_id'] = $article_info['article_id'];
$in_data['content'] = 'The reviewer has been appointed';
$in_data['state_from'] = $article_info['state'];
$in_data['state_to'] = $article_info['state'];
$in_data['ctime'] = time();
$this->article_msg_obj->insert($in_data);
$re['art_rev_id'] = $res;