2013-08-29 07:53:31 +00:00
|
|
|
|
<?php
|
|
|
|
|
//生成西部数据中心离线申请表
|
|
|
|
|
|
|
|
|
|
use Helpers\View as view;
|
|
|
|
|
|
|
|
|
|
require_once('fpdf/chinese-unicode.php');
|
|
|
|
|
require_once('fpdi/fpdi.php');
|
|
|
|
|
class ApplicantPDF extends FPDI
|
|
|
|
|
{
|
|
|
|
|
public $template;//模板文件的路径
|
|
|
|
|
public $heihetemplate;//模板文件的路径
|
|
|
|
|
public $data;//包含具体的数据,数组
|
|
|
|
|
public $fontsize=10;
|
2013-09-05 01:50:29 +00:00
|
|
|
|
public $pdflink;
|
|
|
|
|
|
2013-08-29 07:53:31 +00:00
|
|
|
|
function __construct()
|
|
|
|
|
{
|
|
|
|
|
parent::__construct();
|
|
|
|
|
$this->AddUniGBhwFont('ugb','AdobeSongStd-Light-Acro');
|
|
|
|
|
}
|
|
|
|
|
function drawWestdc()
|
|
|
|
|
{
|
|
|
|
|
$pagecount = $this->setSourceFile($this->template);
|
|
|
|
|
$tplidx = $this->importPage(1);
|
|
|
|
|
$this->addPage();
|
2013-07-17 08:04:33 +00:00
|
|
|
|
$this->useTemplate($tplidx);
|
2013-08-29 07:53:31 +00:00
|
|
|
|
$this->SetFont('ugb','',$this->fontsize);
|
2014-06-23 03:42:57 +00:00
|
|
|
|
$this->setXY(86,41.5);
|
2013-08-29 07:53:31 +00:00
|
|
|
|
$this->Write($this->fontsize,$this->data['realname']);
|
|
|
|
|
$this->SetXY(34,55);
|
|
|
|
|
$this->MultiCell (166, 4, str_replace(";","\n",$this->data['westdclist']));
|
|
|
|
|
$this->setXY(30,100);
|
|
|
|
|
$this->MultiCell(166,4,trim($this->data['project']));
|
|
|
|
|
//$this->setXY(34,239);
|
|
|
|
|
//$this->Write($this->fontsize,$this->data['realname']);
|
2014-06-23 03:42:57 +00:00
|
|
|
|
$this->setXY(32,222);
|
2013-08-29 07:53:31 +00:00
|
|
|
|
$this->Write($this->fontsize,$this->data['unit']);
|
2014-06-23 03:42:57 +00:00
|
|
|
|
$this->setXY(112,222);
|
2013-08-29 07:53:31 +00:00
|
|
|
|
$this->Write($this->fontsize,$this->data['email']);
|
2014-06-23 03:42:57 +00:00
|
|
|
|
$this->setXY(174,222);
|
2013-08-29 07:53:31 +00:00
|
|
|
|
$this->Write($this->fontsize,$this->data['postcode']);
|
2014-06-23 03:42:57 +00:00
|
|
|
|
$this->setXY(32,228);
|
2013-08-29 07:53:31 +00:00
|
|
|
|
$this->Write($this->fontsize,$this->data['address']);
|
2014-06-23 03:42:57 +00:00
|
|
|
|
$this->setXY(112,228);
|
2013-08-29 07:53:31 +00:00
|
|
|
|
$this->Write($this->fontsize,$this->data['phone']);
|
|
|
|
|
$t=date("Y-m-d");
|
2014-06-23 03:42:57 +00:00
|
|
|
|
$this->setXY(174,228);
|
2013-08-29 07:53:31 +00:00
|
|
|
|
$this->Write($this->fontsize,$t);
|
|
|
|
|
}
|
|
|
|
|
function drawHeihe()
|
|
|
|
|
{
|
|
|
|
|
$pagecount = $this->setSourceFile($this->heihetemplate);
|
|
|
|
|
$tplidx = $this->importPage(1);
|
|
|
|
|
$this->addPage();
|
2013-07-17 08:04:33 +00:00
|
|
|
|
$this->useTemplate($tplidx);
|
2013-08-29 07:53:31 +00:00
|
|
|
|
$this->SetFont('ugb','',$this->fontsize);
|
|
|
|
|
$this->setXY(88,43);
|
|
|
|
|
$this->Write($this->fontsize,$this->data['realname']);
|
|
|
|
|
$this->SetXY(34,55);
|
|
|
|
|
$this->MultiCell (166, 4, str_replace(";","\n",$this->data['heihelist']));
|
|
|
|
|
$this->setXY(30,100);
|
|
|
|
|
$this->MultiCell(166,4,trim($this->data['project']));
|
|
|
|
|
//$this->setXY(34,239);
|
|
|
|
|
//$this->Write($this->fontsize,$this->data['realname']);
|
|
|
|
|
$this->setXY(32,223);
|
|
|
|
|
$this->Write($this->fontsize,$this->data['unit']);
|
|
|
|
|
$this->setXY(112,223);
|
|
|
|
|
$this->Write($this->fontsize,$this->data['email']);
|
|
|
|
|
$this->setXY(174,223);
|
|
|
|
|
$this->Write($this->fontsize,$this->data['postcode']);
|
|
|
|
|
$this->setXY(32,230);
|
|
|
|
|
$this->Write($this->fontsize,$this->data['address']);
|
|
|
|
|
$this->setXY(112,230);
|
|
|
|
|
$this->Write($this->fontsize,$this->data['phone']);
|
|
|
|
|
$t=date("Y-m-d");
|
|
|
|
|
$this->setXY(174,230);
|
|
|
|
|
$this->Write($this->fontsize,$t);
|
|
|
|
|
}
|
|
|
|
|
function addRef($mds)
|
|
|
|
|
{
|
|
|
|
|
$this->addPage();
|
|
|
|
|
$this->SetFont('ugb','B',20);
|
|
|
|
|
$this->ln();
|
|
|
|
|
$this->Cell(0,0,'附件:数据引用信息',0,2,'C');
|
|
|
|
|
$this->setY(30);
|
|
|
|
|
foreach($mds as $i=>$md)
|
|
|
|
|
{
|
|
|
|
|
$this->SetFont('ugb','',12);
|
|
|
|
|
$this->Write(5,($i+1).'. '.$md['title']);
|
|
|
|
|
$this->ln();
|
|
|
|
|
if ($md['reference'])
|
|
|
|
|
{
|
|
|
|
|
$this->Write(5,'【引用方式】'.$md['reference']);
|
|
|
|
|
$this->ln();
|
|
|
|
|
if (!empty($md['publish_year']))
|
|
|
|
|
{
|
|
|
|
|
$this->Write(5,'【数据的引用】'.substr($md['authors'],1,-1).'. '.$md['doititle'].'. '.$md['publisher'].', '
|
|
|
|
|
.(empty($md['ts_published'])?$md['publish_year']:date('Y',strtotime($md['ts_published']))).
|
|
|
|
|
'. doi:'.$md['datadoi'].' ['.str_replace('"','',substr($md['author_en'],1,-1)).'. '.$md['title_en']
|
|
|
|
|
.'. '.$md['publisher_en'].', '.(empty($md['ts_published'])?$md['publish_year']:date('Y',strtotime($md['ts_published']))).'. doi:'.$md['datadoi'].']');
|
|
|
|
|
$this->ln();
|
|
|
|
|
}
|
|
|
|
|
} elseif ($md['citation'])
|
|
|
|
|
{
|
|
|
|
|
$this->Write(5,'【引用方式】'.$md['citation']);
|
|
|
|
|
$this->ln();
|
|
|
|
|
if (!empty($md['publish_year']) && !strpos($md['citation'],$md['datadoi']))
|
|
|
|
|
{
|
|
|
|
|
$this->Write(5,'【数据的引用】'.substr($md['authors'],1,-1).'. '.$md['doititle'].'. '.$md['publisher'].', '
|
|
|
|
|
.(empty($md['ts_published'])?$md['publish_year']:date('Y',strtotime($md['ts_published']))).
|
|
|
|
|
'. doi:'.$md['datadoi'].' ['.str_replace('"','',substr($md['author_en'],1,-1)).'. '.$md['title_en']
|
|
|
|
|
.'. '.$md['publisher_en'].', '.(empty($md['ts_published'])?$md['publish_year']:date('Y',strtotime($md['ts_published']))).'. doi:'.$md['datadoi'].']');
|
|
|
|
|
$this->ln();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if ($md['suppinfo'] || $md['fund'])
|
|
|
|
|
{
|
|
|
|
|
$this->SetFont('ugb','I',10);
|
|
|
|
|
$p=(!empty($md['fund']))?$md['fund']:$md['suppinfo'];
|
|
|
|
|
$this->Write(5,'【项目信息】'.$p);
|
|
|
|
|
$this->ln();
|
|
|
|
|
}
|
|
|
|
|
$this->ln();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
function addSecurity($template_file)
|
|
|
|
|
{
|
|
|
|
|
$pagecount = $this->setSourceFile($template_file);
|
|
|
|
|
$tplidx = $this->importPage(1);
|
|
|
|
|
$this->addPage();
|
|
|
|
|
$this->useTemplate($tplidx);
|
|
|
|
|
$this->SetFont('ugb','B',14);
|
2015-12-10 05:08:45 +00:00
|
|
|
|
$this->setXY(46,49);
|
2013-08-29 07:53:31 +00:00
|
|
|
|
$this->Write(10,$this->data['realname']);
|
|
|
|
|
$this->SetFont('ugb','',12);
|
2015-12-10 05:08:45 +00:00
|
|
|
|
$this->setXY(123,190);
|
2013-08-29 07:53:31 +00:00
|
|
|
|
$this->Write(10,$this->data['realname']);
|
2015-12-10 05:08:45 +00:00
|
|
|
|
$this->setXY(123,196);
|
2013-08-29 07:53:31 +00:00
|
|
|
|
$this->Write($this->fontsize,$this->data['address']);
|
2015-12-10 05:08:45 +00:00
|
|
|
|
$this->setXY(123,203);
|
2013-08-29 07:53:31 +00:00
|
|
|
|
$this->Write($this->fontsize,$this->data['phone']);
|
2015-12-10 05:08:45 +00:00
|
|
|
|
$this->setXY(123,210);
|
2013-08-29 07:53:31 +00:00
|
|
|
|
$this->Write($this->fontsize,$this->data['email']);
|
|
|
|
|
$t=date("Y-m-d");
|
2015-12-10 05:08:45 +00:00
|
|
|
|
$this->setXY(32,235);
|
2013-08-29 07:53:31 +00:00
|
|
|
|
$this->Write($this->fontsize,$t);
|
2015-12-10 05:08:45 +00:00
|
|
|
|
$this->setXY(123,235);
|
2013-08-29 07:53:31 +00:00
|
|
|
|
$this->Write($this->fontsize,$t);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
//如果有dataservice内容,则添加
|
|
|
|
|
public function addSelection($data)
|
|
|
|
|
{
|
|
|
|
|
$line = array();
|
|
|
|
|
foreach($data as $k=>$v)
|
|
|
|
|
{
|
|
|
|
|
if(!empty($v['selection']))
|
|
|
|
|
{
|
|
|
|
|
$selection = json_decode($v['selection'],true);
|
|
|
|
|
$thisline = "".$v['title']."\r\n";
|
|
|
|
|
foreach($selection as $s)
|
|
|
|
|
{
|
|
|
|
|
$thisline .= "".$s['name'].": ";
|
|
|
|
|
if($s['var'] == -1)
|
|
|
|
|
{
|
|
|
|
|
$thisline .= "全部";
|
|
|
|
|
}else{
|
|
|
|
|
foreach($s['var'] as $var)
|
|
|
|
|
{
|
|
|
|
|
$thisline.= $var["nameview"]."/";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
$thisline .= $s['starttime'] ." - ". $s['endtime'];
|
|
|
|
|
$thisline .= "\r\n\r\n";
|
|
|
|
|
}
|
|
|
|
|
$line[] = $thisline."";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(count($line) < 1)
|
|
|
|
|
{
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
$this->addPage();
|
|
|
|
|
$this->SetFont('ugb','B',20);
|
|
|
|
|
$this->ln();
|
|
|
|
|
$this->Cell(0,0,'附件:申请的数据子集',0,2,'C');
|
|
|
|
|
$this->setY(30);
|
|
|
|
|
|
|
|
|
|
foreach($line as $k=>$v)
|
|
|
|
|
{
|
|
|
|
|
$this->SetFont('ugb','',10);
|
|
|
|
|
$this->Write(5,($k+1).'. ' .$v ."\r\n");
|
|
|
|
|
$this->ln();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
}
|
2009-03-06 03:20:46 +00:00
|
|
|
|
?>
|