forked from opendcim/openDCIM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
report_department.php
200 lines (171 loc) · 5.77 KB
/
report_department.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
<?php
require_once( 'db.inc.php' );
require_once( 'facilities.inc.php' );
define('FPDF_FONTPATH','font/');
require('fpdf.php');
class PDF extends FPDF {
var $outlines=array();
var $OutlineRoot;
var $pdfconfig;
var $pdfDB;
function PDF(){
parent::FPDF();
}
function Header() {
$this->pdfconfig = new Config();
$this->Link( 10, 8, 100, 20, 'https://' . $_SERVER['SERVER_NAME'] . $_SERVER['PHP_SELF'] );
$this->Image( 'images/' . $this->pdfconfig->ParameterArray['PDFLogoFile'],10,8,100);
$this->SetFont($this->pdfconfig->ParameterArray['PDFfont'],'B',12);
$this->Cell(120);
$this->Cell(30,20,__("Information Technology Services"),0,0,'C');
$this->Ln(25);
$this->SetFont( $this->pdfconfig->ParameterArray['PDFfont'],'',10 );
$this->Cell( 50, 6, __("Departmental Contacts Report"), 0, 1, 'L' );
$this->Cell( 50, 6, __("Date").': ' . date('d F Y'), 0, 1, 'L' );
$this->Ln(10);
}
function Footer() {
$this->SetY(-15);
$this->SetFont($this->pdfconfig->ParameterArray['PDFfont'],'I',8);
$this->Cell(0,10,__("Page").' '.$this->PageNo().'/{nb}',0,0,'C');
}
function Bookmark($txt,$level=0,$y=0) {
if($y==-1)
$y=$this->GetY();
$this->outlines[]=array('t'=>$txt,'l'=>$level,'y'=>$y,'p'=>$this->PageNo());
}
function _putbookmarks() {
$nb=count($this->outlines);
if($nb==0)
return;
$lru=array();
$level=0;
foreach($this->outlines as $i=>$o)
{
if($o['l']>0)
{
$parent=$lru[$o['l']-1];
//Set parent and last pointers
$this->outlines[$i]['parent']=$parent;
$this->outlines[$parent]['last']=$i;
if($o['l']>$level)
{
//Level increasing: set first pointer
$this->outlines[$parent]['first']=$i;
}
}
else
$this->outlines[$i]['parent']=$nb;
if($o['l']<=$level and $i>0)
{
//Set prev and next pointers
$prev=$lru[$o['l']];
$this->outlines[$prev]['next']=$i;
$this->outlines[$i]['prev']=$prev;
}
$lru[$o['l']]=$i;
$level=$o['l'];
}
//Outline items
$n=$this->n+1;
foreach($this->outlines as $i=>$o)
{
$this->_newobj();
$this->_out('<</Title '.$this->_textstring($o['t']));
$this->_out('/Parent '.($n+$o['parent']).' 0 R');
if(isset($o['prev']))
$this->_out('/Prev '.($n+$o['prev']).' 0 R');
if(isset($o['next']))
$this->_out('/Next '.($n+$o['next']).' 0 R');
if(isset($o['first']))
$this->_out('/First '.($n+$o['first']).' 0 R');
if(isset($o['last']))
$this->_out('/Last '.($n+$o['last']).' 0 R');
$this->_out(sprintf('/Dest [%d 0 R /XYZ 0 %.2f null]',1+2*$o['p'],($this->h-$o['y'])*$this->k));
$this->_out('/Count 0>>');
$this->_out('endobj');
}
//Outline root
$this->_newobj();
$this->OutlineRoot=$this->n;
$this->_out('<</Type /Outlines /First '.$n.' 0 R');
$this->_out('/Last '.($n+$lru[0]).' 0 R>>');
$this->_out('endobj');
}
function _putresources()
{
parent::_putresources();
$this->_putbookmarks();
}
function _putcatalog()
{
parent::_putcatalog();
if(count($this->outlines)>0)
{
$this->_out('/Outlines '.$this->OutlineRoot.' 0 R');
$this->_out('/PageMode /UseOutlines');
}
}
}
//
//
// Begin Report Generation
//
//
$dept = new Department();
$con = new People();
$pdf=new PDF();
$pdf->AliasNbPages();
include_once("loadfonts.php");
$pdf->SetFont($config->ParameterArray['PDFfont'],'',8);
$pdf->SetFillColor( 0, 0, 0 );
$pdf->SetTextColor( 255 );
$pdf->SetDrawColor( 128, 0, 0 );
$pdf->SetLineWidth( .3 );
$pdf->SetfillColor( 224, 235, 255 );
$pdf->SetTextColor( 0 );
$pdf->Bookmark( 'Departments' );
$deptList = $dept->GetDepartmentList();
foreach( $deptList as $deptRow ) {
// Skip ITS for Now
// if ( $deptRow->Name == 'ITS' )
// continue;
$pdf->AddPage();
$pdf->Bookmark( $deptRow->Name, 1, 0 );
$pdf->SetFont( $config->ParameterArray['PDFfont'], 'B', 12 );
$pdf->Cell( 80, 5, __("Department").":" );
$pdf->SetFont( $config->ParameterArray['PDFfont'], '', 12 );
$pdf->Cell( 0, 5, $deptRow->Name );
$pdf->Ln();
$pdf->SetFont( $config->ParameterArray['PDFfont'], 'B', 12 );
$pdf->Cell( 80, 5, __("Executive Sponsor").":" );
$pdf->SetFont( $config->ParameterArray['PDFfont'], '', 12 );
$pdf->Cell( 0, 5, $deptRow->ExecSponsor );
$pdf->Ln();
$pdf->SetFont( $config->ParameterArray['PDFfont'], 'B', 12 );
$pdf->Cell( 80, 5, __("Service Delivery Manager").":" );
$pdf->SetFont( $config->ParameterArray['PDFfont'], '', 12 );
$pdf->Cell( 0, 5, $deptRow->SDM );
$pdf->Ln();
$pdf->SetFont( $config->ParameterArray['PDFfont'], '', 8 );
$headerTags = array( __("UserName"), __("UserID"), __("Phone1"), __("Phone2"), __("Phone3"), __("Email") );
$cellWidths = array( 50, 20, 25, 25, 25, 50 );
$maxval = count( $headerTags );
for ( $col = 0; $col < $maxval; $col++ )
$pdf->Cell( $cellWidths[$col], 7, $headerTags[$col], 1, 0, 'C', 1 );
$pdf->Ln();
$contactList=$con->GetPeopleByDepartment($deptRow->DeptID);
$fill = 0;
foreach( $contactList as $contact ) {
$pdf->Cell( $cellWidths[0], 6, $contact->LastName . ', ' . $contact->FirstName, 'LBRT', 0, 'L', $fill );
$pdf->Cell( $cellWidths[1], 6, $contact->UserID, 'LBRT', 0, 'L', $fill );
$pdf->Cell( $cellWidths[2], 6, $contact->Phone1, 'LBRT', 0, 'L', $fill );
$pdf->Cell( $cellWidths[3], 6, $contact->Phone2, 'LBRT', 0, 'L', $fill );
$pdf->Cell( $cellWidths[4], 6, $contact->Phone3, 'LBRT', 0, 'L', $fill );
$pdf->Cell( $cellWidths[5], 6, $contact->Email, 'LBRT', 1, 'L', $fill );
$fill =! $fill;
}
$pdf->Ln();
}
$pdf->Output();
?>