This commit is contained in:
wangjinlei
2021-07-15 10:22:44 +08:00
parent 234745046d
commit 8ea54fdcc2
7 changed files with 12 additions and 176 deletions

View File

@@ -88,15 +88,6 @@ class Reviewer extends Controller {
public function articleReviewerUpSubmit($type) {
//接受参数,查询信息
$data = $this->request->post();
// $data['article'] = "dsadsaddsa";
// $data['articlefile'] = "articlefile/20200729/6e81db641bcf80bfcd2c9228cbb9ce71.docx";
// $data['articlezip'] = '';
// $data['artrevid'] = 1;
// $data['ctime'] = "1595993462";
// $data['editor'] = 'pipixia';
// $data['reviewer'] = 'nv';
// $data['state'] = 0;
$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();
@@ -273,18 +264,10 @@ class Reviewer extends Controller {
$tt1 .= 'Regards<br>Editorial Office<br>'.$journal_info['title'].'<br><br>';
$tt1 .= 'Contact us<br>TMR Publishing Group Address: 11 Cockle Bay Rd, Cockle Bay, Auckland 2014, New Zealand<br>Telephone: +64 02108293806<br>E-mail: publisher@tmrjournals.com';
sendEmail($reviewer_info['email'],'Your contribution is greatly appreciated', $journal_info['title'], $tt1,$journal_info['email'],$journal_info['epassword'],$reviewer_pdf);
//记录usermsg
add_usermsg($article_info['editor_id'], 'Feedback questionnaire be unloaded.', '/articleReviewerDetail?id='.$data['art_rev_id']);
// if ($res) {
return json(['code' => 0]);
// } else {
// return json(['code' => 1]);
// }
}
/**
@@ -334,16 +317,6 @@ class Reviewer extends Controller {
return $this->article_reviewer_file_obj->insert($insert_data);
}
// public function mytest(){
//
// $journal_info = $this->journal_obj->where('journal_id',1)->find();
// $ttt = self::pdftest('TMR');
// $tt1 = 'You have reviewed 1 submission in the journal '.$journal_info['title'].' during '.date('Y').'.Thank you for your support to our journal. This contribution is greatly appreciated.<br><br>';
// $tt1 .= 'Regards<br>Editorial Office<br>'.$journal_info['title'].'<br><br>';
// $tt1 .= 'Contact us<br>TMR Publishing Group Address: 11 Cockle Bay Rd, Cockle Bay, Auckland 2014, New Zealand<br>Telephone: +64 02108293806<br>E-mail: publisher@tmrjournals.com';
// sendEmail('751475802@qq.com','Your contribution is greatly appreciated', $journal_info['title'], $tt1,$journal_info['email'],$journal_info['epassword'],$ttt);
// }
//
/**
* 生成pdf感谢reviewer
*/