This commit is contained in:
wangjinlei
2023-12-25 14:46:05 +08:00
parent 47d1eaa0e5
commit 98c6e56d7f

View File

@@ -379,6 +379,7 @@ class Reviewer extends Base
$files['manuscript'] = $this->article_file_obj->where('article_id',$article_info['article_id'])->where('type_name',"manuscirpt")->order("ctime")->select();
$files['figures'] = $this->article_file_obj->where('article_id',$article_info['article_id'])->where('type_name',"picturesAndTables")->order("ctime")->select();
$files['supplementary'] = $this->article_file_obj->where('article_id',$article_info['article_id'])->where('type_name',"supplementary")->order("ctime")->select();
$re['files'] = $files;
$re['article_info'] = $article_info;