dolibarr  20.0.0-beta
pdf_crabe.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-2014 Juanjo Menent <jmenent@2byte.es>
6  * Copyright (C) 2012 Christophe Battarel <christophe.battarel@altairis.fr>
7  * Copyright (C) 2012 Cédric Salvador <csalvador@gpcsolutions.fr>
8  * Copyright (C) 2012-2014 Raphaël Doursenaud <rdoursenaud@gpcsolutions.fr>
9  * Copyright (C) 2015 Marcos García <marcosgdf@gmail.com>
10  * Copyright (C) 2017-2018 Ferran Marcet <fmarcet@2byte.es>
11  * Copyright (C) 2018-2024 Frédéric France <frederic.france@free.fr>
12  * Copyright (C) 2022 Anthony Berton <anthony.berton@bb2a.fr>
13  * Copyright (C) 2022 Charlene Benke <charlene@patas-monkey.com>
14  * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
15  *
16  * This program is free software; you can redistribute it and/or modify
17  * it under the terms of the GNU General Public License as published by
18  * the Free Software Foundation; either version 3 of the License, or
19  * (at your option) any later version.
20  *
21  * This program is distributed in the hope that it will be useful,
22  * but WITHOUT ANY WARRANTY; without even the implied warranty of
23  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24  * GNU General Public License for more details.
25  *
26  * You should have received a copy of the GNU General Public License
27  * along with this program. If not, see <https://www.gnu.org/licenses/>.
28  * or see https://www.gnu.org/
29  */
30 
37 require_once DOL_DOCUMENT_ROOT.'/core/modules/facture/modules_facture.php';
38 require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
39 require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
40 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
41 require_once DOL_DOCUMENT_ROOT.'/core/lib/pdf.lib.php';
42 
43 
48 {
52  public $db;
53 
57  public $name;
58 
62  public $description;
63 
67  public $update_main_doc_field;
68 
72  public $type;
73 
78  public $version = 'dolibarr';
79 
83  public $situationinvoice;
84 
88  public $posxprogress;
89 
93  public $categoryOfOperation = -1; // unknown by default
94 
95 
101  public function __construct($db)
102  {
103  global $conf, $langs, $mysoc;
104 
105  // Translations
106  $langs->loadLangs(array("main", "bills"));
107 
108  $this->db = $db;
109  $this->name = "crabe";
110  $this->description = $langs->trans('PDFCrabeDescription');
111  $this->update_main_doc_field = 1; // Save the name of generated file as the main doc when generating a doc with this template
112 
113  // Dimension page
114  $this->type = 'pdf';
115  $formatarray = pdf_getFormat();
116  $this->page_largeur = $formatarray['width'];
117  $this->page_hauteur = $formatarray['height'];
118  $this->format = array($this->page_largeur, $this->page_hauteur);
119  $this->marge_gauche = getDolGlobalInt('MAIN_PDF_MARGIN_LEFT', 10);
120  $this->marge_droite = getDolGlobalInt('MAIN_PDF_MARGIN_RIGHT', 10);
121  $this->marge_haute = getDolGlobalInt('MAIN_PDF_MARGIN_TOP', 10);
122  $this->marge_basse = getDolGlobalInt('MAIN_PDF_MARGIN_BOTTOM', 10);
123 
124  $this->option_logo = 1; // Display logo
125  $this->option_tva = 1; // Manage the vat option FACTURE_TVAOPTION
126  $this->option_modereg = 1; // Display payment mode
127  $this->option_condreg = 1; // Display payment terms
128  $this->option_multilang = 1; // Available in several languages
129  $this->option_escompte = 1; // Displays if there has been a discount
130  $this->option_credit_note = 1; // Support credit notes
131  $this->option_freetext = 1; // Support add of a personalised text
132  $this->option_draft_watermark = 1; // Support add of a watermark on drafts
133  $this->watermark = '';
134 
135  // Get source company
136  $this->emetteur = $mysoc;
137  if (empty($this->emetteur->country_code)) {
138  $this->emetteur->country_code = substr($langs->defaultlang, -2); // By default, if was not defined
139  }
140 
141  // Define position of columns
142  $this->posxdesc = $this->marge_gauche + 1;
143  if (getDolGlobalInt('PRODUCT_USE_UNITS')) {
144  $this->posxtva = 101;
145  $this->posxup = 118;
146  $this->posxqty = 135;
147  $this->posxunit = 151;
148  } else {
149  $this->posxtva = 106;
150  $this->posxup = 122;
151  $this->posxqty = 145;
152  $this->posxunit = 162;
153  }
154  $this->posxprogress = 151; // Only displayed for situation invoices
155  $this->posxdiscount = 162;
156  $this->posxprogress = 174;
157  $this->postotalht = 174;
158  if (getDolGlobalString('MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT') || getDolGlobalString('MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT_COLUMN')) {
159  $this->posxtva = $this->posxup;
160  }
161  $this->posxpicture = $this->posxtva - getDolGlobalInt('MAIN_DOCUMENTS_WITH_PICTURE_WIDTH', 20); // width of images
162  if ($this->page_largeur < 210) { // To work with US executive format
163  $this->posxpicture -= 20;
164  $this->posxtva -= 20;
165  $this->posxup -= 20;
166  $this->posxqty -= 20;
167  $this->posxunit -= 20;
168  $this->posxdiscount -= 20;
169  $this->posxprogress -= 20;
170  $this->postotalht -= 20;
171  }
172 
173  $this->tva = array();
174  $this->tva_array = array();
175  $this->localtax1 = array();
176  $this->localtax2 = array();
177  $this->atleastoneratenotnull = 0;
178  $this->atleastonediscount = 0;
179  $this->situationinvoice = false;
180  }
181 
182 
183  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
195  public function write_file($object, $outputlangs, $srctemplatepath = '', $hidedetails = 0, $hidedesc = 0, $hideref = 0)
196  {
197  // phpcs:enable
198  global $user, $langs, $conf, $mysoc, $hookmanager, $nblines;
199 
200  dol_syslog("write_file outputlangs->defaultlang=".(is_object($outputlangs) ? $outputlangs->defaultlang : 'null'));
201 
202  if (!is_object($outputlangs)) {
203  $outputlangs = $langs;
204  }
205  // For backward compatibility with FPDF, force output charset to ISO, because FPDF expect text to be encoded in ISO
206  if (getDolGlobalString('MAIN_USE_FPDF')) {
207  $outputlangs->charset_output = 'ISO-8859-1';
208  }
209 
210  // Load translation files required by the page
211  $outputlangs->loadLangs(array("main", "bills", "products", "dict", "companies"));
212 
213  // Show Draft Watermark
214  if ($object->statut == $object::STATUS_DRAFT && (getDolGlobalString('FACTURE_DRAFT_WATERMARK'))) {
215  $this->watermark = getDolGlobalString('FACTURE_DRAFT_WATERMARK');
216  }
217 
218  global $outputlangsbis;
219  $outputlangsbis = null;
220  if (getDolGlobalString('PDF_USE_ALSO_LANGUAGE_CODE') && $outputlangs->defaultlang != getDolGlobalString('PDF_USE_ALSO_LANGUAGE_CODE')) {
221  $outputlangsbis = new Translate('', $conf);
222  $outputlangsbis->setDefaultLang(getDolGlobalString('PDF_USE_ALSO_LANGUAGE_CODE'));
223  $outputlangsbis->loadLangs(array("main", "bills", "products", "dict", "companies"));
224  }
225 
226  $nblines = count($object->lines);
227 
228  // Loop on each lines to detect if there is at least one image to show
229  $realpatharray = array();
230  if (getDolGlobalString('MAIN_GENERATE_INVOICES_WITH_PICTURE')) {
231  for ($i = 0; $i < $nblines; $i++) {
232  if (empty($object->lines[$i]->fk_product)) {
233  continue;
234  }
235 
236  $objphoto = new Product($this->db);
237  $objphoto->fetch($object->lines[$i]->fk_product);
238 
239  $pdir = get_exdir($object->lines[$i]->fk_product, 2, 0, 0, $objphoto, 'product').$object->lines[$i]->fk_product."/photos/";
240  $dir = $conf->product->dir_output.'/'.$pdir;
241 
242  $realpath = '';
243  foreach ($objphoto->liste_photos($dir, 1) as $key => $obj) {
244  $filename = $obj['photo'];
245  //if ($obj['photo_vignette']) $filename='thumbs/'.$obj['photo_vignette'];
246  $realpath = $dir.$filename;
247  break;
248  }
249 
250  if ($realpath) {
251  $realpatharray[$i] = $realpath;
252  }
253  }
254  }
255  if (count($realpatharray) == 0) {
256  $this->posxpicture = $this->posxtva;
257  }
258 
259  if ($conf->facture->dir_output) {
260  $object->fetch_thirdparty();
261 
262  $deja_regle = $object->getSommePaiement((isModEnabled("multicurrency") && $object->multicurrency_tx != 1) ? 1 : 0);
263  $amount_credit_notes_included = $object->getSumCreditNotesUsed((isModEnabled("multicurrency") && $object->multicurrency_tx != 1) ? 1 : 0);
264  $amount_deposits_included = $object->getSumDepositsUsed((isModEnabled("multicurrency") && $object->multicurrency_tx != 1) ? 1 : 0);
265 
266  // Definition of $dir and $file
267  if ($object->specimen) {
268  $dir = empty($conf->facture->multidir_output[$object->entity]) ? $conf->facture->dir_output : $conf->facture->multidir_output[$object->entity];
269  $file = $dir."/SPECIMEN.pdf";
270  } else {
271  $objectref = dol_sanitizeFileName($object->ref);
272  $dir = (empty($conf->facture->multidir_output[$object->entity]) ? $conf->facture->dir_output : $conf->facture->multidir_output[$object->entity])."/".$objectref;
273  $file = $dir."/".$objectref.".pdf";
274  }
275  if (!file_exists($dir)) {
276  if (dol_mkdir($dir) < 0) {
277  $this->error = $langs->transnoentities("ErrorCanNotCreateDir", $dir);
278  return 0;
279  }
280  }
281 
282  if (file_exists($dir)) {
283  // Add pdfgeneration hook
284  if (!is_object($hookmanager)) {
285  include_once DOL_DOCUMENT_ROOT.'/core/class/hookmanager.class.php';
286  $hookmanager = new HookManager($this->db);
287  }
288  $hookmanager->initHooks(array('pdfgeneration'));
289  $parameters = array('file' => $file, 'object' => $object, 'outputlangs' => $outputlangs);
290  global $action;
291  $reshook = $hookmanager->executeHooks('beforePDFCreation', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
292 
293  // Set nblines with the new facture lines content after hook
294  $nblines = count($object->lines);
295  $nbpayments = count($object->getListOfPayments());
296 
297  // Create pdf instance
298  $pdf = pdf_getInstance($this->format);
299  $default_font_size = pdf_getPDFFontSize($outputlangs); // Must be after pdf_getInstance
300  $pdf->SetAutoPageBreak(1, 0);
301 
302  $heightforinfotot = 50 + (4 * $nbpayments); // Height reserved to output the info and total part and payment part
303  if ($heightforinfotot > 220) {
304  $heightforinfotot = 220;
305  }
306  $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
307  $heightforfooter = $this->marge_basse + 8; // Height reserved to output the footer (value include bottom margin)
308  if (getDolGlobalString('MAIN_GENERATE_DOCUMENTS_SHOW_FOOT_DETAILS')) {
309  $heightforfooter += 6;
310  }
311 
312  $heightforqrinvoice_firstpage = 0;
313  if (getDolGlobalString('INVOICE_ADD_SWISS_QR_CODE') == 'bottom') {
314  $heightforqrinvoice_firstpage = $this->getHeightForQRInvoice(1, $object, $langs);
315  if ($heightforqrinvoice_firstpage > 0) {
316  // Shrink infotot to a base 30
317  $heightforinfotot = 30 + (4 * $nbpayments); // Height reserved to output the info and total part and payment part
318  }
319  }
320 
321  if (class_exists('TCPDF')) {
322  $pdf->setPrintHeader(false);
323  $pdf->setPrintFooter(false);
324  }
325  $pdf->SetFont(pdf_getPDFFont($outputlangs));
326 
327  // Set path to the background PDF File
328  if (getDolGlobalString('MAIN_ADD_PDF_BACKGROUND')) {
329  $logodir = $conf->mycompany->dir_output;
330  if (!empty($conf->mycompany->multidir_output[$object->entity])) {
331  $logodir = $conf->mycompany->multidir_output[$object->entity];
332  }
333  $pagecount = $pdf->setSourceFile($logodir.'/' . getDolGlobalString('MAIN_ADD_PDF_BACKGROUND'));
334  $tplidx = $pdf->importPage(1);
335  }
336 
337  $pdf->Open();
338  $pagenb = 0;
339  $pdf->SetDrawColor(128, 128, 128);
340 
341  $pdf->SetTitle($outputlangs->convToOutputCharset($object->ref));
342  $pdf->SetSubject($outputlangs->transnoentities("PdfInvoiceTitle"));
343  $pdf->SetCreator("Dolibarr ".DOL_VERSION);
344  $pdf->SetAuthor($mysoc->name.($user->id > 0 ? ' - '.$outputlangs->convToOutputCharset($user->getFullName($outputlangs)) : ''));
345  $pdf->SetKeyWords($outputlangs->convToOutputCharset($object->ref)." ".$outputlangs->transnoentities("PdfInvoiceTitle")." ".$outputlangs->convToOutputCharset($object->thirdparty->name));
346  if (getDolGlobalString('MAIN_DISABLE_PDF_COMPRESSION')) {
347  $pdf->SetCompression(false);
348  }
349 
350  // Set certificate
351  $cert = empty($user->conf->CERTIFICATE_CRT) ? '' : $user->conf->CERTIFICATE_CRT;
352  $certprivate = empty($user->conf->CERTIFICATE_CRT_PRIVATE) ? '' : $user->conf->CERTIFICATE_CRT_PRIVATE;
353  // If user has no certificate, we try to take the company one
354  if (!$cert) {
355  $cert = !getDolGlobalString('CERTIFICATE_CRT') ? '' : $conf->global->CERTIFICATE_CRT;
356  }
357  if (!$certprivate) {
358  $certprivate = !getDolGlobalString('CERTIFICATE_CRT_PRIVATE') ? '' : $conf->global->CERTIFICATE_CRT_PRIVATE;
359  }
360  // If a certificate is found
361  if ($cert) {
362  $info = array(
363  'Name' => $this->emetteur->name,
364  'Location' => getCountry($this->emetteur->country_code, 0),
365  'Reason' => 'INVOICE',
366  'ContactInfo' => $this->emetteur->email
367  );
368  $pdf->setSignature($cert, $certprivate, $this->emetteur->name, '', 2, $info);
369  }
370 
371  // @phan-suppress-next-line PhanPluginSuspiciousParamOrder
372  $pdf->SetMargins($this->marge_gauche, $this->marge_haute, $this->marge_droite); // Left, Top, Right
373 
374  // Set $this->atleastonediscount if you have at least one discount
375  // and determine category of operation
376  $categoryOfOperation = 0;
377  $nbProduct = 0;
378  $nbService = 0;
379  for ($i = 0; $i < $nblines; $i++) {
380  if ($object->lines[$i]->remise_percent) {
381  $this->atleastonediscount++;
382  }
383 
384  // determine category of operation
385  if ($categoryOfOperation < 2) {
386  $lineProductType = $object->lines[$i]->product_type;
387  if ($lineProductType == Product::TYPE_PRODUCT) {
388  $nbProduct++;
389  } elseif ($lineProductType == Product::TYPE_SERVICE) {
390  $nbService++;
391  }
392  if ($nbProduct > 0 && $nbService > 0) {
393  // mixed products and services
394  $categoryOfOperation = 2;
395  }
396  }
397  }
398  // determine category of operation
399  if ($categoryOfOperation <= 0) {
400  // only services
401  if ($nbProduct == 0 && $nbService > 0) {
402  $categoryOfOperation = 1;
403  }
404  }
405  $this->categoryOfOperation = $categoryOfOperation;
406  if (empty($this->atleastonediscount)) { // retrieve space not used by discount
407  $delta = ($this->posxprogress - $this->posxdiscount);
408  $this->posxpicture += $delta;
409  $this->posxtva += $delta;
410  $this->posxup += $delta;
411  $this->posxqty += $delta;
412  $this->posxunit += $delta;
413  $this->posxdiscount += $delta;
414  // post of fields after are not modified, stay at same position
415  }
416 
417  $progress_width = 0;
418  // Situation invoice handling
419  if ($object->situation_cycle_ref && !getDolGlobalString('MAIN_PDF_HIDE_SITUATION')) {
420  $this->situationinvoice = true;
421  $progress_width = 10;
422  $this->posxpicture -= $progress_width;
423  $this->posxtva -= $progress_width;
424  $this->posxup -= $progress_width;
425  $this->posxqty -= $progress_width;
426  $this->posxunit -= $progress_width;
427  $this->posxdiscount -= $progress_width;
428  $this->posxprogress -= $progress_width;
429  }
430 
431  // New page
432  $pdf->AddPage();
433  if (!empty($tplidx)) {
434  $pdf->useTemplate($tplidx);
435  }
436  $pagenb++;
437 
438  // Output header (logo, ref and address blocks). This is first call for first page.
439  $top_shift = $this->_pagehead($pdf, $object, 1, $outputlangs);
440  $pdf->SetFont('', '', $default_font_size - 1);
441  $pdf->MultiCell(0, 3, ''); // Set interline to 3
442  $pdf->SetTextColor(0, 0, 0);
443 
444  // $pdf->GetY() here can't be used. It is bottom of the second address box but first one may be higher
445 
446  // $tab_top is y where we must continue content (90 = 42 + 48: 42 is height of logo and ref, 48 is address blocks)
447  $tab_top = 90 + $top_shift; // top_shift is an addition for linked objects or addons (0 in most cases)
448  $tab_top_newpage = (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD') ? 42 + $top_shift : 10);
449 
450  // You can add more thing under header here, if you increase $extra_under_address_shift too.
451  $extra_under_address_shift = 0;
452  $qrcodestring = '';
453  if (getDolGlobalString('INVOICE_ADD_ZATCA_QR_CODE')) {
454  $qrcodestring = $object->buildZATCAQRString();
455  } elseif (getDolGlobalString('INVOICE_ADD_SWISS_QR_CODE') == '1' && (empty($object->mode_reglement_code) || $object->mode_reglement_code == 'VIR')) {
456  if ($object->fk_account > 0 || $object->fk_bank > 0 || getDolGlobalInt('FACTURE_RIB_NUMBER')) {
457  $qrcodestring = $object->buildSwitzerlandQRString();
458  }
459  } elseif (getDolGlobalString('INVOICE_ADD_EPC_QR_CODE') == '1' && (empty($object->mode_reglement_code) || $object->mode_reglement_code == 'VIR')) {
460  if ($object->fk_account > 0 || $object->fk_bank > 0 || getDolGlobalInt('FACTURE_RIB_NUMBER')) {
461  $qrcodestring = $object->buildEPCQrCodeString();
462  }
463  }
464 
465  if ($qrcodestring) {
466  $qrcodecolor = array('25', '25', '25');
467  // set style for QR-code
468  $styleQr = array(
469  'border' => false,
470  'padding' => 0,
471  'fgcolor' => $qrcodecolor,
472  'bgcolor' => false, //array(255,255,255)
473  'module_width' => 1, // width of a single module in points
474  'module_height' => 1 // height of a single module in points
475  );
476  $pdf->write2DBarcode($qrcodestring, 'QRCODE,M', $this->marge_gauche, $tab_top - 5, 25, 25, $styleQr, 'N');
477 
478  if (getDolGlobalString('INVOICE_ADD_EPC_QR_CODE') == '1' && (empty($object->mode_reglement_code) || $object->mode_reglement_code == 'VIR')) {
479  if ($object->fk_account > 0 || $object->fk_bank > 0 || getDolGlobalInt('FACTURE_RIB_NUMBER')) {
480  $pdf->SetXY($this->marge_gauche + 30, $pdf->GetY() - 15);
481  $pdf->SetFont('', '', $default_font_size - 4);
482  $pdf->MultiCell(40, 3, $langs->transnoentitiesnoconv("INVOICE_ADD_EPC_QR_CODEPay"), 0, 'L', 0);
483  }
484  }
485 
486  $extra_under_address_shift += 25;
487  }
488 
489  // Call hook printUnderHeaderPDFline
490  $parameters = array(
491  'object' => $object,
492  'i' => $i,
493  'pdf' => &$pdf,
494  'outputlangs' => $outputlangs,
495  'hidedetails' => $hidedetails
496  );
497  $reshook = $hookmanager->executeHooks('printUnderHeaderPDFline', $parameters, $this); // Note that $object may have been modified by hook
498  if (!empty($hookmanager->resArray['extra_under_address_shift'])) {
499  $extra_under_address_shift += $hookmanager->resArray['extra_under_address_shift'];
500  }
501 
502  $tab_top += $extra_under_address_shift;
503  $tab_top_newpage += 0;
504 
505  // Incoterm
506  $height_incoterms = 0;
507  if (isModEnabled('incoterm')) {
508  $desc_incoterms = $object->getIncotermsForPDF();
509  if ($desc_incoterms) {
510  $tab_top -= 2;
511 
512  $pdf->SetFont('', '', $default_font_size - 1);
513  $pdf->writeHTMLCell(190, 3, $this->posxdesc - 1, $tab_top - 1, dol_htmlentitiesbr($desc_incoterms), 0, 1);
514  $nexY = $pdf->GetY();
515  $height_incoterms = $nexY - $tab_top;
516 
517  // Rect takes a length in 3rd parameter
518  $pdf->SetDrawColor(192, 192, 192);
519  $pdf->Rect($this->marge_gauche, $tab_top - 1, $this->page_largeur - $this->marge_gauche - $this->marge_droite, $height_incoterms + 1);
520 
521  $tab_top = $nexY + 6;
522  }
523  }
524 
525  // Display notes
526  $notetoshow = empty($object->note_public) ? '' : $object->note_public;
527  if (getDolGlobalString('MAIN_ADD_SALE_REP_SIGNATURE_IN_NOTE')) {
528  // Get first sale rep
529  if (is_object($object->thirdparty)) {
530  $salereparray = $object->thirdparty->getSalesRepresentatives($user);
531  $salerepobj = new User($this->db);
532  $salerepobj->fetch($salereparray[0]['id']);
533  if (!empty($salerepobj->signature)) {
534  $notetoshow = dol_concatdesc($notetoshow, $salerepobj->signature);
535  }
536  }
537  }
538  // Extrafields in note
539  $extranote = $this->getExtrafieldsInHtml($object, $outputlangs);
540  if (!empty($extranote)) {
541  $notetoshow = dol_concatdesc($notetoshow, $extranote);
542  }
543  if ($notetoshow) {
544  $tab_top -= 2;
545 
546  $substitutionarray = pdf_getSubstitutionArray($outputlangs, null, $object);
547  complete_substitutions_array($substitutionarray, $outputlangs, $object);
548 
549  $notetoshow = make_substitutions($notetoshow, $substitutionarray, $outputlangs);
550  $notetoshow = convertBackOfficeMediasLinksToPublicLinks($notetoshow);
551 
552  $pdf->SetFont('', '', $default_font_size - 1);
553  $pdf->writeHTMLCell(190, 3, $this->posxdesc - 1, $tab_top - 1, dol_htmlentitiesbr($notetoshow), 0, 1);
554  $nexY = $pdf->GetY();
555  $height_note = $nexY - $tab_top;
556 
557  // Rect takes a length in 3rd parameter
558  $pdf->SetDrawColor(192, 192, 192);
559  $pdf->Rect($this->marge_gauche, $tab_top - 1, $this->page_largeur - $this->marge_gauche - $this->marge_droite, $height_note + 1);
560 
561  $tab_top = $nexY + 6;
562  }
563 
564  $iniY = $tab_top + 7;
565  $curY = $tab_top + 7;
566  $nexY = $tab_top + 7;
567 
568  // Loop on each lines
569  for ($i = 0; $i < $nblines; $i++) {
570  $curY = $nexY;
571  $pdf->SetFont('', '', $default_font_size - 1); // Into loop to work with multipage
572  $pdf->SetTextColor(0, 0, 0);
573 
574  // Define size of image if we need it
575  $imglinesize = array();
576  if (!empty($realpatharray[$i])) {
577  $imglinesize = pdf_getSizeForImage($realpatharray[$i]);
578  }
579 
580  $pdf->setTopMargin($tab_top_newpage);
581  $page_bottom_margin = $heightforfooter + $heightforfreetext + $heightforinfotot + $this->getHeightForQRInvoice($pdf->getPage(), $object, $langs);
582  $pdf->setPageOrientation('', 1, $page_bottom_margin);
583  $pageposbefore = $pdf->getPage();
584 
585  $showpricebeforepagebreak = 1;
586  $posYAfterImage = 0;
587  $posYAfterDescription = 0;
588 
589  // We start with Photo of product line
590  if (isset($imglinesize['width']) && isset($imglinesize['height']) && ($curY + $imglinesize['height']) > ($this->page_hauteur - $page_bottom_margin)) { // If photo too high, we moved completely on new page
591  $pdf->AddPage('', '', true);
592  if (!empty($tplidx)) {
593  $pdf->useTemplate($tplidx);
594  }
595  if (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD')) {
596  $top_shift = $this->_pagehead($pdf, $object, 0, $outputlangs);
597  $tab_top_newpage = (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD') ? 42 + $top_shift : 10);
598  }
599  $pdf->setPage($pageposbefore + 1);
600 
601  $curY = $tab_top_newpage;
602 
603  // Allows data in the first page if description is long enough to break in multiples pages
604  if (getDolGlobalString('MAIN_PDF_DATA_ON_FIRST_PAGE')) {
605  $showpricebeforepagebreak = 1;
606  } else {
607  $showpricebeforepagebreak = 0;
608  }
609  }
610 
611  if (isset($imglinesize['width']) && isset($imglinesize['height'])) {
612  $curX = $this->posxpicture - 1;
613  $pdf->Image($realpatharray[$i], $curX + (($this->posxtva - $this->posxpicture - $imglinesize['width']) / 2), $curY, $imglinesize['width'], $imglinesize['height'], '', '', '', 2, 300); // Use 300 dpi
614  // $pdf->Image does not increase value return by getY, so we save it manually
615  $posYAfterImage = $curY + $imglinesize['height'];
616  }
617 
618  // Description of product line
619  $curX = $this->posxdesc - 1;
620 
621  $pdf->startTransaction();
622  pdf_writelinedesc($pdf, $object, $i, $outputlangs, $this->posxpicture - $curX - $progress_width, 3, $curX, $curY, $hideref, $hidedesc);
623  $pageposafter = $pdf->getPage();
624  if ($pageposafter > $pageposbefore) { // There is a pagebreak
625  $pdf->rollbackTransaction(true);
626  $pageposafter = $pageposbefore;
627  //print $pageposafter.'-'.$pageposbefore;exit;
628  $pdf->setPageOrientation('', 1, $heightforfooter); // The only function to edit the bottom margin of current page to set it.
629  pdf_writelinedesc($pdf, $object, $i, $outputlangs, $this->posxpicture - $curX - $progress_width, 3, $curX, $curY, $hideref, $hidedesc);
630  $pageposafter = $pdf->getPage();
631  $posyafter = $pdf->GetY();
632  //var_dump($posyafter); var_dump(($this->page_hauteur - ($heightforfooter+$heightforfreetext+$heightforinfotot))); exit;
633  if ($posyafter > ($this->page_hauteur - $page_bottom_margin)) { // There is no space left for total+free text
634  if ($i == ($nblines - 1)) { // No more lines, and no space left to show total, so we create a new page
635  $pdf->AddPage('', '', true);
636  if (!empty($tplidx)) {
637  $pdf->useTemplate($tplidx);
638  }
639  if (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD')) {
640  $top_shift = $this->_pagehead($pdf, $object, 0, $outputlangs);
641  $tab_top_newpage = (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD') ? 42 + $top_shift : 10);
642  }
643  $pdf->setPage($pageposafter + 1);
644  }
645  } else {
646  // We found a page break
647 
648  // Allows data in the first page if description is long enough to break in multiples pages
649  if (getDolGlobalString('MAIN_PDF_DATA_ON_FIRST_PAGE')) {
650  $showpricebeforepagebreak = 1;
651  } else {
652  $showpricebeforepagebreak = 0;
653  }
654  }
655  } else { // No pagebreak
656  $pdf->commitTransaction();
657  }
658  $posYAfterDescription = $pdf->GetY();
659 
660  $nexY = $pdf->GetY();
661  $pageposafter = $pdf->getPage();
662  $pdf->setPage($pageposbefore);
663  $pdf->setTopMargin($this->marge_haute);
664  $pdf->setPageOrientation('', 1, 0); // The only function to edit the bottom margin of current page to set it.
665 
666  // We suppose that a too long description or photo were moved completely on next page
667  if ($pageposafter > $pageposbefore && empty($showpricebeforepagebreak)) {
668  $pdf->setPage($pageposafter);
669  $curY = $tab_top_newpage;
670  }
671 
672  $pdf->SetFont('', '', $default_font_size - 1); // We reposition the default font
673 
674  // VAT Rate
675  if (!getDolGlobalString('MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT') && !getDolGlobalString('MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT_COLUMN')) {
676  $vat_rate = pdf_getlinevatrate($object, $i, $outputlangs, $hidedetails);
677  $pdf->SetXY($this->posxtva - 5, $curY);
678  $pdf->MultiCell($this->posxup - $this->posxtva + 4, 3, $vat_rate, 0, 'R');
679  }
680 
681  // Unit price before discount
682  $up_excl_tax = pdf_getlineupexcltax($object, $i, $outputlangs, $hidedetails);
683  $pdf->SetXY($this->posxup, $curY);
684  $pdf->MultiCell($this->posxqty - $this->posxup - 0.8, 3, $up_excl_tax, 0, 'R', 0);
685 
686  // Quantity
687  $qty = pdf_getlineqty($object, $i, $outputlangs, $hidedetails);
688  $pdf->SetXY($this->posxqty, $curY);
689  $pdf->MultiCell($this->posxunit - $this->posxqty - 0.8, 4, $qty, 0, 'R'); // Enough for 6 chars
690 
691  // Unit
692  if (getDolGlobalInt('PRODUCT_USE_UNITS')) {
693  $unit = pdf_getlineunit($object, $i, $outputlangs, $hidedetails);
694  $pdf->SetXY($this->posxunit, $curY);
695  $pdf->MultiCell($this->posxdiscount - $this->posxunit - 0.8, 4, $unit, 0, 'L');
696  }
697 
698  // Discount on line
699  if ($object->lines[$i]->remise_percent) {
700  $pdf->SetXY($this->posxdiscount - 2, $curY);
701  $remise_percent = pdf_getlineremisepercent($object, $i, $outputlangs, $hidedetails);
702  $pdf->MultiCell($this->posxprogress - $this->posxdiscount + 2, 3, $remise_percent, 0, 'R');
703  }
704 
705  // Situation progress
706  if ($this->situationinvoice) {
707  $progress = pdf_getlineprogress($object, $i, $outputlangs, $hidedetails);
708  $pdf->SetXY($this->posxprogress, $curY);
709  $pdf->MultiCell($this->postotalht - $this->posxprogress + 1, 3, $progress, 0, 'R');
710  }
711 
712  // Total HT line
713  $total_excl_tax = pdf_getlinetotalexcltax($object, $i, $outputlangs, $hidedetails);
714  $pdf->SetXY($this->postotalht, $curY);
715  $pdf->MultiCell($this->page_largeur - $this->marge_droite - $this->postotalht, 3, $total_excl_tax, 0, 'R', 0);
716 
717 
718  $sign = 1;
719  if (isset($object->type) && $object->type == 2 && getDolGlobalString('INVOICE_POSITIVE_CREDIT_NOTE')) {
720  $sign = -1;
721  }
722  // Collection of totals by value of VAT in $this->tva["taux"]=total_tva
723  $prev_progress = $object->lines[$i]->get_prev_progress($object->id);
724  if ($prev_progress > 0 && !empty($object->lines[$i]->situation_percent)) { // Compute progress from previous situation
725  if (isModEnabled("multicurrency") && $object->multicurrency_tx != 1) {
726  $tvaligne = $sign * $object->lines[$i]->multicurrency_total_tva * ($object->lines[$i]->situation_percent - $prev_progress) / $object->lines[$i]->situation_percent;
727  } else {
728  $tvaligne = $sign * $object->lines[$i]->total_tva * ($object->lines[$i]->situation_percent - $prev_progress) / $object->lines[$i]->situation_percent;
729  }
730  } else {
731  if (isModEnabled("multicurrency") && $object->multicurrency_tx != 1) {
732  $tvaligne = $sign * $object->lines[$i]->multicurrency_total_tva;
733  } else {
734  $tvaligne = $sign * $object->lines[$i]->total_tva;
735  }
736  }
737 
738  $localtax1ligne = $object->lines[$i]->total_localtax1;
739  $localtax2ligne = $object->lines[$i]->total_localtax2;
740  $localtax1_rate = $object->lines[$i]->localtax1_tx;
741  $localtax2_rate = $object->lines[$i]->localtax2_tx;
742  $localtax1_type = $object->lines[$i]->localtax1_type;
743  $localtax2_type = $object->lines[$i]->localtax2_type;
744 
745  // TODO remise_percent is an obsolete field for object parent
746  /*if ($object->remise_percent) {
747  $tvaligne -= ($tvaligne * $object->remise_percent) / 100;
748  }
749  if ($object->remise_percent) {
750  $localtax1ligne -= ($localtax1ligne * $object->remise_percent) / 100;
751  }
752  if ($object->remise_percent) {
753  $localtax2ligne -= ($localtax2ligne * $object->remise_percent) / 100;
754  }*/
755 
756  $vatrate = (string) $object->lines[$i]->tva_tx;
757 
758  // Retrieve type from database for backward compatibility with old records
759  if ((!isset($localtax1_type) || $localtax1_type == '' || !isset($localtax2_type) || $localtax2_type == '') // if tax type not defined
760  && (!empty($localtax1_rate) || !empty($localtax2_rate))) { // and there is local tax
761  $localtaxtmp_array = getLocalTaxesFromRate($vatrate, 0, $object->thirdparty, $mysoc);
762  $localtax1_type = isset($localtaxtmp_array[0]) ? $localtaxtmp_array[0] : '';
763  $localtax2_type = isset($localtaxtmp_array[2]) ? $localtaxtmp_array[2] : '';
764  }
765 
766  // retrieve global local tax
767  if ($localtax1_type && $localtax1ligne != 0) {
768  if (empty($this->localtax1[$localtax1_type][$localtax1_rate])) {
769  $this->localtax1[$localtax1_type][$localtax1_rate] = $localtax1ligne;
770  } else {
771  $this->localtax1[$localtax1_type][$localtax1_rate] += $localtax1ligne;
772  }
773  }
774  if ($localtax2_type && $localtax2ligne != 0) {
775  if (empty($this->localtax2[$localtax2_type][$localtax2_rate])) {
776  $this->localtax2[$localtax2_type][$localtax2_rate] = $localtax2ligne;
777  } else {
778  $this->localtax2[$localtax2_type][$localtax2_rate] += $localtax2ligne;
779  }
780  }
781 
782  if (($object->lines[$i]->info_bits & 0x01) == 0x01) {
783  $vatrate .= '*';
784  }
785 
786  // Fill $this->tva and $this->tva_array
787  if (!isset($this->tva[$vatrate])) {
788  $this->tva[$vatrate] = 0;
789  }
790  $this->tva[$vatrate] += $tvaligne; // ->tva is abandoned, we use now ->tva_array that is more complete
791  $vatcode = $object->lines[$i]->vat_src_code;
792  if (empty($this->tva_array[$vatrate.($vatcode ? ' ('.$vatcode.')' : '')]['amount'])) {
793  $this->tva_array[$vatrate.($vatcode ? ' ('.$vatcode.')' : '')]['amount'] = 0;
794  }
795  $this->tva_array[$vatrate.($vatcode ? ' ('.$vatcode.')' : '')] = array('vatrate' => $vatrate, 'vatcode' => $vatcode, 'amount' => $this->tva_array[$vatrate.($vatcode ? ' ('.$vatcode.')' : '')]['amount'] + $tvaligne);
796 
797  if ($posYAfterImage > $posYAfterDescription) {
798  $nexY = $posYAfterImage;
799  }
800 
801  // Add line
802  if (getDolGlobalString('MAIN_PDF_DASH_BETWEEN_LINES') && $i < ($nblines - 1)) {
803  $pdf->setPage($pageposafter);
804  $pdf->SetLineStyle(array('dash' => '1,1', 'color' => array(80, 80, 80)));
805  //$pdf->SetDrawColor(190,190,200);
806  $pdf->line($this->marge_gauche, $nexY + 1, $this->page_largeur - $this->marge_droite, $nexY + 1);
807  $pdf->SetLineStyle(array('dash' => 0));
808  }
809 
810  $nexY += 2; // Add space between lines
811 
812  // Detect if some page were added automatically and output _tableau for past pages
813  while ($pagenb < $pageposafter) {
814  $pdf->setPage($pagenb);
815  if ($pagenb == 1) {
816  $this->_tableau($pdf, $tab_top, $this->page_hauteur - $tab_top - $heightforfooter - $heightforqrinvoice_firstpage, 0, $outputlangs, 0, 1, $object->multicurrency_code);
817  } else {
818  $this->_tableau($pdf, $tab_top_newpage, $this->page_hauteur - $tab_top_newpage - $heightforfooter, 0, $outputlangs, 1, 1, $object->multicurrency_code);
819  }
820  $this->_pagefoot($pdf, $object, $outputlangs, 1, $this->getHeightForQRInvoice($pagenb, $object, $langs));
821  $pagenb++;
822  $pdf->setPage($pagenb);
823  $pdf->setPageOrientation('', 1, 0); // The only function to edit the bottom margin of current page to set it.
824  if (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD')) {
825  $top_shift = $this->_pagehead($pdf, $object, 0, $outputlangs);
826  $tab_top_newpage = (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD') ? 42 + $top_shift : 10);
827  }
828  if (!empty($tplidx)) {
829  $pdf->useTemplate($tplidx);
830  }
831  }
832  if (isset($object->lines[$i + 1]->pagebreak) && $object->lines[$i + 1]->pagebreak) {
833  if ($pagenb == 1) {
834  $this->_tableau($pdf, $tab_top, $this->page_hauteur - $tab_top - $heightforfooter - $heightforqrinvoice_firstpage, 0, $outputlangs, 0, 1, $object->multicurrency_code);
835  } else {
836  $this->_tableau($pdf, $tab_top_newpage, $this->page_hauteur - $tab_top_newpage - $heightforfooter, 0, $outputlangs, 1, 1, $object->multicurrency_code);
837  }
838  $this->_pagefoot($pdf, $object, $outputlangs, 1, $this->getHeightForQRInvoice($pagenb, $object, $langs));
839  // New page
840  $pdf->AddPage();
841  if (!empty($tplidx)) {
842  $pdf->useTemplate($tplidx);
843  }
844  $pagenb++;
845  if (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD')) {
846  $top_shift = $this->_pagehead($pdf, $object, 0, $outputlangs);
847  $tab_top_newpage = (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD') ? 42 + $top_shift : 10);
848  }
849  }
850  }
851 
852  // Show square
853  if ($pagenb == 1) {
854  $this->_tableau($pdf, $tab_top, $this->page_hauteur - $tab_top - $heightforinfotot - $heightforfreetext - $heightforfooter - $heightforqrinvoice_firstpage, 0, $outputlangs, 0, 0, $object->multicurrency_code);
855  $bottomlasttab = $this->page_hauteur - $heightforinfotot - $heightforfreetext - $heightforfooter - $heightforqrinvoice_firstpage + 1;
856  } else {
857  $this->_tableau($pdf, $tab_top_newpage, $this->page_hauteur - $tab_top_newpage - $heightforinfotot - $heightforfreetext - $heightforfooter, 0, $outputlangs, 1, 0, $object->multicurrency_code);
858  $bottomlasttab = $this->page_hauteur - $heightforinfotot - $heightforfreetext - $heightforfooter + 1;
859  }
860  dol_syslog("bottomlasttab=".$bottomlasttab." this->page_hauteur=".$this->page_hauteur." heightforinfotot=".$heightforinfotot." heightforfreetext=".$heightforfreetext." heightforfooter=".$heightforfooter);
861 
862  // Display info area
863  $posy = $this->_tableau_info($pdf, $object, $bottomlasttab, $outputlangs, $outputlangsbis);
864 
865  // Display total area
866  $posy = $this->_tableau_tot($pdf, $object, $deja_regle, $bottomlasttab, $outputlangs, $outputlangsbis);
867 
868  // Display Payments area
869  if (($deja_regle || $amount_credit_notes_included || $amount_deposits_included) && !getDolGlobalString('INVOICE_NO_PAYMENT_DETAILS')) {
870  $posy = $this->_tableau_versements($pdf, $object, $posy, $outputlangs, $heightforfooter);
871  }
872 
873  // Pagefoot
874  $this->_pagefoot($pdf, $object, $outputlangs, 0, $this->getHeightForQRInvoice($pdf->getPage(), $object, $langs));
875  if (method_exists($pdf, 'AliasNbPages')) {
876  $pdf->AliasNbPages();
877  }
878 
879  if (getDolGlobalString('INVOICE_ADD_SWISS_QR_CODE') == 'bottom') {
880  $result = $this->addBottomQRInvoice($pdf, $object, $outputlangs);
881  if (!$result) {
882  $pdf->Close();
883  return 0;
884  }
885  }
886  $pdf->Close();
887 
888  $pdf->Output($file, 'F');
889 
890  // Add pdfgeneration hook
891  $hookmanager->initHooks(array('pdfgeneration'));
892  $parameters = array('file' => $file, 'object' => $object, 'outputlangs' => $outputlangs);
893  global $action;
894  $reshook = $hookmanager->executeHooks('afterPDFCreation', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
895  if ($reshook < 0) {
896  $this->error = $hookmanager->error;
897  $this->errors = $hookmanager->errors;
898  }
899 
900  dolChmod($file);
901 
902  $this->result = array('fullpath' => $file);
903 
904  return 1; // No error
905  } else {
906  $this->error = $langs->transnoentities("ErrorCanNotCreateDir", $dir);
907  return 0;
908  }
909  } else {
910  $this->error = $langs->transnoentities("ErrorConstantNotDefined", "FAC_OUTPUTDIR");
911  return 0;
912  }
913  }
914 
915 
916  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
917  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
928  protected function _tableau_versements(&$pdf, $object, $posy, $outputlangs, $heightforfooter = 0)
929  {
930  // phpcs:enable
931  global $conf;
932 
933  $sign = 1;
934  if ($object->type == 2 && getDolGlobalString('INVOICE_POSITIVE_CREDIT_NOTE')) {
935  $sign = -1;
936  }
937 
938  $current_page = $pdf->getPage();
939  $tab3_posx = 120;
940  $tab3_top = $posy + 8;
941  $tab3_width = 80;
942  $tab3_height = 4;
943  if ($this->page_largeur < 210) { // To work with US executive format
944  $tab3_posx -= 15;
945  }
946 
947  $default_font_size = pdf_getPDFFontSize($outputlangs);
948 
949  $this->_tableau_versements_header($pdf, $object, $outputlangs, $default_font_size, $tab3_posx, $tab3_top, $tab3_width, $tab3_height);
950 
951  $y = 0;
952 
953  $pdf->SetFont('', '', $default_font_size - 4);
954 
955 
956  // Loop on each discount available (deposits and credit notes and excess of payment included)
957  $sql = "SELECT re.rowid, re.amount_ht, re.multicurrency_amount_ht, re.amount_tva, re.multicurrency_amount_tva, re.amount_ttc, re.multicurrency_amount_ttc,";
958  $sql .= " re.description, re.fk_facture_source,";
959  $sql .= " f.type, f.datef";
960  $sql .= " FROM ".MAIN_DB_PREFIX."societe_remise_except as re, ".MAIN_DB_PREFIX."facture as f";
961  $sql .= " WHERE re.fk_facture_source = f.rowid AND re.fk_facture = ".((int) $object->id);
962  $resql = $this->db->query($sql);
963  if ($resql) {
964  $num = $this->db->num_rows($resql);
965  $i = 0;
966  $invoice = new Facture($this->db);
967  while ($i < $num) {
968  $y += 3;
969  if ($tab3_top + $y >= ($this->page_hauteur - $heightforfooter)) {
970  $y = 0;
971  $current_page++;
972  $pdf->AddPage('', '', true);
973  /*if (!empty($tplidx)) {
974  $pdf->useTemplate($tplidx);
975  }*/
976  if (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD')) {
977  $top_shift = $this->_pagehead($pdf, $object, 0, $outputlangs);
978  $tab_top_newpage = (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD') ? 42 + $top_shift : 10);
979  }
980  $pdf->setPage($current_page);
981  $this->_tableau_versements_header($pdf, $object, $outputlangs, $default_font_size, $tab3_posx, $tab3_top + $y - 3, $tab3_width, $tab3_height);
982  }
983 
984  $obj = $this->db->fetch_object($resql);
985 
986  if ($obj->type == 2) {
987  $text = $outputlangs->transnoentities("CreditNote");
988  } elseif ($obj->type == 3) {
989  $text = $outputlangs->transnoentities("Deposit");
990  } elseif ($obj->type == 0) {
991  $text = $outputlangs->transnoentities("ExcessReceived");
992  } else {
993  $text = $outputlangs->transnoentities("UnknownType");
994  }
995 
996  $invoice->fetch($obj->fk_facture_source);
997 
998  $pdf->SetXY($tab3_posx, $tab3_top + $y);
999  $pdf->MultiCell(20, 3, dol_print_date($this->db->jdate($obj->datef), 'day', false, $outputlangs, true), 0, 'L', 0);
1000  $pdf->SetXY($tab3_posx + 21, $tab3_top + $y);
1001  $pdf->MultiCell(20, 3, price((isModEnabled("multicurrency") && $object->multicurrency_tx != 1) ? $obj->multicurrency_amount_ttc : $obj->amount_ttc, 0, $outputlangs), 0, 'L', 0);
1002  $pdf->SetXY($tab3_posx + 40, $tab3_top + $y);
1003  $pdf->MultiCell(20, 3, $text, 0, 'L', 0);
1004  $pdf->SetXY($tab3_posx + 58, $tab3_top + $y);
1005  $pdf->MultiCell(20, 3, $invoice->ref, 0, 'L', 0);
1006 
1007  $pdf->line($tab3_posx, $tab3_top + $y + 3, $tab3_posx + $tab3_width, $tab3_top + $y + 3);
1008 
1009  $i++;
1010  }
1011  } else {
1012  $this->error = $this->db->lasterror();
1013  return -1;
1014  }
1015 
1016  // Loop on each payment
1017  // TODO Call getListOfPaymentsgetListOfPayments instead of hard coded sql
1018  $sql = "SELECT p.datep as date, p.fk_paiement, p.num_paiement as num, pf.amount as amount, pf.multicurrency_amount,";
1019  $sql .= " cp.code";
1020  $sql .= " FROM ".MAIN_DB_PREFIX."paiement_facture as pf, ".MAIN_DB_PREFIX."paiement as p";
1021  $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."c_paiement as cp ON p.fk_paiement = cp.id";
1022  $sql .= " WHERE pf.fk_paiement = p.rowid AND pf.fk_facture = ".((int) $object->id);
1023  //$sql.= " WHERE pf.fk_paiement = p.rowid AND pf.fk_facture = 1";
1024  $sql .= " ORDER BY p.datep";
1025 
1026  $resql = $this->db->query($sql);
1027  if ($resql) {
1028  $num = $this->db->num_rows($resql);
1029  $i = 0;
1030  $y += 3;
1031  $maxY = $y;
1032  while ($i < $num) {
1033  if ($tab3_top + $y >= ($this->page_hauteur - $heightforfooter)) {
1034  $y = 0;
1035  $current_page++;
1036  $pdf->AddPage('', '', true);
1037  /*if (!empty($tplidx)) {
1038  $pdf->useTemplate($tplidx);
1039  }*/
1040  if (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD')) {
1041  $top_shift = $this->_pagehead($pdf, $object, 0, $outputlangs);
1042  $tab_top_newpage = (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD') ? 42 + $top_shift : 10);
1043  }
1044  $pdf->setPage($current_page);
1045  $this->_tableau_versements_header($pdf, $object, $outputlangs, $default_font_size, $tab3_posx, $tab3_top + $y - 3, $tab3_width, $tab3_height);
1046  }
1047 
1048  $row = $this->db->fetch_object($resql);
1049 
1050  $pdf->SetXY($tab3_posx, $tab3_top + $y);
1051  $pdf->MultiCell(20, 3, dol_print_date($this->db->jdate($row->date), 'day', false, $outputlangs, true), 0, 'L', 0);
1052  $pdf->SetXY($tab3_posx + 21, $tab3_top + $y);
1053  $pdf->MultiCell(20, 3, price($sign * ((isModEnabled("multicurrency") && $object->multicurrency_tx != 1) ? $row->multicurrency_amount : $row->amount), 0, $outputlangs), 0, 'L', 0);
1054  $pdf->SetXY($tab3_posx + 40, $tab3_top + $y);
1055  $oper = $outputlangs->transnoentitiesnoconv("PaymentTypeShort".$row->code);
1056 
1057  $pdf->MultiCell(20, 3, $oper, 0, 'L', 0);
1058  $maxY = max($pdf->GetY() - $tab3_top - 3, $maxY);
1059  $pdf->SetXY($tab3_posx + 58, $tab3_top + $y);
1060  $pdf->MultiCell(30, 3, $row->num, 0, 'L', 0);
1061  $y = $maxY = max($pdf->GetY() - $tab3_top - 3, $maxY);
1062  $pdf->line($tab3_posx, $tab3_top + $y + 3, $tab3_posx + $tab3_width, $tab3_top + $y + 3);
1063  $y += 3;
1064  $i++;
1065  }
1066 
1067  return $tab3_top + $y + 3;
1068  } else {
1069  $this->error = $this->db->lasterror();
1070  return -1;
1071  }
1072  }
1073 
1074  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1075  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
1089  protected function _tableau_versements_header($pdf, $object, $outputlangs, $default_font_size, $tab3_posx, $tab3_top, $tab3_width, $tab3_height)
1090  {
1091  // phpcs:enable
1092  $title = $outputlangs->transnoentities("PaymentsAlreadyDone");
1093  if ($object->type == 2) {
1094  $title = $outputlangs->transnoentities("PaymentsBackAlreadyDone");
1095  }
1096 
1097  $pdf->SetFont('', '', $default_font_size - 3);
1098  $pdf->SetXY($tab3_posx, $tab3_top - 4);
1099  $pdf->MultiCell(60, 3, $title, 0, 'L', 0);
1100 
1101  $pdf->line($tab3_posx, $tab3_top, $tab3_posx + $tab3_width, $tab3_top);
1102 
1103  $pdf->SetFont('', '', $default_font_size - 4);
1104  $pdf->SetXY($tab3_posx, $tab3_top);
1105  $pdf->MultiCell(20, 3, $outputlangs->transnoentities("Payment"), 0, 'L', 0);
1106  $pdf->SetXY($tab3_posx + 21, $tab3_top);
1107  $pdf->MultiCell(20, 3, $outputlangs->transnoentities("Amount"), 0, 'L', 0);
1108  $pdf->SetXY($tab3_posx + 40, $tab3_top);
1109  $pdf->MultiCell(20, 3, $outputlangs->transnoentities("Type"), 0, 'L', 0);
1110  $pdf->SetXY($tab3_posx + 58, $tab3_top);
1111  $pdf->MultiCell(20, 3, $outputlangs->transnoentities("Num"), 0, 'L', 0);
1112 
1113  $pdf->line($tab3_posx, $tab3_top - 1 + $tab3_height, $tab3_posx + $tab3_width, $tab3_top - 1 + $tab3_height);
1114  }
1115 
1116  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1117  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
1128  protected function _tableau_info(&$pdf, $object, $posy, $outputlangs, $outputlangsbis)
1129  {
1130  // phpcs:enable
1131  global $conf, $mysoc, $hookmanager;
1132 
1133  $default_font_size = pdf_getPDFFontSize($outputlangs);
1134 
1135  $pdf->SetFont('', '', $default_font_size - 1);
1136 
1137  // If France, show VAT mention if not applicable
1138  if ($this->emetteur->country_code == 'FR' && empty($mysoc->tva_assuj)) {
1139  $pdf->SetFont('', 'B', $default_font_size - 2);
1140  $pdf->SetXY($this->marge_gauche, $posy);
1141  if ($mysoc->forme_juridique_code == 92) {
1142  $pdf->MultiCell(100, 3, $outputlangs->transnoentities("VATIsNotUsedForInvoiceAsso"), 0, 'L', 0);
1143  } else {
1144  $pdf->MultiCell(100, 3, $outputlangs->transnoentities("VATIsNotUsedForInvoice"), 0, 'L', 0);
1145  }
1146 
1147  $posy = $pdf->GetY() + 4;
1148  }
1149 
1150  $posxval = 52;
1151  $posxend = 110; // End of x for text on left side
1152  if ($this->page_largeur < 210) { // To work with US executive format
1153  $posxend -= 10;
1154  }
1155 
1156  // Show payments conditions
1157  if ($object->type != 2 && ($object->cond_reglement_code || $object->cond_reglement)) {
1158  $pdf->SetFont('', 'B', $default_font_size - 2);
1159  $pdf->SetXY($this->marge_gauche, $posy);
1160  $titre = $outputlangs->transnoentities("PaymentConditions").':';
1161  $pdf->MultiCell(43, 4, $titre, 0, 'L');
1162 
1163  $pdf->SetFont('', '', $default_font_size - 2);
1164  $pdf->SetXY($posxval, $posy);
1165  $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);
1166  $lib_condition_paiement = str_replace('\n', "\n", $lib_condition_paiement);
1167  $pdf->MultiCell(67, 4, $lib_condition_paiement, 0, 'L');
1168 
1169  $posy = $pdf->GetY() + 3; // We need spaces for 2 lines payment conditions
1170  }
1171 
1172  // Show category of operations
1173  if (getDolGlobalInt('INVOICE_CATEGORY_OF_OPERATION') == 2 && $this->categoryOfOperation >= 0) {
1174  $pdf->SetFont('', 'B', $default_font_size - 2);
1175  $pdf->SetXY($this->marge_gauche, $posy);
1176  $categoryOfOperationTitle = $outputlangs->transnoentities("MentionCategoryOfOperations").' : ';
1177  $pdf->MultiCell($posxval - $this->marge_gauche, 4, $categoryOfOperationTitle, 0, 'L');
1178 
1179  $pdf->SetFont('', '', $default_font_size - 2);
1180  $pdf->SetXY($posxval, $posy);
1181  $categoryOfOperationLabel = $outputlangs->transnoentities("MentionCategoryOfOperations" . $this->categoryOfOperation);
1182  $pdf->MultiCell($posxend - $posxval, 4, $categoryOfOperationLabel, 0, 'L');
1183 
1184  $posy = $pdf->GetY() + 3; // for 2 lines
1185  }
1186 
1187  if ($object->type != 2) {
1188  // Check a payment mode is defined
1189  if (empty($object->mode_reglement_code)
1190  && !getDolGlobalInt('FACTURE_CHQ_NUMBER')
1191  && !getDolGlobalInt('FACTURE_RIB_NUMBER')) {
1192  $this->error = $outputlangs->transnoentities("ErrorNoPaiementModeConfigured");
1193  } elseif (($object->mode_reglement_code == 'CHQ' && !getDolGlobalInt('FACTURE_CHQ_NUMBER') && empty($object->fk_account) && empty($object->fk_bank))
1194  || ($object->mode_reglement_code == 'VIR' && !getDolGlobalInt('FACTURE_RIB_NUMBER') && empty($object->fk_account) && empty($object->fk_bank))) {
1195  // Avoid having any valid PDF with setup that is not complete
1196  $outputlangs->load("errors");
1197 
1198  $pdf->SetXY($this->marge_gauche, $posy);
1199  $pdf->SetTextColor(200, 0, 0);
1200  $pdf->SetFont('', 'B', $default_font_size - 2);
1201  $this->error = $outputlangs->transnoentities("ErrorPaymentModeDefinedToWithoutSetup", $object->mode_reglement_code);
1202  $pdf->MultiCell(80, 3, $this->error, 0, 'L', 0);
1203  $pdf->SetTextColor(0, 0, 0);
1204 
1205  $posy = $pdf->GetY() + 1;
1206  }
1207 
1208  // Show payment mode
1209  if (!empty($object->mode_reglement_code)
1210  && $object->mode_reglement_code != 'CHQ'
1211  && $object->mode_reglement_code != 'VIR') {
1212  $pdf->SetFont('', 'B', $default_font_size - 2);
1213  $pdf->SetXY($this->marge_gauche, $posy);
1214  $titre = $outputlangs->transnoentities("PaymentMode").':';
1215  $pdf->MultiCell(80, 5, $titre, 0, 'L');
1216 
1217  $pdf->SetFont('', '', $default_font_size - 2);
1218  $pdf->SetXY($posxval, $posy);
1219  $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);
1220  //#21654: add account number used for the debit
1221  if ($object->mode_reglement_code == "PRE") {
1222  require_once DOL_DOCUMENT_ROOT.'/societe/class/companybankaccount.class.php';
1223  $bac = new CompanyBankAccount($this->db);
1224  // @phan-suppress-next-line PhanPluginSuspiciousParamPosition
1225  $bac->fetch(0, '', $object->thirdparty->id);
1226  $iban = $bac->iban.(($bac->iban && $bac->bic) ? ' / ' : '').$bac->bic;
1227  $lib_mode_reg .= ' '.$outputlangs->trans("PaymentTypePREdetails", dol_trunc($iban, 6, 'right', 'UTF-8', 1));
1228  }
1229  $pdf->MultiCell(80, 5, $lib_mode_reg, 0, 'L');
1230 
1231  $posy = $pdf->GetY();
1232  }
1233 
1234  // Show if Option VAT debit option is on also if transmitter is french
1235  // Decret n°2099-1299 2022-10-07
1236  // French mention : "Option pour le paiement de la taxe d'après les débits"
1237  if ($this->emetteur->country_code == 'FR') {
1238  if (getDolGlobalInt('TAX_MODE') == 1) {
1239  $pdf->SetXY($this->marge_gauche, $posy);
1240  $pdf->writeHTMLCell(80, 5, '', '', $outputlangs->transnoentities("MentionVATDebitOptionIsOn"), 0, 1);
1241 
1242  $posy = $pdf->GetY() + 1;
1243  }
1244  }
1245 
1246  // Show online payment link
1247  if (empty($object->mode_reglement_code) || $object->mode_reglement_code == 'CB' || $object->mode_reglement_code == 'VAD') {
1248  $useonlinepayment = 0;
1249  if (getDolGlobalString('PDF_SHOW_LINK_TO_ONLINE_PAYMENT')) {
1250  if (isModEnabled('paypal')) {
1251  $useonlinepayment++;
1252  }
1253  if (isModEnabled('stripe')) {
1254  $useonlinepayment++;
1255  }
1256  if (isModEnabled('paybox')) {
1257  $useonlinepayment++;
1258  }
1259  $parameters = array();
1260  $action = '';
1261  $reshook = $hookmanager->executeHooks('doShowOnlinePaymentUrl', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
1262  if ($reshook > 0) {
1263  if (isset($hookmanager->resArray['showonlinepaymenturl'])) {
1264  $useonlinepayment += $hookmanager->resArray['showonlinepaymenturl'];
1265  }
1266  }
1267  }
1268 
1269  if ($object->statut != Facture::STATUS_DRAFT && $useonlinepayment) {
1270  require_once DOL_DOCUMENT_ROOT.'/core/lib/payments.lib.php';
1271  global $langs;
1272 
1273  $langs->loadLangs(array('payment', 'paybox', 'stripe'));
1274  $servicename = $langs->transnoentities('Online');
1275  $paiement_url = getOnlinePaymentUrl('', 'invoice', $object->ref, '', '', '');
1276  $linktopay = $langs->trans("ToOfferALinkForOnlinePayment", $servicename).' <a href="'.$paiement_url.'">'.$outputlangs->transnoentities("ClickHere").'</a>';
1277 
1278  $pdf->SetXY($this->marge_gauche, $posy);
1279  $pdf->writeHTMLCell(80, 5, '', '', dol_htmlentitiesbr($linktopay), 0, 1);
1280 
1281  $posy = $pdf->GetY() + 1;
1282  }
1283  }
1284 
1285  // Show payment mode CHQ
1286  if (empty($object->mode_reglement_code) || $object->mode_reglement_code == 'CHQ') {
1287  // If payment mode unregulated or payment mode forced to CHQ
1288  if (getDolGlobalInt('FACTURE_CHQ_NUMBER')) {
1289  $diffsizetitle = (!getDolGlobalString('PDF_DIFFSIZE_TITLE') ? 3 : $conf->global->PDF_DIFFSIZE_TITLE);
1290 
1291  if (getDolGlobalInt('FACTURE_CHQ_NUMBER') > 0) {
1292  $account = new Account($this->db);
1293  $account->fetch(getDolGlobalInt('FACTURE_CHQ_NUMBER'));
1294 
1295  $pdf->SetXY($this->marge_gauche, $posy);
1296  $pdf->SetFont('', 'B', $default_font_size - $diffsizetitle);
1297  $pdf->MultiCell(100, 3, $outputlangs->transnoentities('PaymentByChequeOrderedTo', $account->owner_name), 0, 'L', 0);
1298  $posy = $pdf->GetY() + 1;
1299 
1300  if (!getDolGlobalString('MAIN_PDF_HIDE_CHQ_ADDRESS')) {
1301  $pdf->SetXY($this->marge_gauche, $posy);
1302  $pdf->SetFont('', '', $default_font_size - $diffsizetitle);
1303  $pdf->MultiCell(100, 3, $outputlangs->convToOutputCharset($account->owner_address), 0, 'L', 0);
1304  $posy = $pdf->GetY() + 2;
1305  }
1306  }
1307  if ($conf->global->FACTURE_CHQ_NUMBER == -1) {
1308  $pdf->SetXY($this->marge_gauche, $posy);
1309  $pdf->SetFont('', 'B', $default_font_size - $diffsizetitle);
1310  $pdf->MultiCell(100, 3, $outputlangs->transnoentities('PaymentByChequeOrderedTo', $this->emetteur->name), 0, 'L', 0);
1311  $posy = $pdf->GetY() + 1;
1312 
1313  if (!getDolGlobalString('MAIN_PDF_HIDE_CHQ_ADDRESS')) {
1314  $pdf->SetXY($this->marge_gauche, $posy);
1315  $pdf->SetFont('', '', $default_font_size - $diffsizetitle);
1316  $pdf->MultiCell(100, 3, $outputlangs->convToOutputCharset($this->emetteur->getFullAddress()), 0, 'L', 0);
1317  $posy = $pdf->GetY() + 2;
1318  }
1319  }
1320  }
1321  }
1322 
1323  // If payment mode not forced or forced to VIR, show payment with BAN
1324  if (empty($object->mode_reglement_code) || $object->mode_reglement_code == 'VIR') {
1325  if ($object->fk_account > 0 || $object->fk_bank > 0 || getDolGlobalInt('FACTURE_RIB_NUMBER')) {
1326  $bankid = ($object->fk_account <= 0 ? $conf->global->FACTURE_RIB_NUMBER : $object->fk_account);
1327  if ($object->fk_bank > 0) {
1328  $bankid = $object->fk_bank; // For backward compatibility when object->fk_account is forced with object->fk_bank
1329  }
1330  $account = new Account($this->db);
1331  $account->fetch($bankid);
1332 
1333  $curx = $this->marge_gauche;
1334  $cury = $posy;
1335 
1336  $posy = pdf_bank($pdf, $outputlangs, $curx, $cury, $account, 0, $default_font_size);
1337 
1338  $posy += 2;
1339  }
1340  }
1341  }
1342 
1343  return $posy;
1344  }
1345 
1346 
1347  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1348  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
1360  protected function _tableau_tot(&$pdf, $object, $deja_regle, $posy, $outputlangs, $outputlangsbis)
1361  {
1362  // phpcs:enable
1363  global $conf, $mysoc, $hookmanager;
1364 
1365  $sign = 1;
1366  if ($object->type == 2 && getDolGlobalString('INVOICE_POSITIVE_CREDIT_NOTE')) {
1367  $sign = -1;
1368  }
1369 
1370  $default_font_size = pdf_getPDFFontSize($outputlangs);
1371 
1372  $outputlangsbis = null;
1373  if (getDolGlobalString('PDF_USE_ALSO_LANGUAGE_CODE') && $outputlangs->defaultlang != getDolGlobalString('PDF_USE_ALSO_LANGUAGE_CODE')) {
1374  $outputlangsbis = new Translate('', $conf);
1375  $outputlangsbis->setDefaultLang(getDolGlobalString('PDF_USE_ALSO_LANGUAGE_CODE'));
1376  $outputlangsbis->loadLangs(array("main", "dict", "companies", "bills", "products", "propal"));
1377  $default_font_size--;
1378  }
1379 
1380  $tab2_top = $posy;
1381  $tab2_hl = 4;
1382  $pdf->SetFont('', '', $default_font_size - 1);
1383 
1384  // Total table
1385  $col1x = 120;
1386  $col2x = 170;
1387  if ($this->page_largeur < 210) { // To work with US executive format
1388  $col1x -= 15;
1389  $col2x -= 10;
1390  }
1391  $largcol2 = ($this->page_largeur - $this->marge_droite - $col2x);
1392 
1393  $useborder = 0;
1394  $index = 0;
1395 
1396  // Total HT
1397  $pdf->SetFillColor(255, 255, 255);
1398  $pdf->SetXY($col1x, $tab2_top);
1399  $pdf->MultiCell($col2x - $col1x, $tab2_hl, $outputlangs->transnoentities(!getDolGlobalString('MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT') ? "TotalHT" : "Total").(is_object($outputlangsbis) ? ' / '.$outputlangsbis->transnoentities(!getDolGlobalString('MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT') ? "TotalHT" : "Total") : ''), 0, 'L', 1);
1400 
1401  $total_ht = ((isModEnabled("multicurrency") && isset($object->multicurrency_tx) && $object->multicurrency_tx != 1) ? $object->multicurrency_total_ht : $object->total_ht);
1402  $pdf->SetXY($col2x, $tab2_top);
1403  $pdf->MultiCell($largcol2, $tab2_hl, price($sign * ($total_ht + (!empty($object->remise) ? $object->remise : 0)), 0, $outputlangs), 0, 'R', 1);
1404 
1405  // Show VAT by rates and total
1406  $pdf->SetFillColor(248, 248, 248);
1407 
1408  $total_ttc = (isModEnabled("multicurrency") && $object->multicurrency_tx != 1) ? $object->multicurrency_total_ttc : $object->total_ttc;
1409 
1410  $this->atleastoneratenotnull = 0;
1411  if (!getDolGlobalString('MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT')) {
1412  $tvaisnull = ((!empty($this->tva) && count($this->tva) == 1 && isset($this->tva['0.000']) && is_float($this->tva['0.000'])) ? true : false);
1413  if (getDolGlobalString('MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT_IFNULL') && $tvaisnull) {
1414  // Nothing to do
1415  } else {
1416  //Local tax 1 before VAT
1417  //if (!empty($conf->global->FACTURE_LOCAL_TAX1_OPTION) && $conf->global->FACTURE_LOCAL_TAX1_OPTION=='localtax1on')
1418  //{
1419  foreach ($this->localtax1 as $localtax_type => $localtax_rate) {
1420  if (in_array((string) $localtax_type, array('1', '3', '5'))) {
1421  continue;
1422  }
1423 
1424  foreach ($localtax_rate as $tvakey => $tvaval) {
1425  if ($tvakey != 0) { // On affiche pas taux 0
1426  //$this->atleastoneratenotnull++;
1427 
1428  $index++;
1429  $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1430 
1431  $tvacompl = '';
1432  if (preg_match('/\*/', (string) $tvakey)) {
1433  $tvakey = str_replace('*', '', (string) $tvakey);
1434  $tvacompl = " (".$outputlangs->transnoentities("NonPercuRecuperable").")";
1435  }
1436 
1437  $totalvat = $outputlangs->transcountrynoentities("TotalLT1", $mysoc->country_code).(is_object($outputlangsbis) ? ' / '.$outputlangsbis->transcountrynoentities("TotalLT1", $mysoc->country_code) : '');
1438  $totalvat .= ' ';
1439  $totalvat .= vatrate(abs($tvakey), 1).$tvacompl;
1440  $pdf->MultiCell($col2x - $col1x, $tab2_hl, $totalvat, 0, 'L', 1);
1441 
1442  $total_localtax = ((isModEnabled("multicurrency") && isset($object->multicurrency_tx) && $object->multicurrency_tx != 1) ? price2num($tvaval * $object->multicurrency_tx, 'MT') : $tvaval);
1443 
1444  $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1445  $pdf->MultiCell($largcol2, $tab2_hl, price($total_localtax, 0, $outputlangs), 0, 'R', 1);
1446  }
1447  }
1448  }
1449  //}
1450  //Local tax 2 before VAT
1451  //if (!empty($conf->global->FACTURE_LOCAL_TAX2_OPTION) && $conf->global->FACTURE_LOCAL_TAX2_OPTION=='localtax2on')
1452  //{
1453  foreach ($this->localtax2 as $localtax_type => $localtax_rate) {
1454  if (in_array((string) $localtax_type, array('1', '3', '5'))) {
1455  continue;
1456  }
1457 
1458  foreach ($localtax_rate as $tvakey => $tvaval) {
1459  if ($tvakey != 0) { // On affiche pas taux 0
1460  //$this->atleastoneratenotnull++;
1461 
1462  $index++;
1463  $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1464 
1465  $tvacompl = '';
1466  if (preg_match('/\*/', (string) $tvakey)) {
1467  $tvakey = str_replace('*', '', (string) $tvakey);
1468  $tvacompl = " (".$outputlangs->transnoentities("NonPercuRecuperable").")";
1469  }
1470  $totalvat = $outputlangs->transcountrynoentities("TotalLT2", $mysoc->country_code).(is_object($outputlangsbis) ? ' / '.$outputlangsbis->transcountrynoentities("TotalLT2", $mysoc->country_code) : '');
1471  $totalvat .= ' ';
1472  $totalvat .= vatrate(abs($tvakey), 1).$tvacompl;
1473  $pdf->MultiCell($col2x - $col1x, $tab2_hl, $totalvat, 0, 'L', 1);
1474 
1475  $total_localtax = ((isModEnabled("multicurrency") && isset($object->multicurrency_tx) && $object->multicurrency_tx != 1) ? price2num($tvaval * $object->multicurrency_tx, 'MT') : $tvaval);
1476 
1477  $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1478  $pdf->MultiCell($largcol2, $tab2_hl, price($total_localtax, 0, $outputlangs), 0, 'R', 1);
1479  }
1480  }
1481  }
1482 
1483  //}
1484 
1485  // VAT
1486  foreach ($this->tva_array as $tvakey => $tvaval) {
1487  if ($tvakey != 0) { // On affiche pas taux 0
1488  $this->atleastoneratenotnull++;
1489 
1490  $index++;
1491  $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1492 
1493  $tvacompl = '';
1494  if (preg_match('/\*/', $tvakey)) {
1495  $tvakey = str_replace('*', '', $tvakey);
1496  $tvacompl = " (".$outputlangs->transnoentities("NonPercuRecuperable").")";
1497  }
1498  $totalvat = $outputlangs->transcountrynoentities("TotalVAT", $mysoc->country_code).(is_object($outputlangsbis) ? ' / '.$outputlangsbis->transcountrynoentities("TotalVAT", $mysoc->country_code) : '');
1499  $totalvat .= ' ';
1500  if (getDolGlobalString('PDF_VAT_LABEL_IS_CODE_OR_RATE') == 'rateonly') {
1501  $totalvat .= vatrate($tvaval['vatrate'], 1).$tvacompl;
1502  } elseif (getDolGlobalString('PDF_VAT_LABEL_IS_CODE_OR_RATE') == 'codeonly') {
1503  $totalvat .= $tvaval['vatcode'].$tvacompl;
1504  } else {
1505  $totalvat .= vatrate($tvaval['vatrate'], 1).($tvaval['vatcode'] ? ' ('.$tvaval['vatcode'].')' : '').$tvacompl;
1506  }
1507  $pdf->MultiCell($col2x - $col1x, $tab2_hl, $totalvat, 0, 'L', 1);
1508 
1509  $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1510  $pdf->MultiCell($largcol2, $tab2_hl, price(price2num($tvaval['amount'], 'MT'), 0, $outputlangs), 0, 'R', 1);
1511  }
1512  }
1513 
1514  //Local tax 1 after VAT
1515  //if (!empty($conf->global->FACTURE_LOCAL_TAX1_OPTION) && $conf->global->FACTURE_LOCAL_TAX1_OPTION=='localtax1on')
1516  //{
1517  foreach ($this->localtax1 as $localtax_type => $localtax_rate) {
1518  if (in_array((string) $localtax_type, array('2', '4', '6'))) {
1519  continue;
1520  }
1521 
1522  foreach ($localtax_rate as $tvakey => $tvaval) {
1523  if ($tvakey != 0) { // On affiche pas taux 0
1524  //$this->atleastoneratenotnull++;
1525 
1526  $index++;
1527  $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1528 
1529  $tvacompl = '';
1530  if (preg_match('/\*/', (string) $tvakey)) {
1531  $tvakey = str_replace('*', '', (string) $tvakey);
1532  $tvacompl = " (".$outputlangs->transnoentities("NonPercuRecuperable").")";
1533  }
1534  $totalvat = $outputlangs->transcountrynoentities("TotalLT1", $mysoc->country_code).' ';
1535  $totalvat .= vatrate(abs($tvakey), 1).$tvacompl;
1536 
1537  $pdf->MultiCell($col2x - $col1x, $tab2_hl, $totalvat, 0, 'L', 1);
1538 
1539  $total_localtax = ((isModEnabled("multicurrency") && isset($object->multicurrency_tx) && $object->multicurrency_tx != 1) ? price2num($tvaval * $object->multicurrency_tx, 'MT') : $tvaval);
1540 
1541  $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1542  $pdf->MultiCell($largcol2, $tab2_hl, price($total_localtax, 0, $outputlangs), 0, 'R', 1);
1543  }
1544  }
1545  }
1546  //}
1547  //Local tax 2 after VAT
1548  //if (!empty($conf->global->FACTURE_LOCAL_TAX2_OPTION) && $conf->global->FACTURE_LOCAL_TAX2_OPTION=='localtax2on')
1549  //{
1550  foreach ($this->localtax2 as $localtax_type => $localtax_rate) {
1551  if (in_array((string) $localtax_type, array('2', '4', '6'))) {
1552  continue;
1553  }
1554 
1555  foreach ($localtax_rate as $tvakey => $tvaval) {
1556  //$this->atleastoneratenotnull++;
1557 
1558  $index++;
1559  $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1560 
1561  $tvacompl = '';
1562  if (preg_match('/\*/', (string) $tvakey)) {
1563  $tvakey = str_replace('*', '', (string) $tvakey);
1564  $tvacompl = " (".$outputlangs->transnoentities("NonPercuRecuperable").")";
1565  }
1566  $totalvat = $outputlangs->transcountrynoentities("TotalLT2", $mysoc->country_code).' ';
1567 
1568  $totalvat .= vatrate(abs($tvakey), 1).$tvacompl;
1569  $pdf->MultiCell($col2x - $col1x, $tab2_hl, $totalvat, 0, 'L', 1);
1570 
1571  $total_localtax = ((isModEnabled("multicurrency") && isset($object->multicurrency_tx) && $object->multicurrency_tx != 1) ? price2num($tvaval * $object->multicurrency_tx, 'MT') : $tvaval);
1572 
1573  $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1574  $pdf->MultiCell($largcol2, $tab2_hl, price($total_localtax, 0, $outputlangs), 0, 'R', 1);
1575  }
1576  }
1577  //}
1578 
1579  // Revenue stamp
1580  if (price2num($object->revenuestamp) != 0) {
1581  $index++;
1582  $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1583  $pdf->MultiCell($col2x - $col1x, $tab2_hl, $outputlangs->transnoentities("RevenueStamp"), $useborder, 'L', 1);
1584 
1585  $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1586  $pdf->MultiCell($largcol2, $tab2_hl, price($sign * $object->revenuestamp), $useborder, 'R', 1);
1587  }
1588 
1589  // Total TTC
1590  $index++;
1591  $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1592  $pdf->SetTextColor(0, 0, 60);
1593  $pdf->SetFillColor(224, 224, 224);
1594  $pdf->MultiCell($col2x - $col1x, $tab2_hl, $outputlangs->transnoentities("TotalTTC"), $useborder, 'L', 1);
1595 
1596  $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1597  $pdf->MultiCell($largcol2, $tab2_hl, price($sign * $total_ttc, 0, $outputlangs), $useborder, 'R', 1);
1598 
1599  // Retained warranty
1600  if ($object->displayRetainedWarranty()) {
1601  $pdf->SetTextColor(40, 40, 40);
1602  $pdf->SetFillColor(255, 255, 255);
1603 
1604  $retainedWarranty = $object->getRetainedWarrantyAmount();
1605  $billedWithRetainedWarranty = $object->total_ttc - $retainedWarranty;
1606 
1607  // Billed - retained warranty
1608  $index++;
1609  $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1610  $pdf->MultiCell($col2x - $col1x, $tab2_hl, $outputlangs->transnoentities("ToPayOn", dol_print_date($object->date_lim_reglement, 'day')), $useborder, 'L', 1);
1611 
1612  $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1613  $pdf->MultiCell($largcol2, $tab2_hl, price($billedWithRetainedWarranty), $useborder, 'R', 1);
1614 
1615  // retained warranty
1616  $index++;
1617  $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1618 
1619  $retainedWarrantyToPayOn = $outputlangs->transnoentities("RetainedWarranty").' ('.$object->retained_warranty.'%)';
1620  $retainedWarrantyToPayOn .= !empty($object->retained_warranty_date_limit) ? ' '.$outputlangs->transnoentities("toPayOn", dol_print_date($object->retained_warranty_date_limit, 'day')) : '';
1621 
1622  $pdf->MultiCell($col2x - $col1x, $tab2_hl, $retainedWarrantyToPayOn, $useborder, 'L', 1);
1623  $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1624  $pdf->MultiCell($largcol2, $tab2_hl, price($retainedWarranty), $useborder, 'R', 1);
1625  }
1626  }
1627  }
1628 
1629  $pdf->SetTextColor(0, 0, 0);
1630  $creditnoteamount = $object->getSumCreditNotesUsed((isModEnabled("multicurrency") && $object->multicurrency_tx != 1) ? 1 : 0); // Warning, this also include excess received
1631  $depositsamount = $object->getSumDepositsUsed((isModEnabled("multicurrency") && $object->multicurrency_tx != 1) ? 1 : 0);
1632  //print "x".$creditnoteamount."-".$depositsamount;exit;
1633  $resteapayer = price2num($total_ttc - $deja_regle - $creditnoteamount - $depositsamount, 'MT');
1634  if (!empty($object->paye)) {
1635  $resteapayer = 0;
1636  }
1637 
1638  if (($deja_regle > 0 || $creditnoteamount > 0 || $depositsamount > 0) && !getDolGlobalString('INVOICE_NO_PAYMENT_DETAILS')) {
1639  // Already paid + Deposits
1640  $index++;
1641  $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1642  $pdf->MultiCell($col2x - $col1x, $tab2_hl, $outputlangs->transnoentities("Paid"), 0, 'L', 0);
1643  $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1644  $pdf->MultiCell($largcol2, $tab2_hl, price($deja_regle + $depositsamount, 0, $outputlangs), 0, 'R', 0);
1645 
1646  // Credit note
1647  if ($creditnoteamount) {
1648  $labeltouse = ($outputlangs->transnoentities("CreditNotesOrExcessReceived") != "CreditNotesOrExcessReceived") ? $outputlangs->transnoentities("CreditNotesOrExcessReceived") : $outputlangs->transnoentities("CreditNotes");
1649  $index++;
1650  $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1651  $pdf->MultiCell($col2x - $col1x, $tab2_hl, $labeltouse, 0, 'L', 0);
1652  $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1653  $pdf->MultiCell($largcol2, $tab2_hl, price($creditnoteamount, 0, $outputlangs), 0, 'R', 0);
1654  }
1655 
1656  // Escompte
1657  if ($object->close_code == Facture::CLOSECODE_DISCOUNTVAT) {
1658  $index++;
1659  $pdf->SetFillColor(255, 255, 255);
1660 
1661  $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1662  $pdf->MultiCell($col2x - $col1x, $tab2_hl, $outputlangs->transnoentities("EscompteOfferedShort"), $useborder, 'L', 1);
1663  $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1664  $pdf->MultiCell($largcol2, $tab2_hl, price($object->total_ttc - $deja_regle - $creditnoteamount - $depositsamount, 0, $outputlangs), $useborder, 'R', 1);
1665 
1666  $resteapayer = 0;
1667  }
1668 
1669  $index++;
1670  $pdf->SetTextColor(0, 0, 60);
1671  $pdf->SetFillColor(224, 224, 224);
1672  $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1673  $pdf->MultiCell($col2x - $col1x, $tab2_hl, $outputlangs->transnoentities("RemainderToPay"), $useborder, 'L', 1);
1674  $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1675  $pdf->MultiCell($largcol2, $tab2_hl, price($resteapayer, 0, $outputlangs), $useborder, 'R', 1);
1676 
1677  $pdf->SetFont('', '', $default_font_size - 1);
1678  $pdf->SetTextColor(0, 0, 0);
1679  }
1680 
1681  $index++;
1682 
1683  if (getDolGlobalString("BILL_TEXT_TOTAL_FOOTER")) {
1684  $index++;
1685  $index++;
1686  $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1687  $pdf->MultiCell($col2x - $col1x, $tab2_hl, $conf->global->BILL_TEXT_TOTAL_FOOTER, 0, 'L', 0);
1688  }
1689 
1690  return ($tab2_top + ($tab2_hl * $index));
1691  }
1692 
1693  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
1707  protected function _tableau(&$pdf, $tab_top, $tab_height, $nexY, $outputlangs, $hidetop = 0, $hidebottom = 0, $currency = '')
1708  {
1709  global $conf;
1710 
1711  // Force to disable hidetop and hidebottom
1712  $hidebottom = 0;
1713  if ($hidetop) {
1714  $hidetop = -1;
1715  }
1716 
1717  $currency = !empty($currency) ? $currency : $conf->currency;
1718  $default_font_size = pdf_getPDFFontSize($outputlangs);
1719 
1720  // Amount in (at tab_top - 1)
1721  $pdf->SetTextColor(0, 0, 0);
1722  $pdf->SetFont('', '', $default_font_size - 2);
1723 
1724  if (empty($hidetop)) {
1725  // Show category of operations
1726  if (getDolGlobalInt('INVOICE_CATEGORY_OF_OPERATION') == 1 && $this->categoryOfOperation >= 0) {
1727  $categoryOfOperations = $outputlangs->transnoentities("MentionCategoryOfOperations") . ' : ' . $outputlangs->transnoentities("MentionCategoryOfOperations" . $this->categoryOfOperation);
1728  $pdf->SetXY($this->marge_gauche, $tab_top - 4);
1729  $pdf->MultiCell(($pdf->GetStringWidth($categoryOfOperations)) + 4, 2, $categoryOfOperations);
1730  }
1731 
1732  $titre = $outputlangs->transnoentities("AmountInCurrency", $outputlangs->transnoentitiesnoconv("Currency".$currency));
1733  $pdf->SetXY($this->page_largeur - $this->marge_droite - ($pdf->GetStringWidth($titre) + 3), $tab_top - 4);
1734  $pdf->MultiCell(($pdf->GetStringWidth($titre) + 3), 2, $titre);
1735 
1736  //$conf->global->MAIN_PDF_TITLE_BACKGROUND_COLOR='230,230,230';
1737  if (getDolGlobalString('MAIN_PDF_TITLE_BACKGROUND_COLOR')) {
1738  $pdf->Rect($this->marge_gauche, $tab_top, $this->page_largeur - $this->marge_droite - $this->marge_gauche, 5, 'F', null, explode(',', getDolGlobalString('MAIN_PDF_TITLE_BACKGROUND_COLOR')));
1739  }
1740  }
1741 
1742  $pdf->SetDrawColor(128, 128, 128);
1743  $pdf->SetFont('', '', $default_font_size - 1);
1744 
1745  // Output Rect
1746  $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
1747 
1748  if (empty($hidetop)) {
1749  $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
1750 
1751  $pdf->SetXY($this->posxdesc - 1, $tab_top + 1);
1752  $pdf->MultiCell(108, 2, $outputlangs->transnoentities("Designation"), '', 'L');
1753  }
1754 
1755  if (getDolGlobalString('MAIN_GENERATE_INVOICES_WITH_PICTURE')) {
1756  $pdf->line($this->posxpicture - 1, $tab_top, $this->posxpicture - 1, $tab_top + $tab_height);
1757  if (empty($hidetop)) {
1758  //$pdf->SetXY($this->posxpicture-1, $tab_top+1);
1759  //$pdf->MultiCell($this->posxtva-$this->posxpicture-1,2, $outputlangs->transnoentities("Photo"),'','C');
1760  }
1761  }
1762 
1763  if (!getDolGlobalString('MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT') && !getDolGlobalString('MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT_COLUMN')) {
1764  $pdf->line($this->posxtva - 1, $tab_top, $this->posxtva - 1, $tab_top + $tab_height);
1765  if (empty($hidetop)) {
1766  $pdf->SetXY($this->posxtva - 3, $tab_top + 1);
1767  $pdf->MultiCell($this->posxup - $this->posxtva + 3, 2, $outputlangs->transnoentities("VAT"), '', 'C');
1768  }
1769  }
1770 
1771  $pdf->line($this->posxup - 1, $tab_top, $this->posxup - 1, $tab_top + $tab_height);
1772  if (empty($hidetop)) {
1773  $pdf->SetXY($this->posxup - 1, $tab_top + 1);
1774  $pdf->MultiCell($this->posxqty - $this->posxup - 1, 2, $outputlangs->transnoentities("PriceUHT"), '', 'C');
1775  }
1776 
1777  $pdf->line($this->posxqty - 1, $tab_top, $this->posxqty - 1, $tab_top + $tab_height);
1778  if (empty($hidetop)) {
1779  $pdf->SetXY($this->posxqty - 1, $tab_top + 1);
1780  $pdf->MultiCell($this->posxunit - $this->posxqty - 1, 2, $outputlangs->transnoentities("Qty"), '', 'C');
1781  }
1782 
1783  if (getDolGlobalInt('PRODUCT_USE_UNITS')) {
1784  $pdf->line($this->posxunit - 1, $tab_top, $this->posxunit - 1, $tab_top + $tab_height);
1785  if (empty($hidetop)) {
1786  $pdf->SetXY($this->posxunit - 1, $tab_top + 1);
1787  $pdf->MultiCell($this->posxdiscount - $this->posxunit - 1, 2, $outputlangs->transnoentities("Unit"), '', 'C');
1788  }
1789  }
1790 
1791  if ($this->atleastonediscount) {
1792  $pdf->line($this->posxdiscount - 1, $tab_top, $this->posxdiscount - 1, $tab_top + $tab_height);
1793  if (empty($hidetop)) {
1794  $pdf->SetXY($this->posxdiscount - 1, $tab_top + 1);
1795  $pdf->MultiCell($this->posxprogress - $this->posxdiscount + 1, 2, $outputlangs->transnoentities("ReductionShort"), '', 'C');
1796  }
1797  }
1798 
1799  if ($this->situationinvoice) {
1800  $pdf->line($this->posxprogress - 1, $tab_top, $this->posxprogress - 1, $tab_top + $tab_height);
1801  if (empty($hidetop)) {
1802  $pdf->SetXY($this->posxprogress, $tab_top + 1);
1803  $pdf->MultiCell($this->postotalht - $this->posxprogress, 2, $outputlangs->transnoentities("ProgressShort"), '', 'C');
1804  }
1805  }
1806 
1807  $pdf->line($this->postotalht, $tab_top, $this->postotalht, $tab_top + $tab_height);
1808  if (empty($hidetop)) {
1809  $pdf->SetXY($this->postotalht - 1, $tab_top + 1);
1810  $pdf->MultiCell(30, 2, $outputlangs->transnoentities("TotalHTShort"), '', 'C');
1811  }
1812  }
1813 
1814  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
1825  protected function _pagehead(&$pdf, $object, $showaddress, $outputlangs, $outputlangsbis = null)
1826  {
1827  // phpcs:enable
1828  global $conf, $langs;
1829 
1830  $ltrdirection = 'L';
1831  if ($outputlangs->trans("DIRECTION") == 'rtl') {
1832  $ltrdirection = 'R';
1833  }
1834 
1835  // Load traductions files required by page
1836  $outputlangs->loadLangs(array("main", "bills", "propal", "companies"));
1837 
1838  $default_font_size = pdf_getPDFFontSize($outputlangs);
1839 
1840  pdf_pagehead($pdf, $outputlangs, $this->page_hauteur);
1841 
1842  $pdf->SetTextColor(0, 0, 60);
1843  $pdf->SetFont('', 'B', $default_font_size + 3);
1844 
1845  $w = 110;
1846 
1847  $posy = $this->marge_haute;
1848  $posx = $this->page_largeur - $this->marge_droite - $w;
1849 
1850  $pdf->SetXY($this->marge_gauche, $posy);
1851 
1852  // Logo
1853  if (!getDolGlobalInt('PDF_DISABLE_MYCOMPANY_LOGO')) {
1854  if ($this->emetteur->logo) {
1855  $logodir = $conf->mycompany->dir_output;
1856  if (!empty($conf->mycompany->multidir_output[$object->entity])) {
1857  $logodir = $conf->mycompany->multidir_output[$object->entity];
1858  }
1859  if (!getDolGlobalInt('MAIN_PDF_USE_LARGE_LOGO')) {
1860  $logo = $logodir.'/logos/thumbs/'.$this->emetteur->logo_small;
1861  } else {
1862  $logo = $logodir.'/logos/'.$this->emetteur->logo;
1863  }
1864  if (is_readable($logo)) {
1865  $height = pdf_getHeightForLogo($logo);
1866  $pdf->Image($logo, $this->marge_gauche, $posy, 0, $height); // width=0 (auto)
1867  } else {
1868  $pdf->SetTextColor(200, 0, 0);
1869  $pdf->SetFont('', 'B', $default_font_size - 2);
1870  $pdf->MultiCell($w, 3, $outputlangs->transnoentities("ErrorLogoFileNotFound", $logo), 0, 'L');
1871  $pdf->MultiCell($w, 3, $outputlangs->transnoentities("ErrorGoToGlobalSetup"), 0, 'L');
1872  }
1873  } else {
1874  $text = $this->emetteur->name;
1875  $pdf->MultiCell($w, 4, $outputlangs->convToOutputCharset($text), 0, $ltrdirection);
1876  }
1877  }
1878 
1879  $pdf->SetFont('', 'B', $default_font_size + 3);
1880  $pdf->SetXY($posx, $posy);
1881  $pdf->SetTextColor(0, 0, 60);
1882  $title = $outputlangs->transnoentities("PdfInvoiceTitle");
1883  if ($object->type == 1) {
1884  $title = $outputlangs->transnoentities("InvoiceReplacement");
1885  }
1886  if ($object->type == 2) {
1887  $title = $outputlangs->transnoentities("InvoiceAvoir");
1888  }
1889  if ($object->type == 3) {
1890  $title = $outputlangs->transnoentities("InvoiceDeposit");
1891  }
1892  if ($object->type == 4) {
1893  $title = $outputlangs->transnoentities("InvoiceProForma");
1894  }
1895  if ($this->situationinvoice) {
1896  $langs->loadLangs(array("other"));
1897  $title = $outputlangs->transnoentities("PDFInvoiceSituation") . " " . $outputlangs->transnoentities("NumberingShort") . $object->situation_counter . " -";
1898  }
1899  if (getDolGlobalString('PDF_USE_ALSO_LANGUAGE_CODE') && is_object($outputlangsbis)) {
1900  $title .= ' - ';
1901  if ($object->type == 0) {
1902  if ($this->situationinvoice) {
1903  $title .= $outputlangsbis->transnoentities("PDFInvoiceSituation");
1904  }
1905  $title .= $outputlangsbis->transnoentities("PdfInvoiceTitle");
1906  } elseif ($object->type == 1) {
1907  $title .= $outputlangsbis->transnoentities("InvoiceReplacement");
1908  } elseif ($object->type == 2) {
1909  $title .= $outputlangsbis->transnoentities("InvoiceAvoir");
1910  } elseif ($object->type == 3) {
1911  $title .= $outputlangsbis->transnoentities("InvoiceDeposit");
1912  } elseif ($object->type == 4) {
1913  $title .= $outputlangsbis->transnoentities("InvoiceProForma");
1914  }
1915  }
1916  $title .= ' '.$outputlangs->convToOutputCharset($object->ref);
1917  if ($object->statut == $object::STATUS_DRAFT) {
1918  $pdf->SetTextColor(128, 0, 0);
1919  $title .= ' - '.$outputlangs->transnoentities("NotValidated");
1920  }
1921 
1922  $pdf->MultiCell($w, 3, $title, '', 'R');
1923 
1924  $pdf->SetFont('', 'B', $default_font_size);
1925 
1926  /*
1927  $posy += 5;
1928  $pdf->SetXY($posx, $posy);
1929  $pdf->SetTextColor(0, 0, 60);
1930  $textref = $outputlangs->transnoentities("Ref")." : ".$outputlangs->convToOutputCharset($object->ref);
1931  if ($object->statut == $object::STATUS_DRAFT) {
1932  $pdf->SetTextColor(128, 0, 0);
1933  $textref .= ' - '.$outputlangs->transnoentities("NotValidated");
1934  }
1935  $pdf->MultiCell($w, 4, $textref, '', 'R');*/
1936 
1937  $posy += 3;
1938  $pdf->SetFont('', '', $default_font_size - 2);
1939 
1940  if ($object->ref_customer) {
1941  $posy += 4;
1942  $pdf->SetXY($posx, $posy);
1943  $pdf->SetTextColor(0, 0, 60);
1944  $pdf->MultiCell($w, 3, $outputlangs->transnoentities("RefCustomer")." : ".$outputlangs->convToOutputCharset($object->ref_customer), '', 'R');
1945  }
1946 
1947  if (getDolGlobalString('PDF_SHOW_PROJECT_TITLE')) {
1948  $object->fetch_projet();
1949  if (!empty($object->project->ref)) {
1950  $posy += 3;
1951  $pdf->SetXY($posx, $posy);
1952  $pdf->SetTextColor(0, 0, 60);
1953  $pdf->MultiCell($w, 3, $outputlangs->transnoentities("Project")." : ".(empty($object->project->title) ? '' : $object->project->title), '', 'R');
1954  }
1955  }
1956 
1957  if (getDolGlobalString('PDF_SHOW_PROJECT')) {
1958  $object->fetch_projet();
1959  if (!empty($object->project->ref)) {
1960  $outputlangs->load("projects");
1961  $posy += 3;
1962  $pdf->SetXY($posx, $posy);
1963  $pdf->SetTextColor(0, 0, 60);
1964  $pdf->MultiCell($w, 3, $outputlangs->transnoentities("RefProject")." : ".(empty($object->project->ref) ? '' : $object->project->ref), '', 'R');
1965  }
1966  }
1967 
1968  $objectidnext = $object->getIdReplacingInvoice('validated');
1969  if ($object->type == 0 && $objectidnext) {
1970  $objectreplacing = new Facture($this->db);
1971  $objectreplacing->fetch($objectidnext);
1972 
1973  $posy += 3;
1974  $pdf->SetXY($posx, $posy);
1975  $pdf->SetTextColor(0, 0, 60);
1976  $pdf->MultiCell($w, 3, $outputlangs->transnoentities("ReplacementByInvoice").' : '.$outputlangs->convToOutputCharset($objectreplacing->ref), '', 'R');
1977  }
1978  if ($object->type == 1) {
1979  $objectreplaced = new Facture($this->db);
1980  $objectreplaced->fetch($object->fk_facture_source);
1981 
1982  $posy += 4;
1983  $pdf->SetXY($posx, $posy);
1984  $pdf->SetTextColor(0, 0, 60);
1985  $pdf->MultiCell($w, 3, $outputlangs->transnoentities("ReplacementInvoice").' : '.$outputlangs->convToOutputCharset($objectreplaced->ref), '', 'R');
1986  }
1987  if ($object->type == 2 && !empty($object->fk_facture_source)) {
1988  $objectreplaced = new Facture($this->db);
1989  $objectreplaced->fetch($object->fk_facture_source);
1990 
1991  $posy += 3;
1992  $pdf->SetXY($posx, $posy);
1993  $pdf->SetTextColor(0, 0, 60);
1994  $pdf->MultiCell($w, 3, $outputlangs->transnoentities("CorrectionInvoice").' : '.$outputlangs->convToOutputCharset($objectreplaced->ref), '', 'R');
1995  }
1996 
1997  $posy += 4;
1998  $pdf->SetXY($posx, $posy);
1999  $pdf->SetTextColor(0, 0, 60);
2000  $title = $outputlangs->transnoentities("DateInvoice");
2001  if (getDolGlobalString('PDF_USE_ALSO_LANGUAGE_CODE') && is_object($outputlangsbis)) {
2002  $title .= ' - '.$outputlangsbis->transnoentities("DateInvoice");
2003  }
2004  $pdf->MultiCell($w, 3, $title." : ".dol_print_date($object->date, "day", false, $outputlangs, true), '', 'R');
2005 
2006  if (getDolGlobalString('INVOICE_POINTOFTAX_DATE')) {
2007  $posy += 4;
2008  $pdf->SetXY($posx, $posy);
2009  $pdf->SetTextColor(0, 0, 60);
2010  $pdf->MultiCell($w, 3, $outputlangs->transnoentities("DatePointOfTax")." : ".dol_print_date($object->date_pointoftax, "day", false, $outputlangs), '', 'R');
2011  }
2012 
2013  if ($object->type != 2) {
2014  $posy += 3;
2015  $pdf->SetXY($posx, $posy);
2016  $pdf->SetTextColor(0, 0, 60);
2017  $title = $outputlangs->transnoentities("DateDue");
2018  if (getDolGlobalString('PDF_USE_ALSO_LANGUAGE_CODE') && is_object($outputlangsbis)) {
2019  $title .= ' - '.$outputlangsbis->transnoentities("DateDue");
2020  }
2021  $pdf->MultiCell($w, 3, $title." : ".dol_print_date($object->date_lim_reglement, "day", false, $outputlangs, true), '', 'R');
2022  }
2023 
2024  if (!getDolGlobalString('MAIN_PDF_HIDE_CUSTOMER_CODE') && $object->thirdparty->code_client) {
2025  $posy += 3;
2026  $pdf->SetXY($posx, $posy);
2027  $pdf->SetTextColor(0, 0, 60);
2028  $pdf->MultiCell($w, 3, $outputlangs->transnoentities("CustomerCode")." : ".$outputlangs->transnoentities($object->thirdparty->code_client), '', 'R');
2029  }
2030 
2031  // Get contact
2032  if (getDolGlobalString('DOC_SHOW_FIRST_SALES_REP')) {
2033  $arrayidcontact = $object->getIdContact('internal', 'SALESREPFOLL');
2034  if (count($arrayidcontact) > 0) {
2035  $usertmp = new User($this->db);
2036  $usertmp->fetch($arrayidcontact[0]);
2037  $posy += 4;
2038  $pdf->SetXY($posx, $posy);
2039  $pdf->SetTextColor(0, 0, 60);
2040  $pdf->MultiCell($w, 3, $langs->transnoentities("SalesRepresentative")." : ".$usertmp->getFullName($langs), '', 'R');
2041  }
2042  }
2043 
2044  $posy += 1;
2045 
2046  $top_shift = 0;
2047  // Show list of linked objects
2048  $current_y = $pdf->getY();
2049  $posy = pdf_writeLinkedObjects($pdf, $object, $outputlangs, $posx, $posy, $w, 3, 'R', $default_font_size);
2050  if ($current_y < $pdf->getY()) {
2051  $top_shift = $pdf->getY() - $current_y;
2052  }
2053 
2054  if ($showaddress) {
2055  // Sender properties
2056  $carac_emetteur = '';
2057  // Add internal contact of object if defined
2058  $arrayidcontact = $object->getIdContact('internal', 'BILLING');
2059  if (count($arrayidcontact) > 0) {
2060  $object->fetch_user($arrayidcontact[0]);
2061  $labelbeforecontactname = ($outputlangs->transnoentities("FromContactName") != 'FromContactName' ? $outputlangs->transnoentities("FromContactName") : $outputlangs->transnoentities("Name"));
2062  $carac_emetteur .= ($carac_emetteur ? "\n" : '').$labelbeforecontactname." ".$outputlangs->convToOutputCharset($object->user->getFullName($outputlangs));
2063  $carac_emetteur .= "\n";
2064  }
2065 
2066  $carac_emetteur .= pdf_build_address($outputlangs, $this->emetteur, $object->thirdparty, '', 0, 'source', $object);
2067 
2068  // Show sender
2069  $posy = getDolGlobalString('MAIN_PDF_USE_ISO_LOCATION') ? 40 : 42;
2070  $posy += $top_shift;
2071  $posx = $this->marge_gauche;
2072  if (getDolGlobalString('MAIN_INVERT_SENDER_RECIPIENT')) {
2073  $posx = $this->page_largeur - $this->marge_droite - 80;
2074  }
2075 
2076  $hautcadre = getDolGlobalString('MAIN_PDF_USE_ISO_LOCATION') ? 38 : 40;
2077  $widthrecbox = getDolGlobalString('MAIN_PDF_USE_ISO_LOCATION') ? 92 : 82;
2078 
2079 
2080  // Show sender frame
2081  if (!getDolGlobalString('MAIN_PDF_NO_SENDER_FRAME')) {
2082  $pdf->SetTextColor(0, 0, 0);
2083  $pdf->SetFont('', '', $default_font_size - 2);
2084  $pdf->SetXY($posx, $posy - 5);
2085  $pdf->MultiCell($widthrecbox, 5, $outputlangs->transnoentities("BillFrom"), 0, $ltrdirection);
2086  $pdf->SetXY($posx, $posy);
2087  $pdf->SetFillColor(230, 230, 230);
2088  $pdf->MultiCell($widthrecbox, $hautcadre, "", 0, 'R', 1);
2089  $pdf->SetTextColor(0, 0, 60);
2090  }
2091 
2092  // Show sender name
2093  if (!getDolGlobalString('MAIN_PDF_HIDE_SENDER_NAME')) {
2094  $pdf->SetXY($posx + 2, $posy + 3);
2095  $pdf->SetFont('', 'B', $default_font_size);
2096  $pdf->MultiCell($widthrecbox - 2, 4, $outputlangs->convToOutputCharset($this->emetteur->name), 0, $ltrdirection);
2097  $posy = $pdf->getY();
2098  }
2099 
2100  // Show sender information
2101  $pdf->SetXY($posx + 2, $posy);
2102  $pdf->SetFont('', '', $default_font_size - 1);
2103  $pdf->MultiCell($widthrecbox - 2, 4, $carac_emetteur, 0, $ltrdirection);
2104 
2105 
2106  // If BILLING contact defined on invoice, we use it
2107  $usecontact = false;
2108  $arrayidcontact = $object->getIdContact('external', 'BILLING');
2109  if (count($arrayidcontact) > 0) {
2110  $usecontact = true;
2111  $result = $object->fetch_contact($arrayidcontact[0]);
2112  }
2113 
2114  // Recipient name
2115  if ($usecontact && ($object->contact->socid != $object->thirdparty->id && (!isset($conf->global->MAIN_USE_COMPANY_NAME_OF_CONTACT) || getDolGlobalString('MAIN_USE_COMPANY_NAME_OF_CONTACT')))) {
2116  $thirdparty = $object->contact;
2117  } else {
2118  $thirdparty = $object->thirdparty;
2119  }
2120 
2121  $carac_client_name = pdfBuildThirdpartyName($thirdparty, $outputlangs);
2122 
2123  $mode = 'target';
2124  $carac_client = pdf_build_address($outputlangs, $this->emetteur, $object->thirdparty, ($usecontact ? $object->contact : ''), $usecontact, $mode, $object);
2125 
2126  // Show recipient
2127  $widthrecbox = getDolGlobalString('MAIN_PDF_USE_ISO_LOCATION') ? 92 : 100;
2128  if ($this->page_largeur < 210) {
2129  $widthrecbox = 84; // To work with US executive format
2130  }
2131  $posy = getDolGlobalString('MAIN_PDF_USE_ISO_LOCATION') ? 40 : 42;
2132  $posy += $top_shift;
2133  $posx = $this->page_largeur - $this->marge_droite - $widthrecbox;
2134  if (getDolGlobalString('MAIN_INVERT_SENDER_RECIPIENT')) {
2135  $posx = $this->marge_gauche;
2136  }
2137 
2138  // Show recipient frame
2139  if (!getDolGlobalString('MAIN_PDF_NO_RECIPENT_FRAME')) {
2140  $pdf->SetTextColor(0, 0, 0);
2141  $pdf->SetFont('', '', $default_font_size - 2);
2142  $pdf->SetXY($posx + 2, $posy - 5);
2143  $pdf->MultiCell($widthrecbox - 2, 5, $outputlangs->transnoentities("BillTo"), 0, $ltrdirection);
2144  $pdf->Rect($posx, $posy, $widthrecbox, $hautcadre);
2145  }
2146 
2147  // Show recipient name
2148  $pdf->SetXY($posx + 2, $posy + 3);
2149  $pdf->SetFont('', 'B', $default_font_size);
2150  // @phan-suppress-next-line PhanPluginSuspiciousParamOrder
2151  $pdf->MultiCell($widthrecbox - 2, 2, $carac_client_name, 0, $ltrdirection);
2152 
2153  $posy = $pdf->getY();
2154 
2155  // Show recipient information
2156  $pdf->SetFont('', '', $default_font_size - 1);
2157  $pdf->SetXY($posx + 2, $posy);
2158  // @phan-suppress-next-line PhanPluginSuspiciousParamOrder
2159  $pdf->MultiCell($widthrecbox - 2, 4, $carac_client, 0, $ltrdirection);
2160 
2161  // Show shipping address
2162  if (getDolGlobalInt('INVOICE_SHOW_SHIPPING_ADDRESS')) {
2163  $idaddressshipping = $object->getIdContact('external', 'SHIPPING');
2164 
2165  if (!empty($idaddressshipping)) {
2166  $contactshipping = $object->fetch_Contact($idaddressshipping[0]);
2167  $companystatic = new Societe($this->db);
2168  $companystatic->fetch($object->contact->fk_soc);
2169  $carac_client_name_shipping = pdfBuildThirdpartyName($object->contact, $outputlangs);
2170  $carac_client_shipping = pdf_build_address($outputlangs, $this->emetteur, $companystatic, $object->contact, $usecontact, 'target', $object);
2171  } else {
2172  $carac_client_name_shipping = pdfBuildThirdpartyName($object->thirdparty, $outputlangs);
2173  $carac_client_shipping = pdf_build_address($outputlangs, $this->emetteur, $object->thirdparty, '', 0, 'target', $object);
2174  }
2175  if (!empty($carac_client_shipping)) {
2176  $posy += $hautcadre;
2177 
2178  // Show shipping frame
2179  $pdf->SetXY($posx + 2, $posy - 5);
2180  $pdf->SetFont('', '', $default_font_size - 2);
2181  $pdf->MultiCell($widthrecbox, '', $outputlangs->transnoentities('ShippingTo'), 0, 'L', 0);
2182  $pdf->Rect($posx, $posy, $widthrecbox, $hautcadre);
2183 
2184  // Show shipping name
2185  $pdf->SetXY($posx + 2, $posy + 3);
2186  $pdf->SetFont('', 'B', $default_font_size);
2187  $pdf->MultiCell($widthrecbox - 2, 2, $carac_client_name_shipping, '', 'L');
2188 
2189  $posy = $pdf->getY();
2190 
2191  // Show shipping information
2192  $pdf->SetXY($posx + 2, $posy);
2193  $pdf->SetFont('', '', $default_font_size - 1);
2194  $pdf->MultiCell($widthrecbox - 2, 2, $carac_client_shipping, '', 'L');
2195  $top_shift += $hautcadre;
2196  }
2197  }
2198  }
2199 
2200  $pdf->SetTextColor(0, 0, 0);
2201 
2202  return $top_shift;
2203  }
2204 
2205  // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
2216  protected function _pagefoot(&$pdf, $object, $outputlangs, $hidefreetext = 0, $heightforqrinvoice = 0)
2217  {
2218  $showdetails = getDolGlobalInt('MAIN_GENERATE_DOCUMENTS_SHOW_FOOT_DETAILS', 0);
2219 
2220  return pdf_pagefoot($pdf, $outputlangs, 'INVOICE_FREE_TEXT', $this->emetteur, $heightforqrinvoice + $this->marge_basse, $this->marge_gauche, $this->page_hauteur, $object, $showdetails, $hidefreetext, $this->page_largeur, $this->watermark);
2221  }
2222 }
if($user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition: card.php:58
Class to manage bank accounts.
printRect($pdf, $x, $y, $l, $h, $hidetop=0, $hidebottom=0)
Rect pdf.
Class to manage bank accounts description of third parties.
Class to manage invoices.
const STATUS_DRAFT
Draft status.
Class to manage hooks.
Parent class of invoice document generators.
addBottomQRInvoice(TCPDF $pdf, Facture $object, Translate $langs)
Add SwissQR invoice at bottom of page 1.
getHeightForQRInvoice(int $pagenbr, Facture $object, Translate $langs)
Get the height for bottom-page QR invoice in mm, depending on the page number.
Class to manage products or services.
const TYPE_PRODUCT
Regular product.
const TYPE_SERVICE
Service.
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage translations.
Class to manage Dolibarr users.
Definition: user.class.php:50
Class to generate the customer invoice PDF with template Crabe.
__construct($db)
Constructor.
_pagehead(&$pdf, $object, $showaddress, $outputlangs, $outputlangsbis=null)
Show top header of page.
_tableau(&$pdf, $tab_top, $tab_height, $nexY, $outputlangs, $hidetop=0, $hidebottom=0, $currency='')
Show table for lines.
_tableau_versements(&$pdf, $object, $posy, $outputlangs, $heightforfooter=0)
Show payments table.
_tableau_info(&$pdf, $object, $posy, $outputlangs, $outputlangsbis)
Show miscellaneous information (payment mode, payment term, ...)
write_file($object, $outputlangs, $srctemplatepath='', $hidedetails=0, $hidedesc=0, $hideref=0)
Function to build pdf onto disk.
_pagefoot(&$pdf, $object, $outputlangs, $hidefreetext=0, $heightforqrinvoice=0)
Show footer of page.
_tableau_versements_header($pdf, $object, $outputlangs, $default_font_size, $tab3_posx, $tab3_top, $tab3_width, $tab3_height)
Function _tableau_versements_header.
_tableau_tot(&$pdf, $object, $deja_regle, $posy, $outputlangs, $outputlangsbis)
Show total to pay.
getCountry($searchkey, $withcode='', $dbtouse=null, $outputlangs=null, $entconv=1, $searchlabel='')
Return country label, code or id from an id, code or label.
if(isModEnabled('invoice') && $user->hasRight('facture', 'lire')) if((isModEnabled('fournisseur') &&!getDolGlobalString('MAIN_USE_NEW_SUPPLIERMOD') && $user->hasRight("fournisseur", "facture", "lire"))||(isModEnabled('supplier_invoice') && $user->hasRight("supplier_invoice", "lire"))) if(isModEnabled('don') && $user->hasRight('don', 'lire')) if(isModEnabled('tax') && $user->hasRight('tax', 'charges', 'lire')) if(isModEnabled('invoice') &&isModEnabled('order') && $user->hasRight("commande", "lire") &&!getDolGlobalString('WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER')) $sql
Social contributions to pay.
Definition: index.php:745
print *****$script_file(".$version.") pid cd cd cd description as description
Only used if Module[ID]Desc translation string is not found.
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...
vatrate($rate, $addpercent=false, $info_bits=0, $usestarfornpr=0, $html=0)
Return a string with VAT rate label formatted for view output Used into pdf and HTML pages.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
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.
dolChmod($filepath, $newmask='')
Change mod of a file.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
getLocalTaxesFromRate($vatrate, $local, $buyer, $seller, $firstparamisid=0)
Get type and rate of localtaxes for a particular vat rate/country of a thirdparty.
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_concatdesc($text1, $text2, $forxml=false, $invert=false)
Concat 2 descriptions with a new line between them (second operand after first one with appropriate n...
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...
make_substitutions($text, $substitutionarray, $outputlangs=null, $converttextinhtmlifnecessary=0)
Make substitution into a text string, replacing keys with vals from $substitutionarray (oldval=>newva...
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
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_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...
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
get_exdir($num, $level, $alpha, $withoutslash, $object, $modulepart='')
Return a path to have a the directory according to object where files are stored.
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)
if(!defined( 'CSRFCHECK_WITH_TOKEN'))
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:2620
pdf_writelinedesc(&$pdf, $object, $i, $outputlangs, $w, $h, $posx, $posy, $hideref=0, $hidedesc=0, $issupplierline=0, $align='J')
Output line description into PDF.
Definition: pdf.lib.php:1431
pdf_getlinetotalexcltax($object, $i, $outputlangs, $hidedetails=0)
Return line total excluding tax.
Definition: pdf.lib.php:2369
pdf_getPDFFontSize($outputlangs)
Return font size to use for PDF generation.
Definition: pdf.lib.php:290
pdf_getFormat(Translate $outputlangs=null, $mode='setup')
Return array with format properties of default PDF format.
Definition: pdf.lib.php:86
pdf_getHeightForLogo($logo, $url=false)
Return height to use for Logo onto PDF.
Definition: pdf.lib.php:315
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:1020
pdf_getlineupexcltax($object, $i, $outputlangs, $hidedetails=0)
Return line unit price excluding tax.
Definition: pdf.lib.php:1987
pdf_getlineprogress($object, $i, $outputlangs, $hidedetails=0, $hookmanager=null)
Return line percent.
Definition: pdf.lib.php:2318
pdf_getlinevatrate($object, $i, $outputlangs, $hidedetails=0)
Return line vat rate.
Definition: pdf.lib.php:1925
pdf_pagehead(&$pdf, $outputlangs, $page_height)
Show header of page for PDF generation.
Definition: pdf.lib.php:733
pdf_writeLinkedObjects(&$pdf, $object, $outputlangs, $posx, $posy, $w, $h, $align, $default_font_size)
Show linked objects for PDF generation.
Definition: pdf.lib.php:1394
pdf_bank(&$pdf, $outputlangs, $curx, $cury, $account, $onlynumber=0, $default_font_size=10)
Show bank information for PDF generation.
Definition: pdf.lib.php:843
pdf_getPDFFont($outputlangs)
Return font name to use for PDF generation.
Definition: pdf.lib.php:267
pdf_build_address($outputlangs, $sourcecompany, $targetcompany='', $targetcontact='', $usecontact=0, $mode='source', $object=null)
Return a string with full address formatted for output on PDF documents.
Definition: pdf.lib.php:436
pdf_getlineunit($object, $i, $outputlangs, $hidedetails=0)
Return line unit.
Definition: pdf.lib.php:2232
pdf_getlineremisepercent($object, $i, $outputlangs, $hidedetails=0)
Return line remise percent.
Definition: pdf.lib.php:2275
pdf_getlineqty($object, $i, $outputlangs, $hidedetails=0)
Return line quantity.
Definition: pdf.lib.php:2072
pdf_getSubstitutionArray($outputlangs, $exclude=null, $object=null, $onlykey=0, $include=null)
Return array of possible substitutions for PDF content (without external module substitutions).
Definition: pdf.lib.php:769
pdf_getInstance($format='', $metric='mm', $pagetype='P')
Return a PDF instance object.
Definition: pdf.lib.php:128
pdfBuildThirdpartyName($thirdparty, Translate $outputlangs, $includealias=0)
Returns the name of the thirdparty.
Definition: pdf.lib.php:388
if(preg_match('/crypted:/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
Definition: repair.php:123
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition: repair.php:126