20201112
This commit is contained in:
@@ -692,6 +692,7 @@ class Article extends Controller {
|
|||||||
$tt .= 'Thank you for your consideration.<br> Look forward for your reply.<br>';
|
$tt .= 'Thank you for your consideration.<br> Look forward for your reply.<br>';
|
||||||
$tt .= '<a href="http://submission.tmrjournals.com/submission?journal='.$journal_info['alias'].'">Reviewer Center</a><br>';
|
$tt .= '<a href="http://submission.tmrjournals.com/submission?journal='.$journal_info['alias'].'">Reviewer Center</a><br>';
|
||||||
$tt .= 'Your username:'.$reviewer_info['account'].'<br><br>';
|
$tt .= 'Your username:'.$reviewer_info['account'].'<br><br>';
|
||||||
|
$tt .= 'Your original password:123456qwe , if you have reset the password, please login with the new one or click the "<a href="https://submission.tmrjournals.com/retrieve">forgot password</a>".<br>';
|
||||||
$tt .= 'Sincerely,<br>Editorial Office<br>';
|
$tt .= 'Sincerely,<br>Editorial Office<br>';
|
||||||
$tt .= $journal_info['title'].'<br>';
|
$tt .= $journal_info['title'].'<br>';
|
||||||
$tt .= 'Email:'.$journal_info['email'].'<br>';
|
$tt .= 'Email:'.$journal_info['email'].'<br>';
|
||||||
|
|||||||
@@ -48,12 +48,13 @@ class Super extends Controller{
|
|||||||
$end_time = strtotime($data['end'].' 23:59:59');
|
$end_time = strtotime($data['end'].' 23:59:59');
|
||||||
$list = $this->journal_obj->where('state',0)->select();
|
$list = $this->journal_obj->where('state',0)->select();
|
||||||
foreach ($list as $k => $v){
|
foreach ($list as $k => $v){
|
||||||
|
$list[$k]['SGRSL'] = $this->getSGRSL($v['journal_id']);
|
||||||
$list[$k]['LYL'] = $this->getLYL($v['journal_id'],$start_time,$end_time);
|
$list[$k]['LYL'] = $this->getLYL($v['journal_id'],$start_time,$end_time);
|
||||||
$list[$k]['CC'] = $this->getCC($v['journal_id'],$start_time,$end_time);
|
$list[$k]['CC'] = $this->getCC($v['journal_id'],$start_time,$end_time);
|
||||||
$list[$k]['WS'] = $this->getWS($v['journal_id'],$start_time,$end_time);
|
$list[$k]['WS'] = $this->getWS($v['journal_id'],$start_time,$end_time);
|
||||||
$list[$k]['SJ'] = $this->getSJ($v['journal_id'],$start_time,$end_time);
|
$list[$k]['SJ'] = $this->getSJ($v['journal_id'],$start_time,$end_time);
|
||||||
}
|
}
|
||||||
return jsonSuccess($list);
|
return json($list);
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getAllArticle(){
|
public function getAllArticle(){
|
||||||
@@ -97,6 +98,14 @@ class Super extends Controller{
|
|||||||
return jsonSuccess($re);
|
return jsonSuccess($re);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取审稿人数量
|
||||||
|
*/
|
||||||
|
private function getSGRSL($journal_id){
|
||||||
|
$res = $this->reviewer_to_journal_obj->where('journal_id',$journal_id)->where('state',0)->select();
|
||||||
|
return count($res);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 获取录用率
|
* 获取录用率
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user