30require_once DOL_DOCUMENT_ROOT.
'/core/lib/pdf.lib.php';
31require_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
32require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
33require_once DOL_DOCUMENT_ROOT.
'/comm/action/class/actioncomm.class.php';
34require_once DOL_DOCUMENT_ROOT.
'/projet/class/project.class.php';
119 public $page_hauteur;
124 public $page_largeur;
129 public $corner_radius;
148 $langs->loadLangs(array(
"commercial",
"projects"));
152 $this->date_edition = time();
153 $this->month = $month;
155 $this->corner_radius =
getDolGlobalInt(
'MAIN_PDF_FRAME_CORNER_RADIUS', 0);
159 $this->page_largeur = $formatarray[
'width'];
160 $this->page_hauteur = $formatarray[
'height'];
161 $this->format = array($this->page_largeur, $this->page_hauteur);
167 $this->title = $langs->transnoentitiesnoconv(
"ActionsReport").
' '.$this->year.
"-".$this->month;
168 $this->subject = $langs->transnoentitiesnoconv(
"ActionsReport").
' '.$this->year.
"-".$this->month;
182 global $user, $conf, $langs, $hookmanager;
184 if (!is_object($outputlangs)) {
185 $outputlangs = $langs;
189 $outputlangs->charset_output =
'ISO-8859-1';
193 $outputlangs->loadLangs(array(
"main",
"dict",
"companies",
"bills",
"products"));
195 $dir = $conf->agenda->dir_temp.
"/";
196 $file = $dir.
"actions-".sprintf(
"%02d", $this->month).
"-".sprintf(
"%04d", $this->year).
".pdf";
198 if (!file_exists($dir)) {
200 $this->error = $langs->trans(
"ErrorCanNotCreateDir", $dir);
205 if (file_exists($dir)) {
207 if (!is_object($hookmanager)) {
208 include_once DOL_DOCUMENT_ROOT.
'/core/class/hookmanager.class.php';
211 $hookmanager->initHooks(array(
'pdfgeneration'));
216 $parameters = array(
'file' => $file,
'outputlangs' => $outputlangs);
217 $reshook = $hookmanager->executeHooks(
'beforePDFCreation', $parameters,
$object, $action);
220 $heightforinfotot = 50;
222 $heightforfooter = $this->marge_basse + 8;
223 $pdf->SetAutoPageBreak(1, 0);
225 if (class_exists(
'TCPDF')) {
226 $pdf->setPrintHeader(
false);
227 $pdf->setPrintFooter(
false);
233 $pdf->SetDrawColor(128, 128, 128);
234 $pdf->SetFillColor(220, 220, 220);
236 $pdf->SetTitle($outputlangs->convToOutputCharset($this->title));
237 $pdf->SetSubject($outputlangs->convToOutputCharset($this->subject));
238 $pdf->SetCreator(
"Dolibarr ".DOL_VERSION);
239 $pdf->SetAuthor($outputlangs->convToOutputCharset($user->getFullName($outputlangs)));
240 $pdf->SetKeywords($outputlangs->convToOutputCharset($this->title.
" ".$this->subject));
243 $pdf->SetMargins($this->marge_gauche, $this->marge_haute, $this->marge_droite);
245 $nbpage = $this->
_pages($pdf, $outputlangs);
247 if (method_exists($pdf,
'AliasNbPages')) {
248 $pdf->AliasNbPages();
252 $pdf->Output($file,
'F');
255 if (!is_object($hookmanager)) {
256 include_once DOL_DOCUMENT_ROOT.
'/core/class/hookmanager.class.php';
259 $hookmanager->initHooks(array(
'pdfgeneration'));
260 $parameters = array(
'file' => $file,
'object' =>
$object,
'outputlangs' => $outputlangs);
262 $reshook = $hookmanager->executeHooks(
'afterPDFCreation', $parameters, $this, $action);
264 $this->error = $hookmanager->error;
265 $this->errors = $hookmanager->errors;
270 $this->result = array(
'fullpath' => $file);
284 private function _pages(&$pdf, $outputlangs)
291 $y = $this->
_pagehead($pdf, $outputlangs, $pagenb);
293 $pdf->SetFont(
'',
'', 8);
295 $sql =
"SELECT s.nom as thirdparty, s.rowid as socid, s.client,";
296 $sql .=
" a.id, a.datep as dp, a.datep2 as dp2,";
297 $sql .=
" a.fk_contact, a.note, a.percent as percent, a.fulldayevent, a.label, a.fk_project,";
298 $sql .=
" c.code, c.libelle as label_type,";
300 $sql .=
" FROM ".MAIN_DB_PREFIX.
"c_actioncomm as c, ".MAIN_DB_PREFIX.
"user as u, ".MAIN_DB_PREFIX.
"actioncomm as a";
301 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"societe as s ON a.fk_soc = s.rowid";
302 $sql .=
" WHERE c.id=a.fk_action AND a.fk_user_author = u.rowid";
303 $sql .=
" AND a.datep BETWEEN '".$this->db->idate(
dol_get_first_day($this->year, $this->month,
false)).
"'";
304 $sql .=
" AND '".$this->db->idate(
dol_get_last_day($this->year, $this->month,
false)).
"'";
305 $sql .=
" AND a.entity = ".$conf->entity;
306 $sql .=
" ORDER BY a.datep DESC";
309 $projectstatic =
new Project($this->db);
311 dol_syslog(get_class($this).
"::_page", LOG_DEBUG);
312 $resql = $this->db->query($sql);
314 $num = $this->db->num_rows($resql);
316 $y0 = $y1 = $y2 = $y3 = 0;
319 $obj = $this->db->fetch_object($resql);
321 $eventstatic->id = $obj->id;
322 $eventstatic->percentage = $obj->percent;
323 $eventstatic->fulldayevent = $obj->fulldayevent;
325 $y = max($y, $pdf->GetY(), $y0, $y1, $y2, $y3);
329 if (!preg_match(
'/^'.preg_quote($obj->label,
'/').
'/', $obj->note)) {
330 $text = $obj->label.
"\n";
337 if ($obj->fk_project > 0) {
338 $projectstatic->fetch($obj->fk_project);
339 if ($projectstatic->ref) {
340 $text .= ($status ?
' - ' :
'').$outputlangs->transnoentitiesnoconv(
"Project").
": ".
dol_htmlentitiesbr_decode($projectstatic->ref);
347 $heightlinemax = max(2 * $height, $nboflines * $height);
349 if ((1 + $y + $heightlinemax) >= ($this->page_hauteur - $this->marge_haute)) {
352 $y = $this->
_pagehead($pdf, $outputlangs, $pagenb);
354 $pdf->SetFont(
'',
'', 8);
359 $pdf->SetXY($this->marge_gauche, $y);
363 $textdate .=
" -> ".dol_print_date($this->db->jdate($obj->dp2),
"day").
" - ".
dol_print_date($this->db->jdate($obj->dp2),
"hour");
365 $textdate .=
" -> ".dol_print_date($this->db->jdate($obj->dp2),
"hour");
368 $textdate = $outputlangs->trans(
"ID").
' '.$obj->id.
' - '.$textdate;
369 $pdf->MultiCell(45 - $this->marge_gauche, $height, $textdate, 0,
'L', 0);
374 $pdf->MultiCell(28, $height,
dol_trunc($outputlangs->convToOutputCharset($obj->thirdparty), 28), 0,
'L', 0);
380 if ($code ==
'AC_OTH') {
383 if ($code ==
'AC_OTH_AUTO') {
388 $labelactiontype = $outputlangs->transnoentitiesnoconv(
"Action".$code);
389 $labelactiontypeshort = $outputlangs->transnoentitiesnoconv(
"Action".$code.
'Short');
390 $pdf->MultiCell(32, $height,
dol_trunc($outputlangs->convToOutputCharset($labelactiontypeshort ==
"Action".$code.
'Short' ? $labelactiontype : $labelactiontypeshort), 32), 0,
'L', 0);
394 $pdf->SetXY(106, $y);
395 $pdf->MultiCell(94, $height, $outputlangs->convToOutputCharset(
dol_trunc(
dol_string_nohtmltag($text, 0), 250,
'right',
'UTF-8', 0)), 0,
'L', 0);
413 private function _pagehead(&$pdf, $outputlangs, $pagenb)
422 $pdf->SetFont(
'',
'B', 10);
423 $pdf->SetXY($this->marge_gauche, $this->marge_haute);
424 $pdf->MultiCell(120, 1, $outputlangs->convToOutputCharset($this->title), 0,
'L', 0);
427 $pdf->SetXY($this->page_largeur - $this->marge_droite - 40, $this->marge_haute);
428 $pdf->MultiCell(40, 1, $pagenb.
'/'.$pdf->getAliasNbPages(), 0,
'R', 0);
431 $y = $pdf->GetY() + 2;
433 $pdf->RoundedRect($this->marge_gauche, $y, ($this->page_largeur - $this->marge_gauche - $this->marge_droite), ($this->page_hauteur - $this->marge_haute - $this->marge_basse), $this->corner_radius,
'1234',
'D');
434 $y = $pdf->GetY() + 1;
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Class to manage agenda events (actions)
Class to manage projects.
Class to generate event report.
_pagehead(&$pdf, $outputlangs, $pagenb)
Show top header of page.
__construct($db, $month, $year)
Constructor.
write_file($object, $outputlangs)
Write the object to document file to disk.
_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.
dol_get_last_day($year, $month=12, $gm=false)
Return GMT time for last day of a month or year.
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 a 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($outputlangs=null, $mode='setup')
Return array with format properties of default PDF format.
pdf_getPDFFont($outputlangs)
Return font name to use for PDF generation.
pdf_getInstance($format='', $metric='mm', $pagetype='P')
Return a PDF instance object.
if(preg_match('/crypted:/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type