dolibarr  16.0.5
pdf_azur.modules.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2004-2014 Laurent Destailleur <eldy@users.sourceforge.net>
3  * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
4  * Copyright (C) 2008 Raphael Bertrand <raphael.bertrand@resultic.fr>
5  * Copyright (C) 2010-2015 Juanjo Menent <jmenent@2byte.es>
6  * Copyright (C) 2012 Christophe Battarel <christophe.battarel@altairis.fr>
7  * Copyright (C) 2012 Cedric Salvador <csalvador@gpcsolutions.fr>
8  * Copyright (C) 2015 Marcos García <marcosgdf@gmail.com>
9  * Copyright (C) 2017-2018 Ferran Marcet <fmarcet@2byte.es>
10  * Copyright (C) 2018-2020 Frédéric France <frederic.france@netlogic.fr>
11  * Copyright (C) 2019 Pierre Ardoin <mapiolca@me.com>
12  *
13  * This program is free software; you can redistribute it and/or modify
14  * it under the terms of the GNU General Public License as published by
15  * the Free Software Foundation; either version 3 of the License, or
16  * (at your option) any later version.
17  *
18  * This program is distributed in the hope that it will be useful,
19  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21  * GNU General Public License for more details.
22  *
23  * You should have received a copy of the GNU General Public License
24  * along with this program. If not, see <https://www.gnu.org/licenses/>.
25  * or see https://www.gnu.org/
26  */
27 
34 require_once DOL_DOCUMENT_ROOT.'/core/modules/propale/modules_propale.php';
35 require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
36 require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
37 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
38 require_once DOL_DOCUMENT_ROOT.'/core/lib/pdf.lib.php';
39 
40 
45 {
49  public $db;
50 
54  public $name;
55 
59  public $description;
60 
64  public $update_main_doc_field;
65 
69  public $type;
70 
75  public $phpmin = array(5, 6);
76 
81  public $version = 'dolibarr';
82 
86  public $page_largeur;
87 
91  public $page_hauteur;
92 
96  public $format;
97 
101  public $marge_gauche;
102 
106  public $marge_droite;
107 
111  public $marge_haute;
112 
116  public $marge_basse;
117 
122  public $emetteur;
123 
124 
130  public function __construct($db)
131  {
132  global $conf, $langs, $mysoc;
133 
134  // Translations
135  $langs->loadLangs(array("main", "bills"));
136 
137  $this->db = $db;
138  $this->name = "azur";
139  $this->description = $langs->trans('DocModelAzurDescription');
140  $this->update_main_doc_field = 1; // Save the name of generated file as the main doc when generating a doc with this template
141 
142  // Dimension page
143  $this->type = 'pdf';
144  $formatarray = pdf_getFormat();
145  $this->page_largeur = $formatarray['width'];
146  $this->page_hauteur = $formatarray['height'];
147  $this->format = array($this->page_largeur, $this->page_hauteur);
148  $this->marge_gauche = isset($conf->global->MAIN_PDF_MARGIN_LEFT) ? $conf->global->MAIN_PDF_MARGIN_LEFT : 10;
149  $this->marge_droite = isset($conf->global->MAIN_PDF_MARGIN_RIGHT) ? $conf->global->MAIN_PDF_MARGIN_RIGHT : 10;
150  $this->marge_haute = isset($conf->global->MAIN_PDF_MARGIN_TOP) ? $conf->global->MAIN_PDF_MARGIN_TOP : 10;
151  $this->marge_basse = isset($conf->global->MAIN_PDF_MARGIN_BOTTOM) ? $conf->global->MAIN_PDF_MARGIN_BOTTOM : 10;
152 
153  $this->option_logo = 1; // Display logo
154  $this->option_tva = 1; // Manage the vat option FACTURE_TVAOPTION
155  $this->option_modereg = 1; // Display payment mode
156  $this->option_condreg = 1; // Display payment terms
157  $this->option_multilang = 1; // Available in several languages
158  $this->option_escompte = 0; // Displays if there has been a discount
159  $this->option_credit_note = 0; // Support credit notes
160  $this->option_freetext = 1; // Support add of a personalised text
161  $this->option_draft_watermark = 1; // Support add of a watermark on drafts
162  $this->watermark = '';
163 
164  // Get source company
165  $this->emetteur = $mysoc;
166  if (empty($this->emetteur->country_code)) {
167  $this->emetteur->country_code = substr($langs->defaultlang, -2); // By default, if was not defined
168  }
169 
170  // Define position of columns
171  $this->posxdesc = $this->marge_gauche + 1;
172  if (!empty($conf->global->PRODUCT_USE_UNITS)) {
173  $this->posxtva = 101;
174  $this->posxup = 118;
175  $this->posxqty = 135;
176  $this->posxunit = 151;
177  } else {
178  $this->posxtva = 106;
179  $this->posxup = 122;
180  $this->posxqty = 145;
181  $this->posxunit = 162;
182  }
183  $this->posxdiscount = 162;
184  $this->postotalht = 174;
185  if (!empty($conf->global->MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT) || !empty($conf->global->MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT_COLUMN)) {
186  $this->posxtva = $this->posxup;
187  }
188  $this->posxpicture = $this->posxtva - (empty($conf->global->MAIN_DOCUMENTS_WITH_PICTURE_WIDTH) ? 20 : $conf->global->MAIN_DOCUMENTS_WITH_PICTURE_WIDTH); // width of images
189  if ($this->page_largeur < 210) { // To work with US executive format
190  $this->posxpicture -= 20;
191  $this->posxtva -= 20;
192  $this->posxup -= 20;
193  $this->posxqty -= 20;
194  $this->posxunit -= 20;
195  $this->posxdiscount -= 20;
196  $this->postotalht -= 20;
197  }
198 
199  $this->tva = array();
200  $this->tva_array = array();
201  $this->localtax1 = array();
202  $this->localtax2 = array();
203  $this->atleastoneratenotnull = 0;
204  $this->atleastonediscount = 0;
205  }
206 
207  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
219  public function write_file($object, $outputlangs, $srctemplatepath = '', $hidedetails = 0, $hidedesc = 0, $hideref = 0)
220  {
221  // phpcs:enable
222  global $user, $langs, $conf, $mysoc, $db, $hookmanager, $nblines;
223 
224  dol_syslog("write_file outputlangs->defaultlang=".(is_object($outputlangs) ? $outputlangs->defaultlang : 'null'));
225 
226  if (!is_object($outputlangs)) {
227  $outputlangs = $langs;
228  }
229  // For backward compatibility with FPDF, force output charset to ISO, because FPDF expect text to be encoded in ISO
230  if (!empty($conf->global->MAIN_USE_FPDF)) {
231  $outputlangs->charset_output = 'ISO-8859-1';
232  }
233 
234  // Load translation files required by page
235  $outputlangs->loadLangs(array("main", "dict", "companies", "bills", "propal", "products"));
236 
237  global $outputlangsbis;
238  $outputlangsbis = null;
239  if (!empty($conf->global->PDF_USE_ALSO_LANGUAGE_CODE) && $outputlangs->defaultlang != $conf->global->PDF_USE_ALSO_LANGUAGE_CODE) {
240  $outputlangsbis = new Translate('', $conf);
241  $outputlangsbis->setDefaultLang($conf->global->PDF_USE_ALSO_LANGUAGE_CODE);
242  $outputlangsbis->loadLangs(array("main", "dict", "companies", "bills", "products", "propal"));
243  }
244 
245  // Show Draft Watermark
246  if ($object->statut == $object::STATUS_DRAFT && (!empty($conf->global->PROPALE_DRAFT_WATERMARK))) {
247  $this->watermark = $conf->global->PROPALE_DRAFT_WATERMARK;
248  }
249 
250  $nblines = count($object->lines);
251 
252  // Loop on each lines to detect if there is at least one image to show
253  $realpatharray = array();
254  $this->atleastonephoto = false;
255  if (!empty($conf->global->MAIN_GENERATE_PROPOSALS_WITH_PICTURE)) {
256  $objphoto = new Product($this->db);
257 
258  for ($i = 0; $i < $nblines; $i++) {
259  if (empty($object->lines[$i]->fk_product)) {
260  continue;
261  }
262 
263  $objphoto->fetch($object->lines[$i]->fk_product);
264  //var_dump($objphoto->ref);exit;
265  if (!empty($conf->global->PRODUCT_USE_OLD_PATH_FOR_PHOTO)) {
266  $pdir[0] = get_exdir($objphoto->id, 2, 0, 0, $objphoto, 'product').$objphoto->id."/photos/";
267  $pdir[1] = get_exdir(0, 0, 0, 0, $objphoto, 'product').dol_sanitizeFileName($objphoto->ref).'/';
268  } else {
269  $pdir[0] = get_exdir(0, 0, 0, 0, $objphoto, 'product'); // default
270  $pdir[1] = get_exdir($objphoto->id, 2, 0, 0, $objphoto, 'product').$objphoto->id."/photos/"; // alternative
271  }
272 
273  $arephoto = false;
274  $realpath = '';
275  foreach ($pdir as $midir) {
276  if (!$arephoto) {
277  if ($conf->entity != $objphoto->entity) {
278  $dir = $conf->product->multidir_output[$objphoto->entity].'/'.$midir; //Check repertories of current entities
279  } else {
280  $dir = $conf->product->dir_output.'/'.$midir; //Check repertory of the current product
281  }
282  foreach ($objphoto->liste_photos($dir, 1) as $key => $obj) {
283  if (empty($conf->global->CAT_HIGH_QUALITY_IMAGES)) { // If CAT_HIGH_QUALITY_IMAGES not defined, we use thumb if defined and then original photo
284  if ($obj['photo_vignette']) {
285  $filename = $obj['photo_vignette'];
286  } else {
287  $filename = $obj['photo'];
288  }
289  } else {
290  $filename = $obj['photo'];
291  }
292 
293  $realpath = $dir.$filename;
294  $arephoto = true;
295  $this->atleastonephoto = true;
296  }
297  }
298  }
299 
300  if ($realpath && $arephoto) {
301  $realpatharray[$i] = $realpath;
302  }
303  }
304  }
305 
306  if (count($realpatharray) == 0) {
307  $this->posxpicture = $this->posxtva;
308  }
309 
310  if ($conf->propal->multidir_output[$conf->entity]) {
311  $object->fetch_thirdparty();
312 
313  $deja_regle = 0;
314 
315  // Definition of $dir and $file
316  if ($object->specimen) {
317  $dir = $conf->propal->multidir_output[$conf->entity];
318  $file = $dir."/SPECIMEN.pdf";
319  } else {
320  $objectref = dol_sanitizeFileName($object->ref);
321  $dir = $conf->propal->multidir_output[$object->entity]."/".$objectref;
322  $file = $dir."/".$objectref.".pdf";
323  }
324 
325  if (!file_exists($dir)) {
326  if (dol_mkdir($dir) < 0) {
327  $this->error = $langs->transnoentities("ErrorCanNotCreateDir", $dir);
328  return 0;
329  }
330  }
331 
332  if (file_exists($dir)) {
333  // Add pdfgeneration hook
334  if (!is_object($hookmanager)) {
335  include_once DOL_DOCUMENT_ROOT.'/core/class/hookmanager.class.php';
336  $hookmanager = new HookManager($this->db);
337  }
338  $hookmanager->initHooks(array('pdfgeneration'));
339  $parameters = array('file'=>$file, 'object'=>$object, 'outputlangs'=>$outputlangs);
340  global $action;
341  $reshook = $hookmanager->executeHooks('beforePDFCreation', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
342 
343  // Set nblines with the new content of lines after hook
344  $nblines = count($object->lines);
345  //$nbpayments = count($object->getListOfPayments());
346 
347  // Create pdf instance
348  $pdf = pdf_getInstance($this->format);
349  $default_font_size = pdf_getPDFFontSize($outputlangs); // Must be after pdf_getInstance
350  $pdf->SetAutoPageBreak(1, 0);
351 
352  if (class_exists('TCPDF')) {
353  $pdf->setPrintHeader(false);
354  $pdf->setPrintFooter(false);
355  }
356  $pdf->SetFont(pdf_getPDFFont($outputlangs));
357  // Set path to the background PDF File
358  if (!empty($conf->global->MAIN_ADD_PDF_BACKGROUND)) {
359  $logodir = $conf->mycompany->dir_output;
360  if (!empty($conf->mycompany->multidir_output[$object->entity])) {
361  $logodir = $conf->mycompany->multidir_output[$object->entity];
362  }
363  $pagecount = $pdf->setSourceFile($logodir.'/'.$conf->global->MAIN_ADD_PDF_BACKGROUND);
364  $tplidx = $pdf->importPage(1);
365  }
366 
367  $pdf->Open();
368  $pagenb = 0;
369  $pdf->SetDrawColor(128, 128, 128);
370 
371  $pdf->SetTitle($outputlangs->convToOutputCharset($object->ref));
372  $pdf->SetSubject($outputlangs->transnoentities("PdfCommercialProposalTitle"));
373  $pdf->SetCreator("Dolibarr ".DOL_VERSION);
374  $pdf->SetAuthor($outputlangs->convToOutputCharset($user->getFullName($outputlangs)));
375  $pdf->SetKeyWords($outputlangs->convToOutputCharset($object->ref)." ".$outputlangs->transnoentities("PdfCommercialProposalTitle")." ".$outputlangs->convToOutputCharset($object->thirdparty->name));
376  if (!empty($conf->global->MAIN_DISABLE_PDF_COMPRESSION)) {
377  $pdf->SetCompression(false);
378  }
379 
380  $pdf->SetMargins($this->marge_gauche, $this->marge_haute, $this->marge_droite); // Left, Top, Right
381 
382  // Set $this->atleastonediscount if you have at least one discount
383  for ($i = 0; $i < $nblines; $i++) {
384  if ($object->lines[$i]->remise_percent) {
385  $this->atleastonediscount++;
386  }
387  }
388  if (empty($this->atleastonediscount)) {
389  $delta = ($this->postotalht - $this->posxdiscount);
390  $this->posxpicture += $delta;
391  $this->posxtva += $delta;
392  $this->posxup += $delta;
393  $this->posxqty += $delta;
394  $this->posxunit += $delta;
395  $this->posxdiscount += $delta;
396  // post of fields after are not modified, stay at same position
397  }
398 
399  // New page
400  $pdf->AddPage();
401  if (!empty($tplidx)) {
402  $pdf->useTemplate($tplidx);
403  }
404  $pagenb++;
405 
406  $heightforinfotot = 40; // Height reserved to output the info and total part
407  $heightforsignature = empty($conf->global->PROPAL_DISABLE_SIGNATURE) ? (pdfGetHeightForHtmlContent($pdf, $outputlangs->transnoentities("ProposalCustomerSignature")) + 10) : 0;
408  $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
409  $heightforfooter = $this->marge_basse + 8; // Height reserved to output the footer (value include bottom margin)
410  if (!empty($conf->global->MAIN_GENERATE_DOCUMENTS_SHOW_FOOT_DETAILS)) {
411  $heightforfooter += 6;
412  }
413  //print $heightforinfotot + $heightforsignature + $heightforfreetext + $heightforfooter;exit;
414 
415  $top_shift = $this->_pagehead($pdf, $object, 1, $outputlangs, $outputlangsbis);
416  $pdf->SetFont('', '', $default_font_size - 1);
417  $pdf->MultiCell(0, 3, ''); // Set interline to 3
418  $pdf->SetTextColor(0, 0, 0);
419 
420 
421  $tab_top = 90 + $top_shift;
422  $tab_top_newpage = (empty($conf->global->MAIN_PDF_DONOTREPEAT_HEAD) ? 42 + $top_shift : 10);
423 
424  // Incoterm
425  $height_incoterms = 0;
426  if (!empty($conf->incoterm->enabled)) {
427  $desc_incoterms = $object->getIncotermsForPDF();
428  if ($desc_incoterms) {
429  $tab_top -= 2;
430 
431  $pdf->SetFont('', '', $default_font_size - 1);
432  $pdf->writeHTMLCell(190, 3, $this->posxdesc - 1, $tab_top - 1, dol_htmlentitiesbr($desc_incoterms), 0, 1);
433  $nexY = $pdf->GetY();
434  $height_incoterms = $nexY - $tab_top;
435 
436  // Rect takes a length in 3rd parameter
437  $pdf->SetDrawColor(192, 192, 192);
438  $pdf->Rect($this->marge_gauche, $tab_top - 1, $this->page_largeur - $this->marge_gauche - $this->marge_droite, $height_incoterms + 1);
439 
440  $tab_top = $nexY + 6;
441  $height_incoterms += 4;
442  }
443  }
444 
445  // Displays notes
446  $notetoshow = empty($object->note_public) ? '' : $object->note_public;
447  if (!empty($conf->global->MAIN_ADD_SALE_REP_SIGNATURE_IN_NOTE)) {
448  // Get first sale rep
449  if (is_object($object->thirdparty)) {
450  $salereparray = $object->thirdparty->getSalesRepresentatives($user);
451  $salerepobj = new User($this->db);
452  $salerepobj->fetch($salereparray[0]['id']);
453  if (!empty($salerepobj->signature)) {
454  $notetoshow = dol_concatdesc($notetoshow, $salerepobj->signature);
455  }
456  }
457  }
458  // Extrafields in note
459  $extranote = $this->getExtrafieldsInHtml($object, $outputlangs);
460  if (!empty($extranote)) {
461  $notetoshow = dol_concatdesc($notetoshow, $extranote);
462  }
463  if (!empty($conf->global->MAIN_ADD_CREATOR_IN_NOTE) && $object->user_author_id > 0) {
464  $tmpuser = new User($this->db);
465  $tmpuser->fetch($object->user_author_id);
466 
467 
468  $creator_info = $langs->trans("CaseFollowedBy").' '.$tmpuser->getFullName($langs);
469  if ($tmpuser->email) $creator_info .= ', '.$langs->trans("EMail").': '.$tmpuser->email;
470  if ($tmpuser->office_phone) $creator_info .= ', '.$langs->trans("Phone").': '.$tmpuser->office_phone;
471 
472  $notetoshow = dol_concatdesc($notetoshow, $creator_info);
473  }
474 
475  if ($notetoshow) {
476  $tab_top -= 2;
477 
478  $substitutionarray = pdf_getSubstitutionArray($outputlangs, null, $object);
479  complete_substitutions_array($substitutionarray, $outputlangs, $object);
480  $notetoshow = make_substitutions($notetoshow, $substitutionarray, $outputlangs);
481  $notetoshow = convertBackOfficeMediasLinksToPublicLinks($notetoshow);
482 
483  $pdf->SetFont('', '', $default_font_size - 1);
484  $pdf->writeHTMLCell(190, 3, $this->posxdesc - 1, $tab_top - 1, dol_htmlentitiesbr($notetoshow), 0, 1);
485  $nexY = $pdf->GetY();
486  $height_note = $nexY - $tab_top;
487 
488  // Rect takes a length in 3rd parameter
489  $pdf->SetDrawColor(192, 192, 192);
490  $pdf->Rect($this->marge_gauche, $tab_top - 1, $this->page_largeur - $this->marge_gauche - $this->marge_droite, $height_note + 1);
491 
492  $tab_top = $nexY + 6;
493  }
494 
495  $iniY = $tab_top + 7;
496  $curY = $tab_top + 7;
497  $nexY = $tab_top + 7;
498 
499  // Loop on each lines
500  for ($i = 0; $i < $nblines; $i++) {
501  $curY = $nexY;
502  $pdf->SetFont('', '', $default_font_size - 1); // Into loop to work with multipage
503  $pdf->SetTextColor(0, 0, 0);
504 
505  // Define size of image if we need it
506  $imglinesize = array();
507  if (!empty($realpatharray[$i])) {
508  $imglinesize = pdf_getSizeForImage($realpatharray[$i]);
509  }
510 
511  $pdf->setTopMargin($tab_top_newpage);
512  $pdf->setPageOrientation('', 1, $heightforfooter + $heightforfreetext + $heightforsignature + $heightforinfotot); // The only function to edit the bottom margin of current page to set it.
513  $pageposbefore = $pdf->getPage();
514 
515  $showpricebeforepagebreak = 1;
516  $posYAfterImage = 0;
517  $posYAfterDescription = 0;
518 
519  // We start with Photo of product line
520  if (isset($imglinesize['width']) && isset($imglinesize['height']) && ($curY + $imglinesize['height']) > ($this->page_hauteur - ($heightforfooter + $heightforfreetext + $heightforsignature + $heightforinfotot))) { // If photo too high, we moved completely on new page
521  $pdf->AddPage('', '', true);
522  if (!empty($tplidx)) {
523  $pdf->useTemplate($tplidx);
524  }
525  if (empty($conf->global->MAIN_PDF_DONOTREPEAT_HEAD)) {
526  $this->_pagehead($pdf, $object, 0, $outputlangs);
527  }
528  $pdf->setPage($pageposbefore + 1);
529 
530  $curY = $tab_top_newpage;
531 
532  // Allows data in the first page if description is long enough to break in multiples pages
533  if (!empty($conf->global->MAIN_PDF_DATA_ON_FIRST_PAGE)) {
534  $showpricebeforepagebreak = 1;
535  } else {
536  $showpricebeforepagebreak = 0;
537  }
538  }
539 
540  if (isset($imglinesize['width']) && isset($imglinesize['height'])) {
541  $curX = $this->posxpicture - 1;
542  $pdf->Image($realpatharray[$i], $curX + (($this->posxtva - $this->posxpicture - $imglinesize['width']) / 2), $curY, $imglinesize['width'], $imglinesize['height'], '', '', '', 2, 300); // Use 300 dpi
543  // $pdf->Image does not increase value return by getY, so we save it manually
544  $posYAfterImage = $curY + $imglinesize['height'];
545  }
546 
547  // Description of product line
548  $curX = $this->posxdesc - 1;
549 
550  $pdf->startTransaction();
551  pdf_writelinedesc($pdf, $object, $i, $outputlangs, $this->posxpicture - $curX, 3, $curX, $curY, $hideref, $hidedesc);
552  $pageposafter = $pdf->getPage();
553  if ($pageposafter > $pageposbefore) { // There is a pagebreak
554  $pdf->rollbackTransaction(true);
555  $pageposafter = $pageposbefore;
556  //print $pageposafter.'-'.$pageposbefore;exit;
557  $pdf->setPageOrientation('', 1, $heightforfooter); // The only function to edit the bottom margin of current page to set it.
558  pdf_writelinedesc($pdf, $object, $i, $outputlangs, $this->posxpicture - $curX, 3, $curX, $curY, $hideref, $hidedesc);
559 
560  $pageposafter = $pdf->getPage();
561  $posyafter = $pdf->GetY();
562  //var_dump($posyafter); var_dump(($this->page_hauteur - ($heightforfooter+$heightforfreetext+$heightforinfotot))); exit;
563  if ($posyafter > ($this->page_hauteur - ($heightforfooter + $heightforfreetext + $heightforsignature + $heightforinfotot))) { // There is no space left for total+free text
564  if ($i == ($nblines - 1)) { // No more lines, and no space left to show total, so we create a new page
565  $pdf->AddPage('', '', true);
566  if (!empty($tplidx)) {
567  $pdf->useTemplate($tplidx);
568  }
569  if (empty($conf->global->MAIN_PDF_DONOTREPEAT_HEAD)) {
570  $this->_pagehead($pdf, $object, 0, $outputlangs);
571  }
572  $pdf->setPage($pageposafter + 1);
573  }
574  } else {
575  // We found a page break
576 
577  // Allows data in the first page if description is long enough to break in multiples pages
578  if (!empty($conf->global->MAIN_PDF_DATA_ON_FIRST_PAGE)) {
579  $showpricebeforepagebreak = 1;
580  } else {
581  $showpricebeforepagebreak = 0;
582  }
583  }
584  } else // No pagebreak
585  {
586  $pdf->commitTransaction();
587  }
588  $posYAfterDescription = $pdf->GetY();
589 
590  $nexY = $pdf->GetY();
591  $pageposafter = $pdf->getPage();
592 
593  $pdf->setPage($pageposbefore);
594  $pdf->setTopMargin($this->marge_haute);
595  $pdf->setPageOrientation('', 1, 0); // The only function to edit the bottom margin of current page to set it.
596 
597  // We suppose that a too long description or photo were moved completely on next page
598  if ($pageposafter > $pageposbefore && empty($showpricebeforepagebreak)) {
599  $pdf->setPage($pageposafter);
600  $curY = $tab_top_newpage;
601  }
602 
603  $pdf->SetFont('', '', $default_font_size - 1); // On repositionne la police par defaut
604 
605  // VAT Rate
606  if (empty($conf->global->MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT) && empty($conf->global->MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT_COLUMN)) {
607  $vat_rate = pdf_getlinevatrate($object, $i, $outputlangs, $hidedetails);
608  $pdf->SetXY($this->posxtva - 5, $curY);
609  $pdf->MultiCell($this->posxup - $this->posxtva + 4, 3, $vat_rate, 0, 'R');
610  }
611 
612  // Unit price before discount
613  $up_excl_tax = pdf_getlineupexcltax($object, $i, $outputlangs, $hidedetails);
614  $pdf->SetXY($this->posxup, $curY);
615  $pdf->MultiCell($this->posxqty - $this->posxup - 0.8, 3, $up_excl_tax, 0, 'R', 0);
616 
617  // Quantity
618  $qty = pdf_getlineqty($object, $i, $outputlangs, $hidedetails);
619  $pdf->SetXY($this->posxqty, $curY);
620  $pdf->MultiCell($this->posxunit - $this->posxqty - 0.8, 4, $qty, 0, 'R'); // Enough for 6 chars
621 
622  // Unit
623  if (!empty($conf->global->PRODUCT_USE_UNITS)) {
624  $unit = pdf_getlineunit($object, $i, $outputlangs, $hidedetails, $hookmanager);
625  $pdf->SetXY($this->posxunit, $curY);
626  $pdf->MultiCell($this->posxdiscount - $this->posxunit - 0.8, 4, $unit, 0, 'L');
627  }
628 
629  // Discount on line
630  $pdf->SetXY($this->posxdiscount, $curY);
631  if ($object->lines[$i]->remise_percent) {
632  $pdf->SetXY($this->posxdiscount - 2, $curY);
633  $remise_percent = pdf_getlineremisepercent($object, $i, $outputlangs, $hidedetails);
634  $pdf->MultiCell($this->postotalht - $this->posxdiscount + 2, 3, $remise_percent, 0, 'R');
635  }
636 
637  // Total HT line
638  $total_excl_tax = pdf_getlinetotalexcltax($object, $i, $outputlangs, $hidedetails);
639  $pdf->SetXY($this->postotalht, $curY);
640  $pdf->MultiCell($this->page_largeur - $this->marge_droite - $this->postotalht, 3, $total_excl_tax, 0, 'R', 0);
641 
642  // Collecte des totaux par valeur de tva dans $this->tva["taux"]=total_tva
643  if (!empty($conf->multicurrency->enabled) && $object->multicurrency_tx != 1) {
644  $tvaligne = $object->lines[$i]->multicurrency_total_tva;
645  } else {
646  $tvaligne = $object->lines[$i]->total_tva;
647  }
648 
649  $localtax1ligne = $object->lines[$i]->total_localtax1;
650  $localtax2ligne = $object->lines[$i]->total_localtax2;
651  $localtax1_rate = $object->lines[$i]->localtax1_tx;
652  $localtax2_rate = $object->lines[$i]->localtax2_tx;
653  $localtax1_type = $object->lines[$i]->localtax1_type;
654  $localtax2_type = $object->lines[$i]->localtax2_type;
655 
656  if ($object->remise_percent) {
657  $tvaligne -= ($tvaligne * $object->remise_percent) / 100;
658  }
659  if ($object->remise_percent) {
660  $localtax1ligne -= ($localtax1ligne * $object->remise_percent) / 100;
661  }
662  if ($object->remise_percent) {
663  $localtax2ligne -= ($localtax2ligne * $object->remise_percent) / 100;
664  }
665 
666  $vatrate = (string) $object->lines[$i]->tva_tx;
667 
668  // Retrieve type from database for backward compatibility with old records
669  if ((!isset($localtax1_type) || $localtax1_type == '' || !isset($localtax2_type) || $localtax2_type == '') // if tax type not defined
670  && (!empty($localtax1_rate) || !empty($localtax2_rate))) { // and there is local tax
671  $localtaxtmp_array = getLocalTaxesFromRate($vatrate, 0, $object->thirdparty, $mysoc);
672  $localtax1_type = isset($localtaxtmp_array[0]) ? $localtaxtmp_array[0] : '';
673  $localtax2_type = isset($localtaxtmp_array[2]) ? $localtaxtmp_array[2] : '';
674  }
675 
676  // retrieve global local tax
677  if ($localtax1_type && $localtax1ligne != 0) {
678  $this->localtax1[$localtax1_type][$localtax1_rate] += $localtax1ligne;
679  }
680  if ($localtax2_type && $localtax2ligne != 0) {
681  $this->localtax2[$localtax2_type][$localtax2_rate] += $localtax2ligne;
682  }
683 
684  if (($object->lines[$i]->info_bits & 0x01) == 0x01) {
685  $vatrate .= '*';
686  }
687 
688  // Fill $this->tva and $this->tva_array
689  if (!isset($this->tva[$vatrate])) {
690  $this->tva[$vatrate] = 0;
691  }
692  $this->tva[$vatrate] += $tvaligne;
693  $vatcode = $object->lines[$i]->vat_src_code;
694  if (empty($this->tva_array[$vatrate.($vatcode ? ' ('.$vatcode.')' : '')]['amount'])) {
695  $this->tva_array[$vatrate.($vatcode ? ' ('.$vatcode.')' : '')]['amount'] = 0;
696  }
697  $this->tva_array[$vatrate.($vatcode ? ' ('.$vatcode.')' : '')] = array('vatrate'=>$vatrate, 'vatcode'=>$vatcode, 'amount'=> $this->tva_array[$vatrate.($vatcode ? ' ('.$vatcode.')' : '')]['amount'] + $tvaligne);
698 
699  if ($posYAfterImage > $posYAfterDescription) {
700  $nexY = $posYAfterImage;
701  }
702 
703  // Add line
704  if (!empty($conf->global->MAIN_PDF_DASH_BETWEEN_LINES) && $i < ($nblines - 1)) {
705  $pdf->setPage($pageposafter);
706  $pdf->SetLineStyle(array('dash'=>'1,1', 'color'=>array(80, 80, 80)));
707  //$pdf->SetDrawColor(190,190,200);
708  $pdf->line($this->marge_gauche, $nexY + 1, $this->page_largeur - $this->marge_droite, $nexY + 1);
709  $pdf->SetLineStyle(array('dash'=>0));
710  }
711 
712  $nexY += 2; // Add space between lines
713 
714  // Detect if some page were added automatically and output _tableau for past pages
715  while ($pagenb < $pageposafter) {
716  $pdf->setPage($pagenb);
717  if ($pagenb == 1) {
718  $this->_tableau($pdf, $tab_top, $this->page_hauteur - $tab_top - $heightforfooter, 0, $outputlangs, 0, 1, $object->multicurrency_code);
719  } else {
720  $this->_tableau($pdf, $tab_top_newpage, $this->page_hauteur - $tab_top_newpage - $heightforfooter, 0, $outputlangs, 1, 1, $object->multicurrency_code);
721  }
722  $this->_pagefoot($pdf, $object, $outputlangs, 1);
723  $pagenb++;
724  $pdf->setPage($pagenb);
725  $pdf->setPageOrientation('', 1, 0); // The only function to edit the bottom margin of current page to set it.
726  if (empty($conf->global->MAIN_PDF_DONOTREPEAT_HEAD)) {
727  $this->_pagehead($pdf, $object, 0, $outputlangs);
728  }
729  if (!empty($tplidx)) {
730  $pdf->useTemplate($tplidx);
731  }
732  }
733  if (isset($object->lines[$i + 1]->pagebreak) && $object->lines[$i + 1]->pagebreak) {
734  if ($pagenb == 1) {
735  $this->_tableau($pdf, $tab_top, $this->page_hauteur - $tab_top - $heightforfooter, 0, $outputlangs, 0, 1, $object->multicurrency_code);
736  } else {
737  $this->_tableau($pdf, $tab_top_newpage, $this->page_hauteur - $tab_top_newpage - $heightforfooter, 0, $outputlangs, 1, 1, $object->multicurrency_code);
738  }
739  $this->_pagefoot($pdf, $object, $outputlangs, 1);
740  // New page
741  $pdf->AddPage();
742  if (!empty($tplidx)) {
743  $pdf->useTemplate($tplidx);
744  }
745  $pagenb++;
746  if (empty($conf->global->MAIN_PDF_DONOTREPEAT_HEAD)) {
747  $this->_pagehead($pdf, $object, 0, $outputlangs);
748  }
749  }
750  }
751 
752  // Show square
753  if ($pagenb == 1) {
754  $this->_tableau($pdf, $tab_top, $this->page_hauteur - $tab_top - $heightforinfotot - $heightforfreetext - $heightforsignature - $heightforfooter, 0, $outputlangs, 0, 0, $object->multicurrency_code);
755  $bottomlasttab = $this->page_hauteur - $heightforinfotot - $heightforfreetext - $heightforsignature - $heightforfooter + 1;
756  } else {
757  $this->_tableau($pdf, $tab_top_newpage, $this->page_hauteur - $tab_top_newpage - $heightforinfotot - $heightforfreetext - $heightforsignature - $heightforfooter, 0, $outputlangs, 1, 0, $object->multicurrency_code);
758  $bottomlasttab = $this->page_hauteur - $heightforinfotot - $heightforfreetext - $heightforsignature - $heightforfooter + 1;
759  }
760 
761  // Affiche zone infos
762  $posy = $this->_tableau_info($pdf, $object, $bottomlasttab, $outputlangs);
763 
764  // Affiche zone totaux
765  $posy = $this->_tableau_tot($pdf, $object, 0, $bottomlasttab, $outputlangs);
766 
767  // Affiche zone versements
768  /*
769  if ($deja_regle || $amount_credit_notes_included || $amount_deposits_included)
770  {
771  $posy=$this->_tableau_versements($pdf, $object, $posy, $outputlangs);
772  }
773  */
774 
775  // Customer signature area
776  if (empty($conf->global->PROPAL_DISABLE_SIGNATURE)) {
777  $posy = $this->_signature_area($pdf, $object, $posy, $outputlangs);
778  }
779 
780  // Pied de page
781  $this->_pagefoot($pdf, $object, $outputlangs);
782  if (method_exists($pdf, 'AliasNbPages')) {
783  $pdf->AliasNbPages();
784  }
785 
786  //If propal merge product PDF is active
787  if (!empty($conf->global->PRODUIT_PDF_MERGE_PROPAL)) {
788  require_once DOL_DOCUMENT_ROOT.'/product/class/propalmergepdfproduct.class.php';
789 
790  $already_merged = array();
791  foreach ($object->lines as $line) {
792  if (!empty($line->fk_product) && !(in_array($line->fk_product, $already_merged))) {
793  // Find the desire PDF
794  $filetomerge = new Propalmergepdfproduct($this->db);
795 
796  if ($conf->global->MAIN_MULTILANGS) {
797  $filetomerge->fetch_by_product($line->fk_product, $outputlangs->defaultlang);
798  } else {
799  $filetomerge->fetch_by_product($line->fk_product);
800  }
801 
802  $already_merged[] = $line->fk_product;
803 
804  $product = new Product($this->db);
805  $product->fetch($line->fk_product);
806 
807  if ($product->entity != $conf->entity) {
808  $entity_product_file = $product->entity;
809  } else {
810  $entity_product_file = $conf->entity;
811  }
812 
813  // If PDF is selected and file is not empty
814  if (count($filetomerge->lines) > 0) {
815  foreach ($filetomerge->lines as $linefile) {
816  if (!empty($linefile->id) && !empty($linefile->file_name)) {
817  if (!empty($conf->global->PRODUCT_USE_OLD_PATH_FOR_PHOTO)) {
818  if (!empty($conf->product->enabled)) {
819  $filetomerge_dir = $conf->product->multidir_output[$entity_product_file].'/'.get_exdir($product->id, 2, 0, 0, $product, 'product').$product->id."/photos";
820  } elseif (!empty($conf->service->enabled)) {
821  $filetomerge_dir = $conf->service->multidir_output[$entity_product_file].'/'.get_exdir($product->id, 2, 0, 0, $product, 'product').$product->id."/photos";
822  }
823  } else {
824  if (!empty($conf->product->enabled)) {
825  $filetomerge_dir = $conf->product->multidir_output[$entity_product_file].'/'.get_exdir(0, 0, 0, 0, $product, 'product');
826  } elseif (!empty($conf->service->enabled)) {
827  $filetomerge_dir = $conf->service->multidir_output[$entity_product_file].'/'.get_exdir(0, 0, 0, 0, $product, 'product');
828  }
829  }
830 
831  dol_syslog(get_class($this).':: upload_dir='.$filetomerge_dir, LOG_DEBUG);
832 
833  $infile = $filetomerge_dir.'/'.$linefile->file_name;
834  if (file_exists($infile) && is_readable($infile)) {
835  $pagecount = $pdf->setSourceFile($infile);
836  for ($i = 1; $i <= $pagecount; $i++) {
837  $tplIdx = $pdf->importPage($i);
838  if ($tplIdx !== false) {
839  $s = $pdf->getTemplatesize($tplIdx);
840  $pdf->AddPage($s['h'] > $s['w'] ? 'P' : 'L');
841  $pdf->useTemplate($tplIdx);
842  } else {
843  setEventMessages(null, array($infile.' cannot be added, probably protected PDF'), 'warnings');
844  }
845  }
846  }
847  }
848  }
849  }
850  }
851  }
852  }
853 
854  $pdf->Close();
855 
856  $pdf->Output($file, 'F');
857 
858  //Add pdfgeneration hook
859  $hookmanager->initHooks(array('pdfgeneration'));
860  $parameters = array('file'=>$file, 'object'=>$object, 'outputlangs'=>$outputlangs);
861  global $action;
862  $reshook = $hookmanager->executeHooks('afterPDFCreation', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
863  if ($reshook < 0) {
864  $this->error = $hookmanager->error;
865  $this->errors = $hookmanager->errors;
866  }
867 
868  if (!empty($conf->global->MAIN_UMASK)) {
869  @chmod($file, octdec($conf->global->MAIN_UMASK));
870  }
871 
872  $this->result = array('fullpath'=>$file);
873 
874  return 1; // No error
875  } else {
876  $this->error = $langs->trans("ErrorCanNotCreateDir", $dir);
877  return 0;
878  }
879  } else {
880  $this->error = $langs->trans("ErrorConstantNotDefined", "PROP_OUTPUTDIR");
881  return 0;
882  }
883  }
884 
885  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
886  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
896  protected function _tableau_versements(&$pdf, $object, $posy, $outputlangs)
897  {
898  // phpcs:enable
899  }
900 
901  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
902  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
912  protected function _tableau_info(&$pdf, $object, $posy, $outputlangs)
913  {
914  // phpcs:enable
915  global $conf, $mysoc;
916  $default_font_size = pdf_getPDFFontSize($outputlangs);
917 
918  $pdf->SetFont('', '', $default_font_size - 1);
919 
920  // If France, show VAT mention if not applicable
921  if ($this->emetteur->country_code == 'FR' && empty($mysoc->tva_assuj)) {
922  $pdf->SetFont('', 'B', $default_font_size - 2);
923  $pdf->SetXY($this->marge_gauche, $posy);
924  $pdf->MultiCell(100, 3, $outputlangs->transnoentities("VATIsNotUsedForInvoice"), 0, 'L', 0);
925 
926  $posy = $pdf->GetY() + 4;
927  }
928 
929  $posxval = 52;
930  if (!empty($conf->global->MAIN_PDF_DELIVERY_DATE_TEXT)) {
931  $displaydate = "daytext";
932  } else {
933  $displaydate = "day";
934  }
935 
936  // Show shipping date
937  if (!empty($object->delivery_date)) {
938  $outputlangs->load("sendings");
939  $pdf->SetFont('', 'B', $default_font_size - 2);
940  $pdf->SetXY($this->marge_gauche, $posy);
941  $titre = $outputlangs->transnoentities("DateDeliveryPlanned").':';
942  $pdf->MultiCell(80, 4, $titre, 0, 'L');
943  $pdf->SetFont('', '', $default_font_size - 2);
944  $pdf->SetXY($posxval, $posy);
945  $dlp = dol_print_date($object->delivery_date, $displaydate, false, $outputlangs, true);
946  $pdf->MultiCell(80, 4, $dlp, 0, 'L');
947 
948  $posy = $pdf->GetY() + 1;
949  } elseif ($object->availability_code || $object->availability) { // Show availability conditions
950  $pdf->SetFont('', 'B', $default_font_size - 2);
951  $pdf->SetXY($this->marge_gauche, $posy);
952  $titre = $outputlangs->transnoentities("AvailabilityPeriod").':';
953  $pdf->MultiCell(80, 4, $titre, 0, 'L');
954  $pdf->SetTextColor(0, 0, 0);
955  $pdf->SetFont('', '', $default_font_size - 2);
956  $pdf->SetXY($posxval, $posy);
957  $lib_availability = $outputlangs->transnoentities("AvailabilityType".$object->availability_code) != ('AvailabilityType'.$object->availability_code) ? $outputlangs->transnoentities("AvailabilityType".$object->availability_code) : $outputlangs->convToOutputCharset($object->availability);
958  $lib_availability = str_replace('\n', "\n", $lib_availability);
959  $pdf->MultiCell(80, 4, $lib_availability, 0, 'L');
960 
961  $posy = $pdf->GetY() + 1;
962  }
963 
964  // Show payments conditions
965  if (empty($conf->global->PROPOSAL_PDF_HIDE_PAYMENTTERM) && ($object->cond_reglement_code || $object->cond_reglement)) {
966  $pdf->SetFont('', 'B', $default_font_size - 2);
967  $pdf->SetXY($this->marge_gauche, $posy);
968  $titre = $outputlangs->transnoentities("PaymentConditions").':';
969  $pdf->MultiCell(43, 4, $titre, 0, 'L');
970 
971  $pdf->SetFont('', '', $default_font_size - 2);
972  $pdf->SetXY($posxval, $posy);
973  $lib_condition_paiement = $outputlangs->transnoentities("PaymentCondition".$object->cond_reglement_code) != ('PaymentCondition'.$object->cond_reglement_code) ? $outputlangs->transnoentities("PaymentCondition".$object->cond_reglement_code) : $outputlangs->convToOutputCharset($object->cond_reglement_doc ? $object->cond_reglement_doc : $object->cond_reglement_label);
974  $lib_condition_paiement = str_replace('\n', "\n", $lib_condition_paiement);
975  if ($object->deposit_percent > 0) {
976  $lib_condition_paiement = str_replace('__DEPOSIT_PERCENT__', $object->deposit_percent, $lib_condition_paiement);
977  }
978  $pdf->MultiCell(67, 4, $lib_condition_paiement, 0, 'L');
979 
980  $posy = $pdf->GetY() + 3;
981  }
982 
983  if (empty($conf->global->PROPOSAL_PDF_HIDE_PAYMENTMODE)) {
984  // Check a payment mode is defined
985  /* Not required on a proposal
986  if (empty($object->mode_reglement_code)
987  && ! $conf->global->FACTURE_CHQ_NUMBER
988  && ! $conf->global->FACTURE_RIB_NUMBER)
989  {
990  $pdf->SetXY($this->marge_gauche, $posy);
991  $pdf->SetTextColor(200,0,0);
992  $pdf->SetFont('','B', $default_font_size - 2);
993  $pdf->MultiCell(90, 3, $outputlangs->transnoentities("ErrorNoPaiementModeConfigured"),0,'L',0);
994  $pdf->SetTextColor(0,0,0);
995 
996  $posy=$pdf->GetY()+1;
997  }
998  */
999 
1000  // Show payment mode
1001  if ($object->mode_reglement_code
1002  && $object->mode_reglement_code != 'CHQ'
1003  && $object->mode_reglement_code != 'VIR') {
1004  $pdf->SetFont('', 'B', $default_font_size - 2);
1005  $pdf->SetXY($this->marge_gauche, $posy);
1006  $titre = $outputlangs->transnoentities("PaymentMode").':';
1007  $pdf->MultiCell(80, 5, $titre, 0, 'L');
1008  $pdf->SetFont('', '', $default_font_size - 2);
1009  $pdf->SetXY($posxval, $posy);
1010  $lib_mode_reg = $outputlangs->transnoentities("PaymentType".$object->mode_reglement_code) != ('PaymentType'.$object->mode_reglement_code) ? $outputlangs->transnoentities("PaymentType".$object->mode_reglement_code) : $outputlangs->convToOutputCharset($object->mode_reglement);
1011  $pdf->MultiCell(80, 5, $lib_mode_reg, 0, 'L');
1012 
1013  $posy = $pdf->GetY() + 2;
1014  }
1015 
1016  // Show payment mode CHQ
1017  if (empty($object->mode_reglement_code) || $object->mode_reglement_code == 'CHQ') {
1018  // Si mode reglement non force ou si force a CHQ
1019  if (!empty($conf->global->FACTURE_CHQ_NUMBER)) {
1020  $diffsizetitle = (empty($conf->global->PDF_DIFFSIZE_TITLE) ? 3 : $conf->global->PDF_DIFFSIZE_TITLE);
1021 
1022  if ($conf->global->FACTURE_CHQ_NUMBER > 0) {
1023  $account = new Account($this->db);
1024  $account->fetch($conf->global->FACTURE_CHQ_NUMBER);
1025 
1026  $pdf->SetXY($this->marge_gauche, $posy);
1027  $pdf->SetFont('', 'B', $default_font_size - $diffsizetitle);
1028  $pdf->MultiCell(100, 3, $outputlangs->transnoentities('PaymentByChequeOrderedTo', $account->proprio), 0, 'L', 0);
1029  $posy = $pdf->GetY() + 1;
1030 
1031  if (empty($conf->global->MAIN_PDF_HIDE_CHQ_ADDRESS)) {
1032  $pdf->SetXY($this->marge_gauche, $posy);
1033  $pdf->SetFont('', '', $default_font_size - $diffsizetitle);
1034  $pdf->MultiCell(100, 3, $outputlangs->convToOutputCharset($account->owner_address), 0, 'L', 0);
1035  $posy = $pdf->GetY() + 2;
1036  }
1037  }
1038  if ($conf->global->FACTURE_CHQ_NUMBER == -1) {
1039  $pdf->SetXY($this->marge_gauche, $posy);
1040  $pdf->SetFont('', 'B', $default_font_size - $diffsizetitle);
1041  $pdf->MultiCell(100, 3, $outputlangs->transnoentities('PaymentByChequeOrderedTo', $this->emetteur->name), 0, 'L', 0);
1042  $posy = $pdf->GetY() + 1;
1043 
1044  if (empty($conf->global->MAIN_PDF_HIDE_CHQ_ADDRESS)) {
1045  $pdf->SetXY($this->marge_gauche, $posy);
1046  $pdf->SetFont('', '', $default_font_size - $diffsizetitle);
1047  $pdf->MultiCell(100, 3, $outputlangs->convToOutputCharset($this->emetteur->getFullAddress()), 0, 'L', 0);
1048  $posy = $pdf->GetY() + 2;
1049  }
1050  }
1051  }
1052  }
1053 
1054  // If payment mode not forced or forced to VIR, show payment with BAN
1055  if (empty($object->mode_reglement_code) || $object->mode_reglement_code == 'VIR') {
1056  if (!empty($object->fk_account) || !empty($object->fk_bank) || !empty($conf->global->FACTURE_RIB_NUMBER)) {
1057  $bankid = (empty($object->fk_account) ? $conf->global->FACTURE_RIB_NUMBER : $object->fk_account);
1058  if (!empty($object->fk_bank)) {
1059  $bankid = $object->fk_bank; // For backward compatibility when object->fk_account is forced with object->fk_bank
1060  }
1061  $account = new Account($this->db);
1062  $account->fetch($bankid);
1063 
1064  $curx = $this->marge_gauche;
1065  $cury = $posy;
1066 
1067  $posy = pdf_bank($pdf, $outputlangs, $curx, $cury, $account, 0, $default_font_size);
1068 
1069  $posy += 2;
1070  }
1071  }
1072  }
1073 
1074  return $posy;
1075  }
1076 
1077  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
1078  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1090  protected function _tableau_tot(&$pdf, $object, $deja_regle, $posy, $outputlangs, $outputlangsbis = null)
1091  {
1092  // phpcs:enable
1093  global $conf, $mysoc;
1094  $default_font_size = pdf_getPDFFontSize($outputlangs);
1095 
1096  $tab2_top = $posy;
1097  $tab2_hl = 4;
1098  $pdf->SetFont('', '', $default_font_size - 1);
1099 
1100  // Total table
1101  $col1x = 120;
1102  $col2x = 170;
1103  if ($this->page_largeur < 210) { // To work with US executive format
1104  $col2x -= 20;
1105  }
1106  $largcol2 = ($this->page_largeur - $this->marge_droite - $col2x);
1107 
1108  $useborder = 0;
1109  $index = 0;
1110 
1111  // Total HT
1112  $pdf->SetFillColor(255, 255, 255);
1113  $pdf->SetXY($col1x, $tab2_top + 0);
1114  $pdf->MultiCell($col2x - $col1x, $tab2_hl, $outputlangs->transnoentities("TotalHT"), 0, 'L', 1);
1115 
1116  $total_ht = ((!empty($conf->multicurrency->enabled) && isset($object->multicurrency_tx) && $object->multicurrency_tx != 1) ? $object->multicurrency_total_ht : $object->total_ht);
1117  $pdf->SetXY($col2x, $tab2_top + 0);
1118  $pdf->MultiCell($largcol2, $tab2_hl, price($total_ht + (!empty($object->remise) ? $object->remise : 0), 0, $outputlangs), 0, 'R', 1);
1119 
1120  // Show VAT by rates and total
1121  $pdf->SetFillColor(248, 248, 248);
1122 
1123  $total_ttc = (!empty($conf->multicurrency->enabled) && $object->multicurrency_tx != 1) ? $object->multicurrency_total_ttc : $object->total_ttc;
1124 
1125  $this->atleastoneratenotnull = 0;
1126  if (empty($conf->global->MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT)) {
1127  $tvaisnull = ((!empty($this->tva) && count($this->tva) == 1 && isset($this->tva['0.000']) && is_float($this->tva['0.000'])) ? true : false);
1128  if (!empty($conf->global->MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT_IFNULL) && $tvaisnull) {
1129  // Nothing to do
1130  } else {
1131  //Local tax 1 before VAT
1132  //if (! empty($conf->global->FACTURE_LOCAL_TAX1_OPTION) && $conf->global->FACTURE_LOCAL_TAX1_OPTION=='localtax1on')
1133  //{
1134  foreach ($this->localtax1 as $localtax_type => $localtax_rate) {
1135  if (in_array((string) $localtax_type, array('1', '3', '5'))) {
1136  continue;
1137  }
1138 
1139  foreach ($localtax_rate as $tvakey => $tvaval) {
1140  if ($tvakey != 0) { // On affiche pas taux 0
1141  //$this->atleastoneratenotnull++;
1142 
1143  $index++;
1144  $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1145 
1146  $tvacompl = '';
1147  if (preg_match('/\*/', $tvakey)) {
1148  $tvakey = str_replace('*', '', $tvakey);
1149  $tvacompl = " (".$outputlangs->transnoentities("NonPercuRecuperable").")";
1150  }
1151  $totalvat = $outputlangs->transcountrynoentities("TotalLT1", $mysoc->country_code).' ';
1152  $totalvat .= vatrate(abs($tvakey), 1).$tvacompl;
1153  $pdf->MultiCell($col2x - $col1x, $tab2_hl, $totalvat, 0, 'L', 1);
1154 
1155  $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1156  $pdf->MultiCell($largcol2, $tab2_hl, price($tvaval, 0, $outputlangs), 0, 'R', 1);
1157  }
1158  }
1159  }
1160  //}
1161  //Local tax 2 before VAT
1162  //if (! empty($conf->global->FACTURE_LOCAL_TAX2_OPTION) && $conf->global->FACTURE_LOCAL_TAX2_OPTION=='localtax2on')
1163  //{
1164  foreach ($this->localtax2 as $localtax_type => $localtax_rate) {
1165  if (in_array((string) $localtax_type, array('1', '3', '5'))) {
1166  continue;
1167  }
1168 
1169  foreach ($localtax_rate as $tvakey => $tvaval) {
1170  if ($tvakey != 0) { // On affiche pas taux 0
1171  //$this->atleastoneratenotnull++;
1172 
1173 
1174 
1175  $index++;
1176  $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1177 
1178  $tvacompl = '';
1179  if (preg_match('/\*/', $tvakey)) {
1180  $tvakey = str_replace('*', '', $tvakey);
1181  $tvacompl = " (".$outputlangs->transnoentities("NonPercuRecuperable").")";
1182  }
1183  $totalvat = $outputlangs->transcountrynoentities("TotalLT2", $mysoc->country_code).' ';
1184  $totalvat .= vatrate(abs($tvakey), 1).$tvacompl;
1185  $pdf->MultiCell($col2x - $col1x, $tab2_hl, $totalvat, 0, 'L', 1);
1186 
1187  $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1188  $pdf->MultiCell($largcol2, $tab2_hl, price($tvaval, 0, $outputlangs), 0, 'R', 1);
1189  }
1190  }
1191  }
1192  //}
1193 
1194  // VAT
1195  foreach ($this->tva_array as $tvakey => $tvaval) {
1196  if ($tvakey != 0) { // On affiche pas taux 0
1197  $this->atleastoneratenotnull++;
1198 
1199  $index++;
1200  $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1201 
1202  $tvacompl = '';
1203  if (preg_match('/\*/', $tvakey)) {
1204  $tvakey = str_replace('*', '', $tvakey);
1205  $tvacompl = " (".$outputlangs->transnoentities("NonPercuRecuperable").")";
1206  }
1207  $totalvat = $outputlangs->transcountrynoentities("TotalVAT", $mysoc->country_code).(is_object($outputlangsbis) ? ' / '.$outputlangsbis->transcountrynoentities("TotalVAT", $mysoc->country_code) : '');
1208  $totalvat .= ' ';
1209  if (getDolGlobalString('PDF_VAT_LABEL_IS_CODE_OR_RATE') == 'rateonly') {
1210  $totalvat .= vatrate($tvaval['vatrate'], 1).$tvacompl;
1211  } elseif (getDolGlobalString('PDF_VAT_LABEL_IS_CODE_OR_RATE') == 'codeonly') {
1212  $totalvat .= ($tvaval['vatcode'] ? $tvaval['vatcode'] : vatrate($tvaval['vatrate'], 1)).$tvacompl;
1213  } else {
1214  $totalvat .= vatrate($tvaval['vatrate'], 1).($tvaval['vatcode'] ? ' ('.$tvaval['vatcode'].')' : '').$tvacompl;
1215  }
1216  $pdf->MultiCell($col2x - $col1x, $tab2_hl, $totalvat, 0, 'L', 1);
1217 
1218  $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1219  $pdf->MultiCell($largcol2, $tab2_hl, price(price2num($tvaval['amount'], 'MT'), 0, $outputlangs), 0, 'R', 1);
1220  }
1221  }
1222 
1223  //Local tax 1 after VAT
1224  //if (! empty($conf->global->FACTURE_LOCAL_TAX1_OPTION) && $conf->global->FACTURE_LOCAL_TAX1_OPTION=='localtax1on')
1225  //{
1226  foreach ($this->localtax1 as $localtax_type => $localtax_rate) {
1227  if (in_array((string) $localtax_type, array('2', '4', '6'))) {
1228  continue;
1229  }
1230 
1231  foreach ($localtax_rate as $tvakey => $tvaval) {
1232  if ($tvakey != 0) { // On affiche pas taux 0
1233  //$this->atleastoneratenotnull++;
1234 
1235  $index++;
1236  $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1237 
1238  $tvacompl = '';
1239  if (preg_match('/\*/', $tvakey)) {
1240  $tvakey = str_replace('*', '', $tvakey);
1241  $tvacompl = " (".$outputlangs->transnoentities("NonPercuRecuperable").")";
1242  }
1243  $totalvat = $outputlangs->transcountrynoentities("TotalLT1", $mysoc->country_code).' ';
1244 
1245  $totalvat .= vatrate(abs($tvakey), 1).$tvacompl;
1246  $pdf->MultiCell($col2x - $col1x, $tab2_hl, $totalvat, 0, 'L', 1);
1247  $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1248  $pdf->MultiCell($largcol2, $tab2_hl, price($tvaval, 0, $outputlangs), 0, 'R', 1);
1249  }
1250  }
1251  }
1252  //}
1253  //Local tax 2 after VAT
1254  //if (! empty($conf->global->FACTURE_LOCAL_TAX2_OPTION) && $conf->global->FACTURE_LOCAL_TAX2_OPTION=='localtax2on')
1255  //{
1256  foreach ($this->localtax2 as $localtax_type => $localtax_rate) {
1257  if (in_array((string) $localtax_type, array('2', '4', '6'))) {
1258  continue;
1259  }
1260 
1261  foreach ($localtax_rate as $tvakey => $tvaval) {
1262  // retrieve global local tax
1263  if ($tvakey != 0) { // On affiche pas taux 0
1264  //$this->atleastoneratenotnull++;
1265 
1266  $index++;
1267  $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1268 
1269  $tvacompl = '';
1270  if (preg_match('/\*/', $tvakey)) {
1271  $tvakey = str_replace('*', '', $tvakey);
1272  $tvacompl = " (".$outputlangs->transnoentities("NonPercuRecuperable").")";
1273  }
1274  $totalvat = $outputlangs->transcountrynoentities("TotalLT2", $mysoc->country_code).' ';
1275 
1276  $totalvat .= vatrate(abs($tvakey), 1).$tvacompl;
1277  $pdf->MultiCell($col2x - $col1x, $tab2_hl, $totalvat, 0, 'L', 1);
1278 
1279  $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1280  $pdf->MultiCell($largcol2, $tab2_hl, price($tvaval, 0, $outputlangs), 0, 'R', 1);
1281  }
1282  }
1283  }
1284  //}
1285 
1286  // Total TTC
1287  $index++;
1288  $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1289  $pdf->SetTextColor(0, 0, 60);
1290  $pdf->SetFillColor(224, 224, 224);
1291  $pdf->MultiCell($col2x - $col1x, $tab2_hl, $outputlangs->transnoentities("TotalTTC"), $useborder, 'L', 1);
1292 
1293  $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1294  $pdf->MultiCell($largcol2, $tab2_hl, price($total_ttc, 0, $outputlangs), $useborder, 'R', 1);
1295  }
1296  }
1297 
1298  $pdf->SetTextColor(0, 0, 0);
1299 
1300  /*
1301  $resteapayer = $object->total_ttc - $deja_regle;
1302  if (! empty($object->paye)) $resteapayer=0;
1303  */
1304 
1305  if ($deja_regle > 0) {
1306  $index++;
1307 
1308  $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1309  $pdf->MultiCell($col2x - $col1x, $tab2_hl, $outputlangs->transnoentities("AlreadyPaid"), 0, 'L', 0);
1310 
1311  $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1312  $pdf->MultiCell($largcol2, $tab2_hl, price($deja_regle, 0, $outputlangs), 0, 'R', 0);
1313 
1314  /*
1315  if ($object->close_code == 'discount_vat')
1316  {
1317  $index++;
1318  $pdf->SetFillColor(255,255,255);
1319 
1320  $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1321  $pdf->MultiCell($col2x-$col1x, $tab2_hl, $outputlangs->transnoentities("EscompteOfferedShort"), $useborder, 'L', 1);
1322 
1323  $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1324  $pdf->MultiCell($largcol2, $tab2_hl, price($object->total_ttc - $deja_regle, 0, $outputlangs), $useborder, 'R', 1);
1325 
1326  $resteapayer=0;
1327  }
1328  */
1329 
1330  $index++;
1331  $pdf->SetTextColor(0, 0, 60);
1332  $pdf->SetFillColor(224, 224, 224);
1333  $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1334  $pdf->MultiCell($col2x - $col1x, $tab2_hl, $outputlangs->transnoentities("RemainderToPay"), $useborder, 'L', 1);
1335 
1336  $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1337  $pdf->MultiCell($largcol2, $tab2_hl, price($resteapayer, 0, $outputlangs), $useborder, 'R', 1);
1338 
1339  $pdf->SetFont('', '', $default_font_size - 1);
1340  $pdf->SetTextColor(0, 0, 0);
1341  }
1342 
1343  $index++;
1344  return ($tab2_top + ($tab2_hl * $index));
1345  }
1346 
1347  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
1361  protected function _tableau(&$pdf, $tab_top, $tab_height, $nexY, $outputlangs, $hidetop = 0, $hidebottom = 0, $currency = '')
1362  {
1363  global $conf;
1364 
1365  // Force to disable hidetop and hidebottom
1366  $hidebottom = 0;
1367  if ($hidetop) {
1368  $hidetop = -1;
1369  }
1370 
1371  $currency = !empty($currency) ? $currency : $conf->currency;
1372  $default_font_size = pdf_getPDFFontSize($outputlangs);
1373 
1374  // Amount in (at tab_top - 1)
1375  $pdf->SetTextColor(0, 0, 0);
1376  $pdf->SetFont('', '', $default_font_size - 2);
1377 
1378  if (empty($hidetop)) {
1379  $titre = $outputlangs->transnoentities("AmountInCurrency", $outputlangs->transnoentitiesnoconv("Currency".$currency));
1380  $pdf->SetXY($this->page_largeur - $this->marge_droite - ($pdf->GetStringWidth($titre) + 3), $tab_top - 4);
1381  $pdf->MultiCell(($pdf->GetStringWidth($titre) + 3), 2, $titre);
1382 
1383  //$conf->global->MAIN_PDF_TITLE_BACKGROUND_COLOR='230,230,230';
1384  if (!empty($conf->global->MAIN_PDF_TITLE_BACKGROUND_COLOR)) {
1385  $pdf->Rect($this->marge_gauche, $tab_top, $this->page_largeur - $this->marge_droite - $this->marge_gauche, 5, 'F', null, explode(',', $conf->global->MAIN_PDF_TITLE_BACKGROUND_COLOR));
1386  }
1387  }
1388 
1389  $pdf->SetDrawColor(128, 128, 128);
1390  $pdf->SetFont('', '', $default_font_size - 1);
1391 
1392  // Output Rect
1393  $this->printRect($pdf, $this->marge_gauche, $tab_top, $this->page_largeur - $this->marge_gauche - $this->marge_droite, $tab_height, $hidetop, $hidebottom); // Rect takes a length in 3rd parameter and 4th parameter
1394 
1395  if (empty($hidetop)) {
1396  $pdf->line($this->marge_gauche, $tab_top + 5, $this->page_largeur - $this->marge_droite, $tab_top + 5); // line takes a position y in 2nd parameter and 4th parameter
1397 
1398  $pdf->SetXY($this->posxdesc - 1, $tab_top + 1);
1399  $pdf->MultiCell(108, 2, $outputlangs->transnoentities("Designation"), '', 'L');
1400  }
1401 
1402  if (!empty($conf->global->MAIN_GENERATE_PROPOSALS_WITH_PICTURE)) {
1403  $pdf->line($this->posxpicture - 1, $tab_top, $this->posxpicture - 1, $tab_top + $tab_height);
1404  if (empty($hidetop)) {
1405  //$pdf->SetXY($this->posxpicture-1, $tab_top+1);
1406  //$pdf->MultiCell($this->posxtva-$this->posxpicture-1,2, $outputlangs->transnoentities("Photo"),'','C');
1407  }
1408  }
1409 
1410  if (empty($conf->global->MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT) && empty($conf->global->MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT_COLUMN)) {
1411  $pdf->line($this->posxtva - 1, $tab_top, $this->posxtva - 1, $tab_top + $tab_height);
1412  if (empty($hidetop)) {
1413  // Not do -3 and +3 instead of -1 -1 to have more space for text 'Sales tax'
1414  $pdf->SetXY($this->posxtva - 3, $tab_top + 1);
1415  $pdf->MultiCell($this->posxup - $this->posxtva + 3, 2, $outputlangs->transnoentities("VAT"), '', 'C');
1416  }
1417  }
1418 
1419  $pdf->line($this->posxup - 1, $tab_top, $this->posxup - 1, $tab_top + $tab_height);
1420  if (empty($hidetop)) {
1421  $pdf->SetXY($this->posxup - 1, $tab_top + 1);
1422  $pdf->MultiCell($this->posxqty - $this->posxup - 1, 2, $outputlangs->transnoentities("PriceUHT"), '', 'C');
1423  }
1424 
1425  $pdf->line($this->posxqty - 1, $tab_top, $this->posxqty - 1, $tab_top + $tab_height);
1426  if (empty($hidetop)) {
1427  $pdf->SetXY($this->posxqty - 1, $tab_top + 1);
1428  $pdf->MultiCell($this->posxunit - $this->posxqty - 1, 2, $outputlangs->transnoentities("Qty"), '', 'C');
1429  }
1430 
1431  if (!empty($conf->global->PRODUCT_USE_UNITS)) {
1432  $pdf->line($this->posxunit - 1, $tab_top, $this->posxunit - 1, $tab_top + $tab_height);
1433  if (empty($hidetop)) {
1434  $pdf->SetXY($this->posxunit - 1, $tab_top + 1);
1435  $pdf->MultiCell(
1436  $this->posxdiscount - $this->posxunit - 1,
1437  2,
1438  $outputlangs->transnoentities("Unit"),
1439  '',
1440  'C'
1441  );
1442  }
1443  }
1444 
1445  $pdf->line($this->posxdiscount - 1, $tab_top, $this->posxdiscount - 1, $tab_top + $tab_height);
1446  if (empty($hidetop)) {
1447  if ($this->atleastonediscount) {
1448  $pdf->SetXY($this->posxdiscount - 1, $tab_top + 1);
1449  $pdf->MultiCell($this->postotalht - $this->posxdiscount + 1, 2, $outputlangs->transnoentities("ReductionShort"), '', 'C');
1450  }
1451  }
1452  if ($this->atleastonediscount) {
1453  $pdf->line($this->postotalht, $tab_top, $this->postotalht, $tab_top + $tab_height);
1454  }
1455  if (empty($hidetop)) {
1456  $pdf->SetXY($this->postotalht - 1, $tab_top + 1);
1457  $pdf->MultiCell(30, 2, $outputlangs->transnoentities("TotalHT"), '', 'C');
1458  }
1459  }
1460 
1461  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
1472  protected function _pagehead(&$pdf, $object, $showaddress, $outputlangs, $outputlangsbis = null)
1473  {
1474  global $conf, $langs;
1475 
1476  $ltrdirection = 'L';
1477  if ($outputlangs->trans("DIRECTION") == 'rtl') $ltrdirection = 'R';
1478 
1479  // Load traductions files required by page
1480  $outputlangs->loadLangs(array("main", "propal", "companies", "bills"));
1481 
1482  $default_font_size = pdf_getPDFFontSize($outputlangs);
1483 
1484  pdf_pagehead($pdf, $outputlangs, $this->page_hauteur);
1485 
1486  $pdf->SetTextColor(0, 0, 60);
1487  $pdf->SetFont('', 'B', $default_font_size + 3);
1488 
1489  $posy = $this->marge_haute;
1490  $posx = $this->page_largeur - $this->marge_droite - 100;
1491 
1492  $pdf->SetXY($this->marge_gauche, $posy);
1493 
1494  // Logo
1495  if (empty($conf->global->PDF_DISABLE_MYCOMPANY_LOGO)) {
1496  if ($this->emetteur->logo) {
1497  $logodir = $conf->mycompany->dir_output;
1498  if (!empty($conf->mycompany->multidir_output[$object->entity])) {
1499  $logodir = $conf->mycompany->multidir_output[$object->entity];
1500  }
1501  if (empty($conf->global->MAIN_PDF_USE_LARGE_LOGO)) {
1502  $logo = $logodir.'/logos/thumbs/'.$this->emetteur->logo_small;
1503  } else {
1504  $logo = $logodir.'/logos/'.$this->emetteur->logo;
1505  }
1506  if (is_readable($logo)) {
1507  $height = pdf_getHeightForLogo($logo);
1508  $pdf->Image($logo, $this->marge_gauche, $posy, 0, $height); // width=0 (auto)
1509  } else {
1510  $pdf->SetTextColor(200, 0, 0);
1511  $pdf->SetFont('', 'B', $default_font_size - 2);
1512  $pdf->MultiCell(100, 3, $outputlangs->transnoentities("ErrorLogoFileNotFound", $logo), 0, 'L');
1513  $pdf->MultiCell(100, 3, $outputlangs->transnoentities("ErrorGoToGlobalSetup"), 0, 'L');
1514  }
1515  } else {
1516  $text = $this->emetteur->name;
1517  $pdf->MultiCell(100, 4, $outputlangs->convToOutputCharset($text), 0, $ltrdirection);
1518  }
1519  }
1520 
1521  $pdf->SetFont('', 'B', $default_font_size + 3);
1522  $pdf->SetXY($posx, $posy);
1523  $pdf->SetTextColor(0, 0, 60);
1524  $title = $outputlangs->transnoentities("PdfCommercialProposalTitle");
1525  $title .= ' '.$outputlangs->convToOutputCharset($object->ref);
1526  if ($object->statut == $object::STATUS_DRAFT) {
1527  $pdf->SetTextColor(128, 0, 0);
1528  $title .= ' - '.$outputlangs->transnoentities("NotValidated");
1529  }
1530  $pdf->MultiCell(100, 4, $title, '', 'R');
1531 
1532  $pdf->SetFont('', 'B', $default_font_size);
1533 
1534  /*
1535  $posy += 5;
1536  $pdf->SetXY($posx, $posy);
1537  $pdf->SetTextColor(0, 0, 60);
1538  $pdf->MultiCell(100, 4, $outputlangs->transnoentities("Ref")." : ".$outputlangs->convToOutputCharset($object->ref), '', 'R');
1539  */
1540 
1541  $posy += 3;
1542  $pdf->SetFont('', '', $default_font_size - 2);
1543 
1544  if ($object->ref_client) {
1545  $posy += 4;
1546  $pdf->SetXY($posx, $posy);
1547  $pdf->SetTextColor(0, 0, 60);
1548  $pdf->MultiCell(100, 3, $outputlangs->transnoentities("RefCustomer")." : ".$outputlangs->convToOutputCharset($object->ref_client), '', 'R');
1549  }
1550 
1551  if (!empty($conf->global->PDF_SHOW_PROJECT_TITLE)) {
1552  $object->fetch_projet();
1553  if (!empty($object->project->ref)) {
1554  $posy += 3;
1555  $pdf->SetXY($posx, $posy);
1556  $pdf->SetTextColor(0, 0, 60);
1557  $pdf->MultiCell($w, 3, $outputlangs->transnoentities("Project")." : ".(empty($object->project->title) ? '' : $object->project->title), '', 'R');
1558  }
1559  }
1560 
1561  if (!empty($conf->global->PDF_SHOW_PROJECT)) {
1562  $object->fetch_projet();
1563  if (!empty($object->project->ref)) {
1564  $outputlangs->load("projects");
1565  $posy += 3;
1566  $pdf->SetXY($posx, $posy);
1567  $pdf->SetTextColor(0, 0, 60);
1568  $pdf->MultiCell($w, 3, $outputlangs->transnoentities("RefProject")." : ".(empty($object->project->ref) ? '' : $object->project->ref), '', 'R');
1569  }
1570  }
1571 
1572  if (!empty($conf->global->MAIN_PDF_DATE_TEXT)) {
1573  $displaydate = "daytext";
1574  } else {
1575  $displaydate = "day";
1576  }
1577 
1578  $posy += 4;
1579  $pdf->SetXY($posx, $posy);
1580  $pdf->SetTextColor(0, 0, 60);
1581  $pdf->MultiCell(100, 3, $outputlangs->transnoentities("DatePropal")." : ".dol_print_date($object->date, $displaydate, false, $outputlangs, true), '', 'R');
1582 
1583  $posy += 4;
1584  $pdf->SetXY($posx, $posy);
1585  $pdf->SetTextColor(0, 0, 60);
1586  $pdf->MultiCell(100, 3, $outputlangs->transnoentities("DateEndPropal")." : ".dol_print_date($object->fin_validite, $displaydate, false, $outputlangs, true), '', 'R');
1587 
1588  if (empty($conf->global->MAIN_PDF_HIDE_CUSTOMER_CODE) && $object->thirdparty->code_client) {
1589  $posy += 4;
1590  $pdf->SetXY($posx, $posy);
1591  $pdf->SetTextColor(0, 0, 60);
1592  $pdf->MultiCell(100, 3, $outputlangs->transnoentities("CustomerCode")." : ".$outputlangs->transnoentities($object->thirdparty->code_client), '', 'R');
1593  }
1594 
1595  // Get contact
1596  if (!empty($conf->global->DOC_SHOW_FIRST_SALES_REP)) {
1597  $arrayidcontact = $object->getIdContact('internal', 'SALESREPFOLL');
1598  if (count($arrayidcontact) > 0) {
1599  $usertmp = new User($this->db);
1600  $usertmp->fetch($arrayidcontact[0]);
1601  $posy += 4;
1602  $pdf->SetXY($posx, $posy);
1603  $pdf->SetTextColor(0, 0, 60);
1604  $pdf->MultiCell(100, 3, $langs->trans("SalesRepresentative")." : ".$usertmp->getFullName($langs), '', 'R');
1605  }
1606  }
1607 
1608  $posy += 2;
1609 
1610  $top_shift = 0;
1611  // Show list of linked objects
1612  $current_y = $pdf->getY();
1613  $posy = pdf_writeLinkedObjects($pdf, $object, $outputlangs, $posx, $posy, 100, 3, 'R', $default_font_size);
1614  if ($current_y < $pdf->getY()) {
1615  $top_shift = $pdf->getY() - $current_y;
1616  }
1617 
1618  if ($showaddress) {
1619  // Sender properties
1620  $carac_emetteur = '';
1621  // Add internal contact of proposal if defined
1622  $arrayidcontact = $object->getIdContact('internal', 'SALESREPFOLL');
1623  if (count($arrayidcontact) > 0) {
1624  $object->fetch_user($arrayidcontact[0]);
1625  $labelbeforecontactname = ($outputlangs->transnoentities("FromContactName") != 'FromContactName' ? $outputlangs->transnoentities("FromContactName") : $outputlangs->transnoentities("Name"));
1626  $carac_emetteur .= ($carac_emetteur ? "\n" : '').$labelbeforecontactname." ".$outputlangs->convToOutputCharset($object->user->getFullName($outputlangs))."\n";
1627  }
1628 
1629  $carac_emetteur .= pdf_build_address($outputlangs, $this->emetteur, $object->thirdparty, '', 0, 'source', $object);
1630 
1631  // Show sender
1632  $posy = 42 + $top_shift;
1633  $posx = $this->marge_gauche;
1634  if (!empty($conf->global->MAIN_INVERT_SENDER_RECIPIENT)) {
1635  $posx = $this->page_largeur - $this->marge_droite - 80;
1636  }
1637  $hautcadre = 40;
1638 
1639  // Show sender frame
1640  if (empty($conf->global->MAIN_PDF_NO_SENDER_FRAME)) {
1641  $pdf->SetTextColor(0, 0, 0);
1642  $pdf->SetFont('', '', $default_font_size - 2);
1643  $pdf->SetXY($posx, $posy - 5);
1644  $pdf->MultiCell(80, 5, $outputlangs->transnoentities("BillFrom"), 0, $ltrdirection);
1645  $pdf->SetXY($posx, $posy);
1646  $pdf->SetFillColor(230, 230, 230);
1647  $pdf->MultiCell(82, $hautcadre, "", 0, 'R', 1);
1648  $pdf->SetTextColor(0, 0, 60);
1649  }
1650 
1651  // Show sender name
1652  if (empty($conf->global->MAIN_PDF_HIDE_SENDER_NAME)) {
1653  $pdf->SetXY($posx + 2, $posy + 3);
1654  $pdf->SetFont('', 'B', $default_font_size);
1655  $pdf->MultiCell(80, 4, $outputlangs->convToOutputCharset($this->emetteur->name), 0, $ltrdirection);
1656  $posy = $pdf->getY();
1657  }
1658 
1659  // Show sender information
1660  $pdf->SetXY($posx + 2, $posy);
1661  $pdf->SetFont('', '', $default_font_size - 1);
1662  $pdf->MultiCell(80, 4, $carac_emetteur, 0, $ltrdirection);
1663 
1664 
1665  // If CUSTOMER contact defined, we use it
1666  $usecontact = false;
1667  $arrayidcontact = $object->getIdContact('external', 'CUSTOMER');
1668  if (count($arrayidcontact) > 0) {
1669  $usecontact = true;
1670  $result = $object->fetch_contact($arrayidcontact[0]);
1671  }
1672 
1673  // Recipient name
1674  if ($usecontact && ($object->contact->socid != $object->thirdparty->id && (!isset($conf->global->MAIN_USE_COMPANY_NAME_OF_CONTACT) || !empty($conf->global->MAIN_USE_COMPANY_NAME_OF_CONTACT)))) {
1675  $thirdparty = $object->contact;
1676  } else {
1677  $thirdparty = $object->thirdparty;
1678  }
1679 
1680  $carac_client_name = pdfBuildThirdpartyName($thirdparty, $outputlangs);
1681 
1682  $mode = 'target';
1683  $carac_client = pdf_build_address($outputlangs, $this->emetteur, $object->thirdparty, ($usecontact ? $object->contact : ''), $usecontact, $mode, $object);
1684 
1685  // Show recipient
1686  $widthrecbox = 100;
1687  if ($this->page_largeur < 210) {
1688  $widthrecbox = 84; // To work with US executive format
1689  }
1690  $posy = 42 + $top_shift;
1691  $posx = $this->page_largeur - $this->marge_droite - $widthrecbox;
1692  if (!empty($conf->global->MAIN_INVERT_SENDER_RECIPIENT)) {
1693  $posx = $this->marge_gauche;
1694  }
1695 
1696  // Show recipient frame
1697  if (empty($conf->global->MAIN_PDF_NO_RECIPENT_FRAME)) {
1698  $pdf->SetTextColor(0, 0, 0);
1699  $pdf->SetFont('', '', $default_font_size - 2);
1700  $pdf->SetXY($posx + 2, $posy - 5);
1701  $pdf->MultiCell($widthrecbox, 5, $outputlangs->transnoentities("BillTo"), 0, $ltrdirection);
1702  $pdf->Rect($posx, $posy, $widthrecbox, $hautcadre);
1703  }
1704 
1705  // Show recipient name
1706  $pdf->SetXY($posx + 2, $posy + 3);
1707  $pdf->SetFont('', 'B', $default_font_size);
1708  $pdf->MultiCell($widthrecbox, 4, $carac_client_name, 0, $ltrdirection);
1709 
1710  $posy = $pdf->getY();
1711 
1712  // Show recipient information
1713  $pdf->SetFont('', '', $default_font_size - 1);
1714  $pdf->SetXY($posx + 2, $posy);
1715  $pdf->MultiCell($widthrecbox, 4, $carac_client, 0, $ltrdirection);
1716  }
1717 
1718  $pdf->SetTextColor(0, 0, 0);
1719  return $top_shift;
1720  }
1721 
1722  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
1732  protected function _pagefoot(&$pdf, $object, $outputlangs, $hidefreetext = 0)
1733  {
1734  global $conf;
1735  $showdetails = empty($conf->global->MAIN_GENERATE_DOCUMENTS_SHOW_FOOT_DETAILS) ? 0 : $conf->global->MAIN_GENERATE_DOCUMENTS_SHOW_FOOT_DETAILS;
1736  return pdf_pagefoot($pdf, $outputlangs, 'PROPOSAL_FREE_TEXT', $this->emetteur, $this->marge_basse, $this->marge_gauche, $this->page_hauteur, $object, $showdetails, $hidefreetext, $this->page_largeur, $this->watermark);
1737  }
1738 
1739  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
1740  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1750  protected function _signature_area(&$pdf, $object, $posy, $outputlangs)
1751  {
1752  // phpcs:enable
1753  global $conf;
1754  $default_font_size = pdf_getPDFFontSize($outputlangs);
1755  $tab_top = $posy + 4;
1756  $tab_hl = 4;
1757 
1758  $posx = 120;
1759  $largcol = ($this->page_largeur - $this->marge_droite - $posx);
1760  $useborder = 0;
1761  $index = 0;
1762  // Total HT
1763  $pdf->SetFillColor(255, 255, 255);
1764  $pdf->SetXY($posx, $tab_top + 0);
1765  $pdf->SetFont('', '', $default_font_size - 2);
1766  $pdf->MultiCell($largcol, $tab_hl, $outputlangs->transnoentities("ProposalCustomerSignature"), 0, 'L', 1);
1767 
1768  $pdf->SetXY($posx, $tab_top + $tab_hl);
1769  $pdf->MultiCell($largcol, $tab_hl * 3, '', 1, 'R');
1770  if (!empty($conf->global->MAIN_PDF_PROPAL_USE_ELECTRONIC_SIGNING)) {
1771  $pdf->addEmptySignatureAppearance($posx, $tab_top + $tab_hl, $largcol, $tab_hl * 3);
1772  }
1773 
1774  return ($tab_hl * 7);
1775  }
1776 }
make_substitutions
make_substitutions($text, $substitutionarray, $outputlangs=null, $converttextinhtmlifnecessary=0)
Make substitution into a text string, replacing keys with vals from $substitutionarray (oldval=>newva...
Definition: functions.lib.php:7839
pdf_getlinevatrate
pdf_getlinevatrate($object, $i, $outputlangs, $hidedetails=0)
Return line vat rate.
Definition: pdf.lib.php:1784
getLocalTaxesFromRate
getLocalTaxesFromRate($vatrate, $local, $buyer, $seller, $firstparamisid=0)
Get type and rate of localtaxes for a particular vat rate/country of a thirdparty.
Definition: functions.lib.php:6097
db
$conf db
API class for accounts.
Definition: inc.php:41
pdf_getSizeForImage
pdf_getSizeForImage($realpath)
Return dimensions to use for images onto PDF checking that width and height are not higher than maxim...
Definition: pdf.lib.php:2474
pdf_getlineqty
pdf_getlineqty($object, $i, $outputlangs, $hidedetails=0)
Return line quantity.
Definition: pdf.lib.php:1931
pdf_getlineupexcltax
pdf_getlineupexcltax($object, $i, $outputlangs, $hidedetails=0)
Return line unit price excluding tax.
Definition: pdf.lib.php:1846
pdf_writelinedesc
pdf_writelinedesc(&$pdf, $object, $i, $outputlangs, $w, $h, $posx, $posy, $hideref=0, $hidedesc=0, $issupplierline=0)
Output line description into PDF.
Definition: pdf.lib.php:1345
dol_sanitizeFileName
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
Definition: functions.lib.php:1226
description
print *****$script_file(".$version.") pid cd cd cd description as description
Definition: email_expire_services_to_customers.php:83
pdf_getlineremisepercent
pdf_getlineremisepercent($object, $i, $outputlangs, $hidedetails=0)
Return line remise percent.
Definition: pdf.lib.php:2135
pdf_getFormat
pdf_getFormat(Translate $outputlangs=null, $mode='setup')
Return array with format properties of default PDF format.
Definition: pdf.lib.php:84
pdfGetHeightForHtmlContent
pdfGetHeightForHtmlContent(&$pdf, $htmlcontent)
Function to try to calculate height of a HTML Content.
Definition: pdf.lib.php:338
pdf_getInstance
pdf_getInstance($format='', $metric='mm', $pagetype='P')
Return a PDF instance object.
Definition: pdf.lib.php:126
pdf_getPDFFont
pdf_getPDFFont($outputlangs)
Return font name to use for PDF generation.
Definition: pdf.lib.php:265
Translate
Class to manage translations.
Definition: translate.class.php:30
pdf_getlineunit
pdf_getlineunit($object, $i, $outputlangs, $hidedetails=0, $hookmanager=false)
Return line unit.
Definition: pdf.lib.php:2092
name
$conf db name
Definition: repair.php:122
pdf_azur\_signature_area
_signature_area(&$pdf, $object, $posy, $outputlangs)
Show area for the customer to sign.
Definition: pdf_azur.modules.php:1750
price2num
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
Definition: functions.lib.php:5661
pdf_azur
Class to generate PDF proposal Azur.
Definition: pdf_azur.modules.php:44
pdf_azur\_pagehead
_pagehead(&$pdf, $object, $showaddress, $outputlangs, $outputlangsbis=null)
Show top header of page.
Definition: pdf_azur.modules.php:1472
dol_print_date
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
Definition: functions.lib.php:2514
dol_concatdesc
dol_concatdesc($text1, $text2, $forxml=false, $invert=false)
Concat 2 descriptions with a new line between them (second operand after first one with appropriate n...
Definition: functions.lib.php:7248
pdfBuildThirdpartyName
pdfBuildThirdpartyName($thirdparty, Translate $outputlangs, $includealias=0)
Returns the name of the thirdparty.
Definition: pdf.lib.php:386
pdf_azur\_tableau_info
_tableau_info(&$pdf, $object, $posy, $outputlangs)
Show miscellaneous information (payment mode, payment term, ...)
Definition: pdf_azur.modules.php:912
pdf_pagehead
pdf_pagehead(&$pdf, $outputlangs, $page_height)
Show header of page for PDF generation.
Definition: pdf.lib.php:711
pdf_azur\_tableau_versements
_tableau_versements(&$pdf, $object, $posy, $outputlangs)
Show payments table.
Definition: pdf_azur.modules.php:896
get_exdir
get_exdir($num, $level, $alpha, $withoutslash, $object, $modulepart='')
Return a path to have a the directory according to object where files are stored.
Definition: functions.lib.php:6549
pdf_bank
pdf_bank(&$pdf, $outputlangs, $curx, $cury, $account, $onlynumber=0, $default_font_size=10)
Show bank informations for PDF generation.
Definition: pdf.lib.php:812
pdf_getHeightForLogo
pdf_getHeightForLogo($logo, $url=false)
Return height to use for Logo onto PDF.
Definition: pdf.lib.php:313
CommonDocGenerator\printRect
printRect($pdf, $x, $y, $l, $h, $hidetop=0, $hidebottom=0)
Rect pdf.
Definition: commondocgenerator.class.php:977
Propalmergepdfproduct
Put here description of your class.
Definition: propalmergepdfproduct.class.php:32
pdf_writeLinkedObjects
pdf_writeLinkedObjects(&$pdf, $object, $outputlangs, $posx, $posy, $w, $h, $align, $default_font_size)
Show linked objects for PDF generation.
Definition: pdf.lib.php:1309
dol_syslog
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
Definition: functions.lib.php:1603
pdf_build_address
pdf_build_address($outputlangs, $sourcecompany, $targetcompany='', $targetcontact='', $usecontact=0, $mode='source', $object=null)
Return a string with full address formated for output on documents.
Definition: pdf.lib.php:427
pdf_azur\_pagefoot
_pagefoot(&$pdf, $object, $outputlangs, $hidefreetext=0)
Show footer of page.
Definition: pdf_azur.modules.php:1732
convertBackOfficeMediasLinksToPublicLinks
if(!function_exists('dolEscapeXML')) convertBackOfficeMediasLinksToPublicLinks($notetoshow)
Convert links to local wrapper to medias files into a string into a public external URL readable on i...
Definition: functions2.lib.php:2711
getDolGlobalString
if(!function_exists('utf8_encode')) if(!function_exists('utf8_decode')) getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
Definition: functions.lib.php:80
pdf_azur\_tableau
_tableau(&$pdf, $tab_top, $tab_height, $nexY, $outputlangs, $hidetop=0, $hidebottom=0, $currency='')
Show table for lines.
Definition: pdf_azur.modules.php:1361
User
Class to manage Dolibarr users.
Definition: user.class.php:44
pdf_azur\__construct
__construct($db)
Constructor.
Definition: pdf_azur.modules.php:130
Product
Class to manage products or services.
Definition: product.class.php:46
dol_htmlentitiesbr
dol_htmlentitiesbr($stringtoencode, $nl2brmode=0, $pagecodefrom='UTF-8', $removelasteolbr=1)
This function is called to encode a string into a HTML string but differs from htmlentities because a...
Definition: functions.lib.php:6991
pdf_getPDFFontSize
pdf_getPDFFontSize($outputlangs)
Return font size to use for PDF generation.
Definition: pdf.lib.php:288
pdf_getSubstitutionArray
pdf_getSubstitutionArray($outputlangs, $exclude=null, $object=null, $onlykey=0)
Return array of possible substitutions for PDF content (without external module substitutions).
Definition: pdf.lib.php:737
price
price($amount, $form=0, $outlangs='', $trunc=1, $rounding=-1, $forcerounding=-1, $currency_code='')
Function to format a value into an amount for visual output Function used into PDF and HTML pages.
Definition: functions.lib.php:5541
setEventMessages
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
Definition: functions.lib.php:8137
pdf_azur\_tableau_tot
_tableau_tot(&$pdf, $object, $deja_regle, $posy, $outputlangs, $outputlangsbis=null)
Show total to pay.
Definition: pdf_azur.modules.php:1090
dol_mkdir
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
Definition: functions.lib.php:6603
pdf_getlinetotalexcltax
pdf_getlinetotalexcltax($object, $i, $outputlangs, $hidedetails=0)
Return line total excluding tax.
Definition: pdf.lib.php:2229
pdf_azur\write_file
write_file($object, $outputlangs, $srctemplatepath='', $hidedetails=0, $hidedesc=0, $hideref=0)
Function to build pdf onto disk.
Definition: pdf_azur.modules.php:219
type
if(preg_match('/crypted:/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
Definition: repair.php:119
Account
Class to manage bank accounts.
Definition: account.class.php:38
HookManager
Class to manage hooks.
Definition: hookmanager.class.php:30
complete_substitutions_array
complete_substitutions_array(&$substitutionarray, $outputlangs, $object=null, $parameters=null, $callfunc="completesubstitutionarray")
Complete the $substitutionarray with more entries coming from external module that had set the "subst...
Definition: functions.lib.php:7961
vatrate
vatrate($rate, $addpercent=false, $info_bits=0, $usestarfornpr=0, $html=0)
Return a string with VAT rate label formated for view output Used into pdf and HTML pages.
Definition: functions.lib.php:5492
pdf_pagefoot
pdf_pagefoot(&$pdf, $outputlangs, $paramfreetext, $fromcompany, $marge_basse, $marge_gauche, $page_hauteur, $object, $showdetails=0, $hidefreetext=0, $page_largeur=0, $watermark='')
Show footer of page for PDF generation.
Definition: pdf.lib.php:989
ModelePDFPropales
Classe mere des modeles de propale.
Definition: modules_propale.php:37
if
if(!defined( 'CSRFCHECK_WITH_TOKEN'))
Definition: journals_list.php:25