dolibarr 20.0.0
pdf_standard_actions.class.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2012 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2005-2009 Regis Houssin <regis.houssin@inodbox.com>
5 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 * or see https://www.gnu.org/
20 */
21
28require_once DOL_DOCUMENT_ROOT.'/core/lib/pdf.lib.php';
29require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
30require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
31require_once DOL_DOCUMENT_ROOT.'/comm/action/class/actioncomm.class.php';
32require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
33
38{
42 public $db;
43
44 public $error;
45
46 public $errors;
47
51 public $description;
52
53 public $date_edition;
54
55 public $year;
56
57 public $month;
58
59 public $title;
60
61 public $subject;
62
63 public $marge_gauche;
64
65 public $marge_droite;
66
67 public $marge_haute;
68
69 public $marge_basse;
70
71 public $format;
72
73 public $type;
74
75 public $page_hauteur;
76
77 public $page_largeur;
78
82 public $result;
83
91 public function __construct($db, $month, $year)
92 {
93 global $langs;
94
95 // Load translation files required by the page
96 $langs->loadLangs(array("commercial", "projects"));
97
98 $this->db = $db;
99 $this->description = "";
100 $this->date_edition = time();
101 $this->month = $month;
102 $this->year = $year;
103
104 // Page size for A4 format
105 $this->type = 'pdf';
106 $formatarray = pdf_getFormat();
107 $this->page_largeur = $formatarray['width'];
108 $this->page_hauteur = $formatarray['height'];
109 $this->format = array($this->page_largeur, $this->page_hauteur);
110 $this->marge_gauche = getDolGlobalInt('MAIN_PDF_MARGIN_LEFT', 10);
111 $this->marge_droite = getDolGlobalInt('MAIN_PDF_MARGIN_RIGHT', 10);
112 $this->marge_haute = getDolGlobalInt('MAIN_PDF_MARGIN_TOP', 10);
113 $this->marge_basse = getDolGlobalInt('MAIN_PDF_MARGIN_BOTTOM', 10);
114
115 $this->title = $langs->transnoentitiesnoconv("ActionsReport").' '.$this->year."-".$this->month;
116 $this->subject = $langs->transnoentitiesnoconv("ActionsReport").' '.$this->year."-".$this->month;
117 }
118
119 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
127 public function write_file($socid, $outputlangs)
128 {
129 // phpcs:enable
130 global $user, $conf, $langs, $hookmanager;
131
132 if (!is_object($outputlangs)) {
133 $outputlangs = $langs;
134 }
135 // For backward compatibility with FPDF, force output charset to ISO, because FPDF expect text to be encoded in ISO
136 if (getDolGlobalString('MAIN_USE_FPDF')) {
137 $outputlangs->charset_output = 'ISO-8859-1';
138 }
139
140 // Load traductions files required by page
141 $outputlangs->loadLangs(array("main", "dict", "companies", "bills", "products"));
142
143 $dir = $conf->agenda->dir_temp."/";
144 $file = $dir."actions-".sprintf("%02d", $this->month)."-".sprintf("%04d", $this->year).".pdf";
145
146 if (!file_exists($dir)) {
147 if (dol_mkdir($dir) < 0) {
148 $this->error = $langs->trans("ErrorCanNotCreateDir", $dir);
149 return 0;
150 }
151 }
152
153 if (file_exists($dir)) {
154 // Add pdfgeneration hook
155 if (!is_object($hookmanager)) {
156 include_once DOL_DOCUMENT_ROOT.'/core/class/hookmanager.class.php';
157 $hookmanager = new HookManager($this->db);
158 }
159 $hookmanager->initHooks(array('pdfgeneration'));
160
161 global $action;
162 $object = new stdClass();
163
164 $parameters = array('file' => $file, 'outputlangs' => $outputlangs);
165 $reshook = $hookmanager->executeHooks('beforePDFCreation', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
166
167 $pdf = pdf_getInstance($this->format);
168 $heightforinfotot = 50; // Height reserved to output the info and total part
169 $heightforfreetext = (isset($conf->global->MAIN_PDF_FREETEXT_HEIGHT) ? $conf->global->MAIN_PDF_FREETEXT_HEIGHT : 5); // Height reserved to output the free text on last page
170 $heightforfooter = $this->marge_basse + 8; // Height reserved to output the footer (value include bottom margin)
171 $pdf->SetAutoPageBreak(1, 0);
172
173 if (class_exists('TCPDF')) {
174 $pdf->setPrintHeader(false);
175 $pdf->setPrintFooter(false);
176 }
177 $pdf->SetFont(pdf_getPDFFont($outputlangs));
178
179 $pdf->Open();
180 $pagenb = 0;
181 $pdf->SetDrawColor(128, 128, 128);
182 $pdf->SetFillColor(220, 220, 220);
183
184 $pdf->SetTitle($outputlangs->convToOutputCharset($this->title));
185 $pdf->SetSubject($outputlangs->convToOutputCharset($this->subject));
186 $pdf->SetCreator("Dolibarr ".DOL_VERSION);
187 $pdf->SetAuthor($outputlangs->convToOutputCharset($user->getFullName($outputlangs)));
188 $pdf->SetKeywords($outputlangs->convToOutputCharset($this->title." ".$this->subject));
189
190 // @phan-suppress-next-line PhanPluginSuspiciousParamOrder
191 $pdf->SetMargins($this->marge_gauche, $this->marge_haute, $this->marge_droite); // Left, Top, Right
192
193 $nbpage = $this->_pages($pdf, $outputlangs); // Write content
194
195 if (method_exists($pdf, 'AliasNbPages')) {
196 $pdf->AliasNbPages();
197 }
198 $pdf->Close();
199
200 $pdf->Output($file, 'F');
201
202 // Add pdfgeneration hook
203 if (!is_object($hookmanager)) {
204 include_once DOL_DOCUMENT_ROOT.'/core/class/hookmanager.class.php';
205 $hookmanager = new HookManager($this->db);
206 }
207 $hookmanager->initHooks(array('pdfgeneration'));
208 $parameters = array('file' => $file, 'object' => $object, 'outputlangs' => $outputlangs);
209 global $action;
210 $reshook = $hookmanager->executeHooks('afterPDFCreation', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
211 if ($reshook < 0) {
212 $this->error = $hookmanager->error;
213 $this->errors = $hookmanager->errors;
214 }
215
216 dolChmod($file);
217
218 $this->result = array('fullpath' => $file);
219
220 return 1;
221 }
222 return 0;
223 }
224
232 private function _pages(&$pdf, $outputlangs)
233 {
234 global $conf;
235
236 $height = 3; // height for text separation
237 $pagenb = 1;
238
239 $y = $this->_pagehead($pdf, $outputlangs, $pagenb);
240 $y++;
241 $pdf->SetFont('', '', 8);
242
243 $sql = "SELECT s.nom as thirdparty, s.rowid as socid, s.client,";
244 $sql .= " a.id, a.datep as dp, a.datep2 as dp2,";
245 $sql .= " a.fk_contact, a.note, a.percent as percent, a.fulldayevent, a.label, a.fk_project,";
246 $sql .= " c.code, c.libelle as label_type,";
247 $sql .= " u.login";
248 $sql .= " FROM ".MAIN_DB_PREFIX."c_actioncomm as c, ".MAIN_DB_PREFIX."user as u, ".MAIN_DB_PREFIX."actioncomm as a";
249 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."societe as s ON a.fk_soc = s.rowid";
250 $sql .= " WHERE c.id=a.fk_action AND a.fk_user_author = u.rowid";
251 $sql .= " AND a.datep BETWEEN '".$this->db->idate(dol_get_first_day($this->year, $this->month, false))."'";
252 $sql .= " AND '".$this->db->idate(dol_get_last_day($this->year, $this->month, false))."'";
253 $sql .= " AND a.entity = ".$conf->entity;
254 $sql .= " ORDER BY a.datep DESC";
255
256 $eventstatic = new ActionComm($this->db);
257 $projectstatic = new Project($this->db);
258
259 dol_syslog(get_class($this)."::_page", LOG_DEBUG);
260 $resql = $this->db->query($sql);
261 if ($resql) {
262 $num = $this->db->num_rows($resql);
263 $i = 0;
264 $y0 = $y1 = $y2 = $y3 = 0;
265
266 while ($i < $num) {
267 $obj = $this->db->fetch_object($resql);
268
269 $eventstatic->id = $obj->id;
270 $eventstatic->percentage = $obj->percent;
271 $eventstatic->fulldayevent = $obj->fulldayevent;
272
273 $y = max($y, $pdf->GetY(), $y0, $y1, $y2, $y3);
274
275 // Calculate height of text
276 $text = '';
277 if (!preg_match('/^'.preg_quote($obj->label, '/').'/', $obj->note)) {
278 $text = $obj->label."\n";
279 }
280 $text .= dolGetFirstLineOfText(dol_string_nohtmltag($obj->note), 1);
281 // Add status to text
282 $text .= "\n";
283 $status = $outputlangs->trans("Status").': '.dol_htmlentitiesbr_decode($eventstatic->getLibStatut(1, 1));
284 $text .= $status;
285 if ($obj->fk_project > 0) {
286 $projectstatic->fetch($obj->fk_project);
287 if ($projectstatic->ref) {
288 $text .= ($status ? ' - ' : '').$outputlangs->transnoentitiesnoconv("Project").": ".dol_htmlentitiesbr_decode($projectstatic->ref);
289 }
290 }
291
292 //print 'd'.$text; exit;
293 $nboflines = dol_nboflines($text);
294
295 $heightlinemax = max(2 * $height, $nboflines * $height);
296 // Check if there is enough space to print record
297 if ((1 + $y + $heightlinemax) >= ($this->page_hauteur - $this->marge_haute)) {
298 // We need to break page
299 $pagenb++;
300 $y = $this->_pagehead($pdf, $outputlangs, $pagenb);
301 $y++;
302 $pdf->SetFont('', '', 8);
303 }
304 $y++;
305
306 // Date
307 $pdf->SetXY($this->marge_gauche, $y);
308 $textdate = dol_print_date($this->db->jdate($obj->dp), "day")."\n".dol_print_date($this->db->jdate($obj->dp), "hour");
309 if ($obj->dp2) {
310 if (dol_print_date($this->db->jdate($obj->dp), "day") != dol_print_date($this->db->jdate($obj->dp2), "day")) {
311 $textdate .= " -> ".dol_print_date($this->db->jdate($obj->dp2), "day")." - ".dol_print_date($this->db->jdate($obj->dp2), "hour");
312 } else {
313 $textdate .= " -> ".dol_print_date($this->db->jdate($obj->dp2), "hour");
314 }
315 }
316 $textdate = $outputlangs->trans("ID").' '.$obj->id.' - '.$textdate;
317 $pdf->MultiCell(45 - $this->marge_gauche, $height, $textdate, 0, 'L', 0);
318 $y0 = $pdf->GetY();
319
320 // Third party
321 $pdf->SetXY(45, $y);
322 $pdf->MultiCell(28, $height, dol_trunc($outputlangs->convToOutputCharset($obj->thirdparty), 28), 0, 'L', 0);
323 $y1 = $pdf->GetY();
324
325 // Action code
326 $code = $obj->code;
327 if (!getDolGlobalString('AGENDA_USE_EVENT_TYPE')) {
328 if ($code == 'AC_OTH') {
329 $code = 'AC_MANUAL';
330 }
331 if ($code == 'AC_OTH_AUTO') {
332 $code = 'AC_AUTO';
333 }
334 }
335 $pdf->SetXY(73, $y);
336 $labelactiontype = $outputlangs->transnoentitiesnoconv("Action".$code);
337 $labelactiontypeshort = $outputlangs->transnoentitiesnoconv("Action".$code.'Short');
338 $pdf->MultiCell(32, $height, dol_trunc($outputlangs->convToOutputCharset($labelactiontypeshort == "Action".$code.'Short' ? $labelactiontype : $labelactiontypeshort), 32), 0, 'L', 0);
339 $y2 = $pdf->GetY();
340
341 // Description of event
342 $pdf->SetXY(106, $y);
343 $pdf->MultiCell(94, $height, $outputlangs->convToOutputCharset(dol_trunc(dol_string_nohtmltag($text, 0), 250, 'right', 'UTF-8', 0)), 0, 'L', 0);
344 $y3 = $pdf->GetY();
345
346 $i++;
347 }
348 }
349
350 return 1;
351 }
352
361 private function _pagehead(&$pdf, $outputlangs, $pagenb)
362 {
363 // Do not add the BACKGROUND as this is a report
364 //pdf_pagehead($pdf,$outputlangs,$this->page_hauteur);
365
366 // New page
367 $pdf->AddPage();
368
369 // Show title
370 $pdf->SetFont('', 'B', 10);
371 $pdf->SetXY($this->marge_gauche, $this->marge_haute);
372 $pdf->MultiCell(120, 1, $outputlangs->convToOutputCharset($this->title), 0, 'L', 0);
373 // Show page nb only on iso languages (so default Helvetica font)
374 if (pdf_getPDFFont($outputlangs) == 'Helvetica') {
375 $pdf->SetXY($this->page_largeur - $this->marge_droite - 40, $this->marge_haute);
376 $pdf->MultiCell(40, 1, $pagenb.'/'.$pdf->getAliasNbPages(), 0, 'R', 0);
377 }
378
379 $y = $pdf->GetY() + 2;
380
381 $pdf->Rect($this->marge_gauche, $y, ($this->page_largeur - $this->marge_gauche - $this->marge_droite), ($this->page_hauteur - $this->marge_haute - $this->marge_basse));
382 $y = $pdf->GetY() + 1;
383
384 return $y;
385 }
386}
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:58
Class to manage agenda events (actions)
Class to manage hooks.
Class to manage projects.
Class to generate event report.
_pagehead(&$pdf, $outputlangs, $pagenb)
Show top header of page.
write_file($socid, $outputlangs)
Write the object to document file to disk.
__construct($db, $month, $year)
Constructor.
_pages(&$pdf, $outputlangs)
Write content of pages.
dol_get_first_day($year, $month=1, $gm=false)
Return GMT time for first day of a month or year.
Definition date.lib.php:594
dol_get_last_day($year, $month=12, $gm=false)
Return GMT time for last day of a month or year.
Definition date.lib.php:613
print $script_file $mode $langs defaultlang(is_numeric($duration_value) ? " delay=". $duration_value :"").(is_numeric($duration_value2) ? " after cd cd cd description as description
Only used if Module[ID]Desc translation string is not found.
dol_htmlentitiesbr_decode($stringtodecode, $pagecodeto='UTF-8')
This function is called to decode a HTML string (it decodes entities and br tags)
dolGetFirstLineOfText($text, $nboflines=1, $charset='UTF-8')
Return first line of text.
dol_string_nohtmltag($stringtoclean, $removelinefeed=1, $pagecodeto='UTF-8', $strip_tags=0, $removedoublespaces=1)
Clean a string from all HTML tags and entities.
dolChmod($filepath, $newmask='')
Change mod of a file.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
dol_trunc($string, $size=40, $trunc='right', $stringencoding='UTF-8', $nodot=0, $display=0)
Truncate a string to a particular length adding '…' if string larger than length.
dol_nboflines($s, $maxchar=0)
Return nb of lines of a clear text.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
pdf_getFormat(Translate $outputlangs=null, $mode='setup')
Return array with format properties of default PDF format.
Definition pdf.lib.php:86
pdf_getPDFFont($outputlangs)
Return font name to use for PDF generation.
Definition pdf.lib.php:267
pdf_getInstance($format='', $metric='mm', $pagetype='P')
Return a PDF instance object.
Definition pdf.lib.php:128
if(preg_match('/crypted:/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
Definition repair.php:139