This commit is contained in:
@@ -5,6 +5,10 @@ namespace app\api\controller;
|
||||
use think\Controller;
|
||||
use think\Db;
|
||||
|
||||
/**
|
||||
* @title 文章接口
|
||||
* @description 文章接口
|
||||
*/
|
||||
class Article extends Controller {
|
||||
|
||||
protected $article_obj = '';
|
||||
@@ -78,7 +82,22 @@ class Article extends Controller {
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取文章列表(编辑)
|
||||
* @title 获取文章列表(编辑)
|
||||
* @description 获取文章列表(编辑)
|
||||
* @author wangjinlei
|
||||
* @url /api/Article/getArticleForEditor
|
||||
* @method POST
|
||||
*
|
||||
* @param name:username type:string require:1 desc:编辑用户名
|
||||
* @param name:journal type:int require:1 desc:期刊id
|
||||
* @param name:state type:int require:1 desc:状态
|
||||
* @param name:act type:int require:1 desc:1进行中2已完成
|
||||
* @param name:sn type:string require:0 desc:流水号
|
||||
* @param name:pageIndex type:int require:1 desc:当前页码
|
||||
* @param name:pageSize type:int require:1 desc:每个页面的数据条数
|
||||
*
|
||||
* @return articles:文章列表#
|
||||
* @return count:总数#
|
||||
*/
|
||||
public function getArticleForEditor() {
|
||||
//接受参数
|
||||
@@ -101,6 +120,9 @@ class Article extends Controller {
|
||||
$where['t_article.state'] = array('in',[3,5]);
|
||||
}
|
||||
}
|
||||
if(isset($data['sn'])&& trim($data['sn'])!=""){
|
||||
$where["t_article.accept_sn"] = trim($data['sn']);
|
||||
}
|
||||
if ($data['name'] != '') {
|
||||
$where['t_article.title'] = array('like', "%" . $data['name'] . "%");
|
||||
}
|
||||
@@ -246,6 +268,7 @@ class Article extends Controller {
|
||||
$where['article_id'] = $data['articleId'];
|
||||
$up_res = $this->article_obj->where($where)->update($inset_data);
|
||||
$article_info = $this->article_obj->where($where)->find();
|
||||
$journal_info = $this->journal_obj->where("journal_id",$article_info["journal_id"])->find();
|
||||
|
||||
//更新作者信息
|
||||
$aids = [];
|
||||
@@ -321,7 +344,7 @@ class Article extends Controller {
|
||||
$log_res=$this->user_log_obj->insert($log_data);
|
||||
|
||||
//增加usermsg
|
||||
$umsg_res=add_usermsg($article_info['editor_id'], 'The manuscript has new process: ' . $article_info['title'], '/articleDetailEditor?id=' . $article_info['article_id']);
|
||||
$umsg_res=add_usermsg($journal_info['editor_id'], 'The manuscript has new process: ' . $article_info['title'], '/articleDetailEditor?id=' . $article_info['article_id']);
|
||||
|
||||
if($up_res&&$msg_res&&$res1&&$res2&&$res3&&$res4&&$log_res&&$umsg_res){
|
||||
Db::commit();
|
||||
@@ -380,10 +403,11 @@ class Article extends Controller {
|
||||
sendEmail($editor_info['email'], $journal_info['title'], $journal_info['title'], $tt,$journal_info['email'],$journal_info['epassword']);
|
||||
|
||||
//添加usermsg
|
||||
add_usermsg($article_info['editor_id'], 'Manuscript authors be changed,please contact the author to confirm.', 'articleDetailEditor?id='.$data['articleId']);
|
||||
add_usermsg($journal_info['editor_id'], 'Manuscript authors be changed,please contact the author to confirm.', 'articleDetailEditor?id='.$data['articleId']);
|
||||
|
||||
return json(['code' => 0]);
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* 修改文章状态(编辑)
|
||||
@@ -433,7 +457,7 @@ class Article extends Controller {
|
||||
$tt .= $article_info['accept_sn'].'<br>';
|
||||
$tt .= 'journal:'.$journal_info['title'].'<br>';
|
||||
|
||||
$tt .= 'Dear '.($user_rev_info==null||$user_rev_info['technical']=="Others"||$user_rev_info['technical']==""?"Dr.":$user_rev_info['technical']).($user_info['realname']==''?'Authors':$user_info['realname']).',<br>';
|
||||
$tt .= 'Dear '.($user_rev_info==null||$user_rev_info['technical']=="Others"||$user_rev_info['technical']==""?"Dr.":$user_rev_info['technical']).($user_info['realname']==''?$user_info['account']:$user_info['realname']).',<br>';
|
||||
$tt .= 'Thank you for submitting your paper to '.$journal_info['title'].'. Your manuscript has undergone review.<br>';
|
||||
$tt .= 'Unfortunately the editors feel that '.$journal_info['title'].' is not the appropriate venue for your manuscript. You munuscript will transfer to journal - '.$tran_journal['title'].' as you co-submitting chose order.If you have questions about the Co-submission process, please contact publisher@tmrjournals.com within 48 hours.<br><br>Yours sincerely,<br><br>';
|
||||
$tt .= 'Sincerely,<br>Editorial Office<br>';
|
||||
@@ -464,9 +488,15 @@ class Article extends Controller {
|
||||
$this->article_obj->where($where_article)->update(['editor_act'=>1]);
|
||||
return json(['code' => 0]);
|
||||
}
|
||||
//更新文章状态
|
||||
$update_data['state'] = $data['state'];
|
||||
$update_data['editor_act'] = 1;
|
||||
//更新文章状态
|
||||
if($data['state']==4){
|
||||
$update_data['ttime'] = time();
|
||||
}
|
||||
if($data['state']==3){
|
||||
$update_data['rstime'] = time();
|
||||
}
|
||||
$this->article_obj->where($where_article)->update($update_data);
|
||||
}
|
||||
|
||||
@@ -477,7 +507,7 @@ class Article extends Controller {
|
||||
$tt = '"'.$article_info['title'].'"<br>';
|
||||
$tt .= $article_info['accept_sn'].'<br>';
|
||||
$tt .= 'journal:'.$journal_info['title'].'<br>';
|
||||
$tt .= 'Dear '.($user_rev_info==null||$user_rev_info['technical']=="Others"||$user_rev_info['technical']==""?"Dr.":$user_rev_info['technical']).($user_info['realname']==''?'Authors':$user_info['realname']).',<br>';
|
||||
$tt .= 'Dear '.($user_rev_info==null||$user_rev_info['technical']=="Others"||$user_rev_info['technical']==""?"Dr.":$user_rev_info['technical']).($user_info['realname']==''?$user_info['account']:$user_info['realname']).',<br>';
|
||||
$tt .= 'Thank you for submitting your paper to '.$journal_info['title'].'. Your manuscript has undergone review.<br>';
|
||||
$tt .= 'Unfortunately the editors feel that '.$journal_info['title'].' is not the appropriate venue for your manuscript,'
|
||||
. ' and we are returning your manuscript to you so that you can submit it to another journal without delay. '
|
||||
@@ -512,23 +542,23 @@ class Article extends Controller {
|
||||
$tt = 'Manuscript ID: '.$article_info['accept_sn'].'<br>';
|
||||
$tt .= 'Manuscript Title: '.$article_info['title'].'<br>';
|
||||
$tt .= 'Authors’ Name: '.self::getArticleAuthors($article_info['article_id']).'<br><br>';
|
||||
$tt .= 'Dear '.($user_rev_info==null||$user_rev_info['technical']=="Others"||$user_rev_info['technical']==""?"Dr.":$user_rev_info['technical']).($user_info['realname']==''?'Authors':$user_info['realname']).',<br>It is a distinct pleasure to inform you that your manuscript has been accepted for publication in '.$journal_info['title'].' (ISSN '.$journal_info['issn'].').<br> The editor will contact you further by email soon.<br><br><br>';
|
||||
$tt .= 'Dear '.($user_rev_info==null||$user_rev_info['technical']=="Others"||$user_rev_info['technical']==""?"Dr.":$user_rev_info['technical']).($user_info['realname']==''?$user_info['account']:$user_info['realname']).',<br>It is a distinct pleasure to inform you that your manuscript has been accepted for publication in '.$journal_info['title'].' (ISSN '.$journal_info['issn'].').<br> The editor will contact you further by email soon.<br><br><br>';
|
||||
$tt .= 'Sincerely,<br>Editorial Office<br>';
|
||||
}else if($data['state']==4){//退修
|
||||
$tt = $article_info['accept_sn'].'<br>';
|
||||
$tt .= 'Dear '.($user_rev_info==null||$user_rev_info['technical']=="Others"||$user_rev_info['technical']==""?"Dr.":$user_rev_info['technical']).($user_info['realname']==''?'Authors':$user_info['realname']).',<br>';
|
||||
$tt .= 'Dear '.($user_rev_info==null||$user_rev_info['technical']=="Others"||$user_rev_info['technical']==""?"Dr.":$user_rev_info['technical']).($user_info['realname']==''?$user_info['account']:$user_info['realname']).',<br>';
|
||||
$tt .= 'Thank you for submitting the manuscript to '.$journal_info['title'].'. <br>';
|
||||
$tt .= 'Please find the new comments in the "<a href="http://submission.tmrjournals.com/submission?journal='.$journal_info['alias'].'">Author Center</a>", Please submit your revised manuscript within two weeks.<br><br>';
|
||||
$tt .= 'If you need more time to revise, you can send E-mial to tell us.<br>';
|
||||
$tt .= 'Sincerely,<br>Editorial Office<br>';
|
||||
}else if($data['state']==6){//终审
|
||||
$tt = 'Dear '.($user_rev_info==null||$user_rev_info['technical']=="Others"||$user_rev_info['technical']==""?"Dr.":$user_rev_info['technical']).($user_info['realname']==''?'Authors':$user_info['realname']).',<br>';
|
||||
$tt = 'Dear '.($user_rev_info==null||$user_rev_info['technical']=="Others"||$user_rev_info['technical']==""?"Dr.":$user_rev_info['technical']).($user_info['realname']==''?$user_info['account']:$user_info['realname']).',<br>';
|
||||
$tt .= 'Manuscript status: Your manuscript "'.$article_info['title'].'" is under reviewing by editorial member team of '.$journal_info['title'].'.';
|
||||
}else{
|
||||
$tt = '"'.$article_info['title'].'"<br>';
|
||||
$tt .= $article_info['accept_sn'].'<br>';
|
||||
$tt .= 'journal:'.$journal_info['title'].'<br><br>';
|
||||
$tt .= 'Dear '.($user_info['realname']==''?'Authors':$user_info['realname']).',<br>Please check the new status of your manuscript online.<br><br>';
|
||||
$tt .= 'Dear '.($user_info['realname']==''?$user_info['account']:$user_info['realname']).',<br>Please check the new status of your manuscript online.<br><br>';
|
||||
}
|
||||
$tt .= $journal_info['title'].'<br>';
|
||||
$tt .= '<a href="https://www.tmrjournals.com/draw_up.html?issn='.$journal_info['issn'].'">Subscribe to this journal</a><br>';
|
||||
@@ -818,7 +848,12 @@ class Article extends Controller {
|
||||
}
|
||||
|
||||
$journal_info = $this->journal_obj->where('journal_id', $data['journal'])->find();
|
||||
|
||||
|
||||
//首先查重是否重复投稿
|
||||
$checkArticle = $this->article_obj->where("title",trim($data['title']))->find();
|
||||
if($checkArticle!=null){
|
||||
return json(['code'=>1,'msg'=>'Warning: you re-submitting the article!']);
|
||||
}
|
||||
Db::startTrans();
|
||||
|
||||
//添加文章基础信息
|
||||
@@ -890,7 +925,7 @@ class Article extends Controller {
|
||||
sendEmail($editor_info['email'], $journal_info['title'], $journal_info['title'], $tt,$journal_info['email'],$journal_info['epassword']);
|
||||
$user_rev_info = $this->user_reviewer_info_obj->where("reviewer_id",$user_res['user_id'])->find();
|
||||
//发送邮件给作者,表示感谢
|
||||
$tt1 = 'Dear '.($user_rev_info==null||$user_rev_info['technical']=="Others"||$user_rev_info['technical']==""?"Dr.":$user_rev_info['technical']).($user_res['realname']==''?'Authors':$user_res['realname']).',<br><br>';
|
||||
$tt1 = 'Dear '.($user_rev_info==null||$user_rev_info['technical']=="Others"||$user_rev_info['technical']==""?"Dr.":$user_rev_info['technical']).($user_res['realname']==''?$user_res['account']:$user_res['realname']).',<br><br>';
|
||||
$tt1 .= 'Thank you for submitting your manuscript entitled "'.$data['title'].'". Your submission has been assigned the following tracking number:'.$inset_data['accept_sn'].'. We will be in touch again as soon as we have reached a decision. Please quote the tracking number in any communication. This e-mail simply acknowledges receipt of your submission. If the editors decide for editorial reasons that the paper is unsuitable for publication in '.$journal_info['title'].', you will be informed as soon as possible.<br><br><br>';
|
||||
if($journal_info['journal_id']==9){//life research 期刊发送收到文章邮件
|
||||
$tt1 .= 'Life Research applies the CC BY-NC 4.0 license. Full details of the policy can be found at https://www.tmrjournals.com/notice.html?J_num=14&footer_id=123. Authors should read Guide to Authors carefully before submitting.<br><br>';
|
||||
@@ -990,7 +1025,7 @@ class Article extends Controller {
|
||||
*/
|
||||
public function getReviewerList() {
|
||||
$data = $this->request->post();
|
||||
$limit_start = $data['pageIndex'] == 1 ? 0 : ($data['pageIndex'] - 1) * $data['pageSize'] - 1;
|
||||
$limit_start = ($data['pageIndex'] - 1) * $data['pageSize'];
|
||||
$where['t_article_reviewer.article_id'] = $data['articleId'];
|
||||
$res = $this->article_reviewer_obj->field('t_article_reviewer.*,t_user.email,t_user.account reviewer,t_user_reviewer_info.country country,t_user_reviewer_info.field,t_user_reviewer_info.company,t_reviewer_major.title major_title,t_reviewer_major.ctitle major_ctitle')
|
||||
->join('t_user', 't_article_reviewer.reviewer_id = t_user.user_id', 'LEFT')
|
||||
|
||||
Reference in New Issue
Block a user