dolibarr 20.0.2
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
37require_once DOL_DOCUMENT_ROOT.'/core/modules/facture/modules_facture.php';
38require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
39require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
40require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
41require_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
932 $sign = 1;
933 if ($object->type == 2 && getDolGlobalString('INVOICE_POSITIVE_CREDIT_NOTE')) {
934 $sign = -1;
935 }
936
937 $current_page = $pdf->getPage();
938 $tab3_posx = 120;
939 $tab3_top = $posy + 8;
940 $tab3_width = 80;
941 $tab3_height = 4;
942 if ($this->page_largeur < 210) { // To work with US executive format
943 $tab3_posx -= 15;
944 }
945
946 $default_font_size = pdf_getPDFFontSize($outputlangs);
947
948 $this->_tableau_versements_header($pdf, $object, $outputlangs, $default_font_size, $tab3_posx, $tab3_top, $tab3_width, $tab3_height);
949
950 $y = 0;
951
952 $pdf->SetFont('', '', $default_font_size - 4);
953
954
955 // Loop on each discount available (deposits and credit notes and excess of payment included)
956 $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,";
957 $sql .= " re.description, re.fk_facture_source,";
958 $sql .= " f.type, f.datef";
959 $sql .= " FROM ".MAIN_DB_PREFIX."societe_remise_except as re, ".MAIN_DB_PREFIX."facture as f";
960 $sql .= " WHERE re.fk_facture_source = f.rowid AND re.fk_facture = ".((int) $object->id);
961 $resql = $this->db->query($sql);
962 if ($resql) {
963 $num = $this->db->num_rows($resql);
964 $i = 0;
965 $invoice = new Facture($this->db);
966 while ($i < $num) {
967 $y += 3;
968 if ($tab3_top + $y >= ($this->page_hauteur - $heightforfooter)) {
969 $y = 0;
970 $current_page++;
971 $pdf->AddPage('', '', true);
972 /*if (!empty($tplidx)) {
973 $pdf->useTemplate($tplidx);
974 }*/
975 if (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD')) {
976 $top_shift = $this->_pagehead($pdf, $object, 0, $outputlangs);
977 $tab_top_newpage = (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD') ? 42 + $top_shift : 10);
978 }
979 $pdf->setPage($current_page);
980 $this->_tableau_versements_header($pdf, $object, $outputlangs, $default_font_size, $tab3_posx, $tab3_top + $y - 3, $tab3_width, $tab3_height);
981 }
982
983 $obj = $this->db->fetch_object($resql);
984
985 if ($obj->type == 2) {
986 $text = $outputlangs->transnoentities("CreditNote");
987 } elseif ($obj->type == 3) {
988 $text = $outputlangs->transnoentities("Deposit");
989 } elseif ($obj->type == 0) {
990 $text = $outputlangs->transnoentities("ExcessReceived");
991 } else {
992 $text = $outputlangs->transnoentities("UnknownType");
993 }
994
995 $invoice->fetch($obj->fk_facture_source);
996
997 $pdf->SetXY($tab3_posx, $tab3_top + $y);
998 $pdf->MultiCell(20, 3, dol_print_date($this->db->jdate($obj->datef), 'day', false, $outputlangs, true), 0, 'L', 0);
999 $pdf->SetXY($tab3_posx + 21, $tab3_top + $y);
1000 $pdf->MultiCell(20, 3, price((isModEnabled("multicurrency") && $object->multicurrency_tx != 1) ? $obj->multicurrency_amount_ttc : $obj->amount_ttc, 0, $outputlangs), 0, 'L', 0);
1001 $pdf->SetXY($tab3_posx + 40, $tab3_top + $y);
1002 $pdf->MultiCell(20, 3, $text, 0, 'L', 0);
1003 $pdf->SetXY($tab3_posx + 58, $tab3_top + $y);
1004 $pdf->MultiCell(20, 3, $invoice->ref, 0, 'L', 0);
1005
1006 $pdf->line($tab3_posx, $tab3_top + $y + 3, $tab3_posx + $tab3_width, $tab3_top + $y + 3);
1007
1008 $i++;
1009 }
1010 } else {
1011 $this->error = $this->db->lasterror();
1012 return -1;
1013 }
1014
1015 // Loop on each payment
1016 // TODO Call getListOfPaymentsgetListOfPayments instead of hard coded sql
1017 $sql = "SELECT p.datep as date, p.fk_paiement, p.num_paiement as num, pf.amount as amount, pf.multicurrency_amount,";
1018 $sql .= " cp.code";
1019 $sql .= " FROM ".MAIN_DB_PREFIX."paiement_facture as pf, ".MAIN_DB_PREFIX."paiement as p";
1020 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."c_paiement as cp ON p.fk_paiement = cp.id";
1021 $sql .= " WHERE pf.fk_paiement = p.rowid AND pf.fk_facture = ".((int) $object->id);
1022 //$sql.= " WHERE pf.fk_paiement = p.rowid AND pf.fk_facture = 1";
1023 $sql .= " ORDER BY p.datep";
1024
1025 $resql = $this->db->query($sql);
1026 if ($resql) {
1027 $num = $this->db->num_rows($resql);
1028 $i = 0;
1029 $y += 3;
1030 $maxY = $y;
1031 while ($i < $num) {
1032 if ($tab3_top + $y >= ($this->page_hauteur - $heightforfooter)) {
1033 $y = 0;
1034 $current_page++;
1035 $pdf->AddPage('', '', true);
1036 /*if (!empty($tplidx)) {
1037 $pdf->useTemplate($tplidx);
1038 }*/
1039 if (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD')) {
1040 $top_shift = $this->_pagehead($pdf, $object, 0, $outputlangs);
1041 $tab_top_newpage = (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD') ? 42 + $top_shift : 10);
1042 }
1043 $pdf->setPage($current_page);
1044 $this->_tableau_versements_header($pdf, $object, $outputlangs, $default_font_size, $tab3_posx, $tab3_top + $y - 3, $tab3_width, $tab3_height);
1045 }
1046
1047 $row = $this->db->fetch_object($resql);
1048
1049 $pdf->SetXY($tab3_posx, $tab3_top + $y);
1050 $pdf->MultiCell(20, 3, dol_print_date($this->db->jdate($row->date), 'day', false, $outputlangs, true), 0, 'L', 0);
1051 $pdf->SetXY($tab3_posx + 21, $tab3_top + $y);
1052 $pdf->MultiCell(20, 3, price($sign * ((isModEnabled("multicurrency") && $object->multicurrency_tx != 1) ? $row->multicurrency_amount : $row->amount), 0, $outputlangs), 0, 'L', 0);
1053 $pdf->SetXY($tab3_posx + 40, $tab3_top + $y);
1054 $oper = $outputlangs->transnoentitiesnoconv("PaymentTypeShort".$row->code);
1055
1056 $pdf->MultiCell(20, 3, $oper, 0, 'L', 0);
1057 $maxY = max($pdf->GetY() - $tab3_top - 3, $maxY);
1058 $pdf->SetXY($tab3_posx + 58, $tab3_top + $y);
1059 $pdf->MultiCell(30, 3, $row->num, 0, 'L', 0);
1060 $y = $maxY = max($pdf->GetY() - $tab3_top - 3, $maxY);
1061 $pdf->line($tab3_posx, $tab3_top + $y + 3, $tab3_posx + $tab3_width, $tab3_top + $y + 3);
1062 $y += 3;
1063 $i++;
1064 }
1065
1066 return $tab3_top + $y + 3;
1067 } else {
1068 $this->error = $this->db->lasterror();
1069 return -1;
1070 }
1071 }
1072
1073 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1074 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
1088 protected function _tableau_versements_header($pdf, $object, $outputlangs, $default_font_size, $tab3_posx, $tab3_top, $tab3_width, $tab3_height)
1089 {
1090 // phpcs:enable
1091 $title = $outputlangs->transnoentities("PaymentsAlreadyDone");
1092 if ($object->type == 2) {
1093 $title = $outputlangs->transnoentities("PaymentsBackAlreadyDone");
1094 }
1095
1096 $pdf->SetFont('', '', $default_font_size - 3);
1097 $pdf->SetXY($tab3_posx, $tab3_top - 4);
1098 $pdf->MultiCell(60, 3, $title, 0, 'L', 0);
1099
1100 $pdf->line($tab3_posx, $tab3_top, $tab3_posx + $tab3_width, $tab3_top);
1101
1102 $pdf->SetFont('', '', $default_font_size - 4);
1103 $pdf->SetXY($tab3_posx, $tab3_top);
1104 $pdf->MultiCell(20, 3, $outputlangs->transnoentities("Payment"), 0, 'L', 0);
1105 $pdf->SetXY($tab3_posx + 21, $tab3_top);
1106 $pdf->MultiCell(20, 3, $outputlangs->transnoentities("Amount"), 0, 'L', 0);
1107 $pdf->SetXY($tab3_posx + 40, $tab3_top);
1108 $pdf->MultiCell(20, 3, $outputlangs->transnoentities("Type"), 0, 'L', 0);
1109 $pdf->SetXY($tab3_posx + 58, $tab3_top);
1110 $pdf->MultiCell(20, 3, $outputlangs->transnoentities("Num"), 0, 'L', 0);
1111
1112 $pdf->line($tab3_posx, $tab3_top - 1 + $tab3_height, $tab3_posx + $tab3_width, $tab3_top - 1 + $tab3_height);
1113 }
1114
1115 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1116 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
1127 protected function _tableau_info(&$pdf, $object, $posy, $outputlangs, $outputlangsbis)
1128 {
1129 // phpcs:enable
1130 global $conf, $mysoc, $hookmanager;
1131
1132 $default_font_size = pdf_getPDFFontSize($outputlangs);
1133
1134 $pdf->SetFont('', '', $default_font_size - 1);
1135
1136 // If France, show VAT mention if not applicable
1137 if ($this->emetteur->country_code == 'FR' && empty($mysoc->tva_assuj)) {
1138 $pdf->SetFont('', 'B', $default_font_size - 2);
1139 $pdf->SetXY($this->marge_gauche, $posy);
1140 if ($mysoc->forme_juridique_code == 92) {
1141 $pdf->MultiCell(100, 3, $outputlangs->transnoentities("VATIsNotUsedForInvoiceAsso"), 0, 'L', 0);
1142 } else {
1143 $pdf->MultiCell(100, 3, $outputlangs->transnoentities("VATIsNotUsedForInvoice"), 0, 'L', 0);
1144 }
1145
1146 $posy = $pdf->GetY() + 4;
1147 }
1148
1149 $posxval = 52;
1150 $posxend = 110; // End of x for text on left side
1151 if ($this->page_largeur < 210) { // To work with US executive format
1152 $posxend -= 10;
1153 }
1154
1155 // Show payments conditions
1156 if ($object->type != 2 && ($object->cond_reglement_code || $object->cond_reglement)) {
1157 $pdf->SetFont('', 'B', $default_font_size - 2);
1158 $pdf->SetXY($this->marge_gauche, $posy);
1159 $titre = $outputlangs->transnoentities("PaymentConditions").':';
1160 $pdf->MultiCell(43, 4, $titre, 0, 'L');
1161
1162 $pdf->SetFont('', '', $default_font_size - 2);
1163 $pdf->SetXY($posxval, $posy);
1164 $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);
1165 $lib_condition_paiement = str_replace('\n', "\n", $lib_condition_paiement);
1166 $pdf->MultiCell(67, 4, $lib_condition_paiement, 0, 'L');
1167
1168 $posy = $pdf->GetY() + 3; // We need spaces for 2 lines payment conditions
1169 }
1170
1171 // Show category of operations
1172 if (getDolGlobalInt('INVOICE_CATEGORY_OF_OPERATION') == 2 && $this->categoryOfOperation >= 0) {
1173 $pdf->SetFont('', 'B', $default_font_size - 2);
1174 $pdf->SetXY($this->marge_gauche, $posy);
1175 $categoryOfOperationTitle = $outputlangs->transnoentities("MentionCategoryOfOperations").' : ';
1176 $pdf->MultiCell($posxval - $this->marge_gauche, 4, $categoryOfOperationTitle, 0, 'L');
1177
1178 $pdf->SetFont('', '', $default_font_size - 2);
1179 $pdf->SetXY($posxval, $posy);
1180 $categoryOfOperationLabel = $outputlangs->transnoentities("MentionCategoryOfOperations" . $this->categoryOfOperation);
1181 $pdf->MultiCell($posxend - $posxval, 4, $categoryOfOperationLabel, 0, 'L');
1182
1183 $posy = $pdf->GetY() + 3; // for 2 lines
1184 }
1185
1186 if ($object->type != 2) {
1187 // Check a payment mode is defined
1188 if (empty($object->mode_reglement_code)
1189 && !getDolGlobalInt('FACTURE_CHQ_NUMBER')
1190 && !getDolGlobalInt('FACTURE_RIB_NUMBER')) {
1191 $this->error = $outputlangs->transnoentities("ErrorNoPaiementModeConfigured");
1192 } elseif (($object->mode_reglement_code == 'CHQ' && !getDolGlobalInt('FACTURE_CHQ_NUMBER') && empty($object->fk_account) && empty($object->fk_bank))
1193 || ($object->mode_reglement_code == 'VIR' && !getDolGlobalInt('FACTURE_RIB_NUMBER') && empty($object->fk_account) && empty($object->fk_bank))) {
1194 // Avoid having any valid PDF with setup that is not complete
1195 $outputlangs->load("errors");
1196
1197 $pdf->SetXY($this->marge_gauche, $posy);
1198 $pdf->SetTextColor(200, 0, 0);
1199 $pdf->SetFont('', 'B', $default_font_size - 2);
1200 $this->error = $outputlangs->transnoentities("ErrorPaymentModeDefinedToWithoutSetup", $object->mode_reglement_code);
1201 $pdf->MultiCell(80, 3, $this->error, 0, 'L', 0);
1202 $pdf->SetTextColor(0, 0, 0);
1203
1204 $posy = $pdf->GetY() + 1;
1205 }
1206
1207 // Show payment mode
1208 if (!empty($object->mode_reglement_code)
1209 && $object->mode_reglement_code != 'CHQ'
1210 && $object->mode_reglement_code != 'VIR') {
1211 $pdf->SetFont('', 'B', $default_font_size - 2);
1212 $pdf->SetXY($this->marge_gauche, $posy);
1213 $titre = $outputlangs->transnoentities("PaymentMode").':';
1214 $pdf->MultiCell(80, 5, $titre, 0, 'L');
1215
1216 $pdf->SetFont('', '', $default_font_size - 2);
1217 $pdf->SetXY($posxval, $posy);
1218 $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);
1219 //#21654: add account number used for the debit
1220 if ($object->mode_reglement_code == "PRE") {
1221 require_once DOL_DOCUMENT_ROOT.'/societe/class/companybankaccount.class.php';
1222 $bac = new CompanyBankAccount($this->db);
1223 // @phan-suppress-next-line PhanPluginSuspiciousParamPosition
1224 $bac->fetch(0, '', $object->thirdparty->id);
1225 $iban = $bac->iban.(($bac->iban && $bac->bic) ? ' / ' : '').$bac->bic;
1226 $lib_mode_reg .= ' '.$outputlangs->trans("PaymentTypePREdetails", dol_trunc($iban, 6, 'right', 'UTF-8', 1));
1227 }
1228 $pdf->MultiCell(80, 5, $lib_mode_reg, 0, 'L');
1229
1230 $posy = $pdf->GetY();
1231 }
1232
1233 // Show if Option VAT debit option is on also if transmitter is french
1234 // Decret n°2099-1299 2022-10-07
1235 // French mention : "Option pour le paiement de la taxe d'après les débits"
1236 if ($this->emetteur->country_code == 'FR') {
1237 if (getDolGlobalInt('TAX_MODE') == 1) {
1238 $pdf->SetXY($this->marge_gauche, $posy);
1239 $pdf->writeHTMLCell(80, 5, '', '', $outputlangs->transnoentities("MentionVATDebitOptionIsOn"), 0, 1);
1240
1241 $posy = $pdf->GetY() + 1;
1242 }
1243 }
1244
1245 // Show online payment link
1246 if (empty($object->mode_reglement_code) || $object->mode_reglement_code == 'CB' || $object->mode_reglement_code == 'VAD') {
1247 $useonlinepayment = 0;
1248 if (getDolGlobalString('PDF_SHOW_LINK_TO_ONLINE_PAYMENT')) {
1249 // Show online payment link
1250 // The list can be complete by the hook 'doValidatePayment' executed inside getValidOnlinePaymentMethods()
1251 include_once DOL_DOCUMENT_ROOT.'/core/lib/payments.lib.php';
1252 $validpaymentmethod = getValidOnlinePaymentMethods('');
1253 $useonlinepayment = count($validpaymentmethod);
1254 }
1255
1256 if ($object->statut != Facture::STATUS_DRAFT && $useonlinepayment) {
1257 require_once DOL_DOCUMENT_ROOT.'/core/lib/payments.lib.php';
1258 global $langs;
1259
1260 $langs->loadLangs(array('payment', 'paybox', 'stripe'));
1261 $servicename = $langs->transnoentities('Online');
1262 $paiement_url = getOnlinePaymentUrl('', 'invoice', $object->ref, '', '', '');
1263 $linktopay = $langs->trans("ToOfferALinkForOnlinePayment", $servicename).' <a href="'.$paiement_url.'">'.$outputlangs->transnoentities("ClickHere").'</a>';
1264
1265 $pdf->SetXY($this->marge_gauche, $posy);
1266 $pdf->writeHTMLCell(80, 5, '', '', dol_htmlentitiesbr($linktopay), 0, 1);
1267
1268 $posy = $pdf->GetY() + 1;
1269 }
1270 }
1271
1272 // Show payment mode CHQ
1273 if (empty($object->mode_reglement_code) || $object->mode_reglement_code == 'CHQ') {
1274 // If payment mode unregulated or payment mode forced to CHQ
1275 if (getDolGlobalInt('FACTURE_CHQ_NUMBER')) {
1276 $diffsizetitle = (!getDolGlobalString('PDF_DIFFSIZE_TITLE') ? 3 : $conf->global->PDF_DIFFSIZE_TITLE);
1277
1278 if (getDolGlobalInt('FACTURE_CHQ_NUMBER') > 0) {
1279 $account = new Account($this->db);
1280 $account->fetch(getDolGlobalInt('FACTURE_CHQ_NUMBER'));
1281
1282 $pdf->SetXY($this->marge_gauche, $posy);
1283 $pdf->SetFont('', 'B', $default_font_size - $diffsizetitle);
1284 $pdf->MultiCell(100, 3, $outputlangs->transnoentities('PaymentByChequeOrderedTo', $account->owner_name), 0, 'L', 0);
1285 $posy = $pdf->GetY() + 1;
1286
1287 if (!getDolGlobalString('MAIN_PDF_HIDE_CHQ_ADDRESS')) {
1288 $pdf->SetXY($this->marge_gauche, $posy);
1289 $pdf->SetFont('', '', $default_font_size - $diffsizetitle);
1290 $pdf->MultiCell(100, 3, $outputlangs->convToOutputCharset($account->owner_address), 0, 'L', 0);
1291 $posy = $pdf->GetY() + 2;
1292 }
1293 }
1294 if ($conf->global->FACTURE_CHQ_NUMBER == -1) {
1295 $pdf->SetXY($this->marge_gauche, $posy);
1296 $pdf->SetFont('', 'B', $default_font_size - $diffsizetitle);
1297 $pdf->MultiCell(100, 3, $outputlangs->transnoentities('PaymentByChequeOrderedTo', $this->emetteur->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($this->emetteur->getFullAddress()), 0, 'L', 0);
1304 $posy = $pdf->GetY() + 2;
1305 }
1306 }
1307 }
1308 }
1309
1310 // If payment mode not forced or forced to VIR, show payment with BAN
1311 if (empty($object->mode_reglement_code) || $object->mode_reglement_code == 'VIR') {
1312 if ($object->fk_account > 0 || $object->fk_bank > 0 || getDolGlobalInt('FACTURE_RIB_NUMBER')) {
1313 $bankid = ($object->fk_account <= 0 ? $conf->global->FACTURE_RIB_NUMBER : $object->fk_account);
1314 if ($object->fk_bank > 0) {
1315 $bankid = $object->fk_bank; // For backward compatibility when object->fk_account is forced with object->fk_bank
1316 }
1317 $account = new Account($this->db);
1318 $account->fetch($bankid);
1319
1320 $curx = $this->marge_gauche;
1321 $cury = $posy;
1322
1323 $posy = pdf_bank($pdf, $outputlangs, $curx, $cury, $account, 0, $default_font_size);
1324
1325 $posy += 2;
1326 }
1327 }
1328 }
1329
1330 return $posy;
1331 }
1332
1333
1334 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1335 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
1347 protected function _tableau_tot(&$pdf, $object, $deja_regle, $posy, $outputlangs, $outputlangsbis)
1348 {
1349 // phpcs:enable
1350 global $conf, $mysoc, $hookmanager;
1351
1352 $sign = 1;
1353 if ($object->type == 2 && getDolGlobalString('INVOICE_POSITIVE_CREDIT_NOTE')) {
1354 $sign = -1;
1355 }
1356
1357 $default_font_size = pdf_getPDFFontSize($outputlangs);
1358
1359 $outputlangsbis = null;
1360 if (getDolGlobalString('PDF_USE_ALSO_LANGUAGE_CODE') && $outputlangs->defaultlang != getDolGlobalString('PDF_USE_ALSO_LANGUAGE_CODE')) {
1361 $outputlangsbis = new Translate('', $conf);
1362 $outputlangsbis->setDefaultLang(getDolGlobalString('PDF_USE_ALSO_LANGUAGE_CODE'));
1363 $outputlangsbis->loadLangs(array("main", "dict", "companies", "bills", "products", "propal"));
1364 $default_font_size--;
1365 }
1366
1367 $tab2_top = $posy;
1368 $tab2_hl = 4;
1369 $pdf->SetFont('', '', $default_font_size - 1);
1370
1371 // Total table
1372 $col1x = 120;
1373 $col2x = 170;
1374 if ($this->page_largeur < 210) { // To work with US executive format
1375 $col1x -= 15;
1376 $col2x -= 10;
1377 }
1378 $largcol2 = ($this->page_largeur - $this->marge_droite - $col2x);
1379
1380 $useborder = 0;
1381 $index = 0;
1382
1383 // Total HT
1384 $pdf->SetFillColor(255, 255, 255);
1385 $pdf->SetXY($col1x, $tab2_top);
1386 $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);
1387
1388 $total_ht = ((isModEnabled("multicurrency") && isset($object->multicurrency_tx) && $object->multicurrency_tx != 1) ? $object->multicurrency_total_ht : $object->total_ht);
1389 $pdf->SetXY($col2x, $tab2_top);
1390 $pdf->MultiCell($largcol2, $tab2_hl, price($sign * ($total_ht + (!empty($object->remise) ? $object->remise : 0)), 0, $outputlangs), 0, 'R', 1);
1391
1392 // Show VAT by rates and total
1393 $pdf->SetFillColor(248, 248, 248);
1394
1395 $total_ttc = (isModEnabled("multicurrency") && $object->multicurrency_tx != 1) ? $object->multicurrency_total_ttc : $object->total_ttc;
1396
1397 $this->atleastoneratenotnull = 0;
1398 if (!getDolGlobalString('MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT')) {
1399 $tvaisnull = ((!empty($this->tva) && count($this->tva) == 1 && isset($this->tva['0.000']) && is_float($this->tva['0.000'])) ? true : false);
1400 if (getDolGlobalString('MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT_IFNULL') && $tvaisnull) {
1401 // Nothing to do
1402 } else {
1403 //Local tax 1 before VAT
1404 foreach ($this->localtax1 as $localtax_type => $localtax_rate) {
1405 if (in_array((string) $localtax_type, array('1', '3', '5'))) {
1406 continue;
1407 }
1408
1409 foreach ($localtax_rate as $tvakey => $tvaval) {
1410 if ($tvakey != 0) { // On affiche pas taux 0
1411 //$this->atleastoneratenotnull++;
1412
1413 $index++;
1414 $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1415
1416 $tvacompl = '';
1417 if (preg_match('/\*/', (string) $tvakey)) {
1418 $tvakey = str_replace('*', '', (string) $tvakey);
1419 $tvacompl = " (".$outputlangs->transnoentities("NonPercuRecuperable").")";
1420 }
1421
1422 $totalvat = $outputlangs->transcountrynoentities("TotalLT1", $mysoc->country_code).(is_object($outputlangsbis) ? ' / '.$outputlangsbis->transcountrynoentities("TotalLT1", $mysoc->country_code) : '');
1423 $totalvat .= ' ';
1424
1425 if (getDolGlobalString('PDF_LOCALTAX1_LABEL_IS_CODE_OR_RATE') == 'nocodenorate') {
1426 $totalvat .= $tvacompl;
1427 } else {
1428 $totalvat .= vatrate(abs($tvakey), 1).$tvacompl;
1429 }
1430
1431 $pdf->MultiCell($col2x - $col1x, $tab2_hl, $totalvat, 0, 'L', 1);
1432
1433 $total_localtax = ((isModEnabled("multicurrency") && isset($object->multicurrency_tx) && $object->multicurrency_tx != 1) ? price2num($tvaval * $object->multicurrency_tx, 'MT') : $tvaval);
1434
1435 $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1436 $pdf->MultiCell($largcol2, $tab2_hl, price($total_localtax, 0, $outputlangs), 0, 'R', 1);
1437 }
1438 }
1439 }
1440
1441 //Local tax 2 before VAT
1442 foreach ($this->localtax2 as $localtax_type => $localtax_rate) {
1443 if (in_array((string) $localtax_type, array('1', '3', '5'))) {
1444 continue;
1445 }
1446
1447 foreach ($localtax_rate as $tvakey => $tvaval) {
1448 if ($tvakey != 0) { // On affiche pas taux 0
1449 //$this->atleastoneratenotnull++;
1450
1451 $index++;
1452 $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1453
1454 $tvacompl = '';
1455 if (preg_match('/\*/', (string) $tvakey)) {
1456 $tvakey = str_replace('*', '', (string) $tvakey);
1457 $tvacompl = " (".$outputlangs->transnoentities("NonPercuRecuperable").")";
1458 }
1459 $totalvat = $outputlangs->transcountrynoentities("TotalLT2", $mysoc->country_code).(is_object($outputlangsbis) ? ' / '.$outputlangsbis->transcountrynoentities("TotalLT2", $mysoc->country_code) : '');
1460 $totalvat .= ' ';
1461
1462 if (getDolGlobalString('PDF_LOCALTAX2_LABEL_IS_CODE_OR_RATE') == 'nocodenorate') {
1463 $totalvat .= $tvacompl;
1464 } else {
1465 $totalvat .= vatrate(abs($tvakey), 1).$tvacompl;
1466 }
1467
1468 $pdf->MultiCell($col2x - $col1x, $tab2_hl, $totalvat, 0, 'L', 1);
1469
1470 $total_localtax = ((isModEnabled("multicurrency") && isset($object->multicurrency_tx) && $object->multicurrency_tx != 1) ? price2num($tvaval * $object->multicurrency_tx, 'MT') : $tvaval);
1471
1472 $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1473 $pdf->MultiCell($largcol2, $tab2_hl, price($total_localtax, 0, $outputlangs), 0, 'R', 1);
1474 }
1475 }
1476 }
1477
1478 // VAT
1479 foreach ($this->tva_array as $tvakey => $tvaval) {
1480 if ($tvakey != 0) { // On affiche pas taux 0
1481 $this->atleastoneratenotnull++;
1482
1483 $index++;
1484 $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1485
1486 $tvacompl = '';
1487 if (preg_match('/\*/', $tvakey)) {
1488 $tvakey = str_replace('*', '', $tvakey);
1489 $tvacompl = " (".$outputlangs->transnoentities("NonPercuRecuperable").")";
1490 }
1491 $totalvat = $outputlangs->transcountrynoentities("TotalVAT", $mysoc->country_code).(is_object($outputlangsbis) ? ' / '.$outputlangsbis->transcountrynoentities("TotalVAT", $mysoc->country_code) : '');
1492 $totalvat .= ' ';
1493 if (getDolGlobalString('PDF_VAT_LABEL_IS_CODE_OR_RATE') == 'rateonly') {
1494 $totalvat .= vatrate($tvaval['vatrate'], 1).$tvacompl;
1495 } elseif (getDolGlobalString('PDF_VAT_LABEL_IS_CODE_OR_RATE') == 'codeonly') {
1496 $totalvat .= $tvaval['vatcode'].$tvacompl;
1497 } elseif (getDolGlobalString('PDF_VAT_LABEL_IS_CODE_OR_RATE') == 'nocodenorate') {
1498 $totalvat .= $tvacompl;
1499 } else {
1500 $totalvat .= vatrate($tvaval['vatrate'], 1).($tvaval['vatcode'] ? ' ('.$tvaval['vatcode'].')' : '').$tvacompl;
1501 }
1502 $pdf->MultiCell($col2x - $col1x, $tab2_hl, $totalvat, 0, 'L', 1);
1503
1504 $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1505 $pdf->MultiCell($largcol2, $tab2_hl, price(price2num($tvaval['amount'], 'MT'), 0, $outputlangs), 0, 'R', 1);
1506 }
1507 }
1508
1509 //Local tax 1 after VAT
1510 foreach ($this->localtax1 as $localtax_type => $localtax_rate) {
1511 if (in_array((string) $localtax_type, array('2', '4', '6'))) {
1512 continue;
1513 }
1514
1515 foreach ($localtax_rate as $tvakey => $tvaval) {
1516 if ($tvakey != 0) { // On affiche pas taux 0
1517 //$this->atleastoneratenotnull++;
1518
1519 $index++;
1520 $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1521
1522 $tvacompl = '';
1523 if (preg_match('/\*/', (string) $tvakey)) {
1524 $tvakey = str_replace('*', '', (string) $tvakey);
1525 $tvacompl = " (".$outputlangs->transnoentities("NonPercuRecuperable").")";
1526 }
1527 $totalvat = $outputlangs->transcountrynoentities("TotalLT1", $mysoc->country_code).' ';
1528
1529 if (getDolGlobalString('PDF_LOCALTAX1_LABEL_IS_CODE_OR_RATE') == 'nocodenorate') {
1530 $totalvat .= $tvacompl;
1531 } else {
1532 $totalvat .= vatrate(abs($tvakey), 1).$tvacompl;
1533 }
1534
1535 $pdf->MultiCell($col2x - $col1x, $tab2_hl, $totalvat, 0, 'L', 1);
1536
1537 $total_localtax = ((isModEnabled("multicurrency") && isset($object->multicurrency_tx) && $object->multicurrency_tx != 1) ? price2num($tvaval * $object->multicurrency_tx, 'MT') : $tvaval);
1538
1539 $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1540 $pdf->MultiCell($largcol2, $tab2_hl, price($total_localtax, 0, $outputlangs), 0, 'R', 1);
1541 }
1542 }
1543 }
1544
1545 //Local tax 2 after VAT
1546 foreach ($this->localtax2 as $localtax_type => $localtax_rate) {
1547 if (in_array((string) $localtax_type, array('2', '4', '6'))) {
1548 continue;
1549 }
1550
1551 foreach ($localtax_rate as $tvakey => $tvaval) {
1552 //$this->atleastoneratenotnull++;
1553
1554 $index++;
1555 $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1556
1557 $tvacompl = '';
1558 if (preg_match('/\*/', (string) $tvakey)) {
1559 $tvakey = str_replace('*', '', (string) $tvakey);
1560 $tvacompl = " (".$outputlangs->transnoentities("NonPercuRecuperable").")";
1561 }
1562 $totalvat = $outputlangs->transcountrynoentities("TotalLT2", $mysoc->country_code).' ';
1563
1564 if (getDolGlobalString('PDF_LOCALTAX2_LABEL_IS_CODE_OR_RATE') == 'nocodenorate') {
1565 $totalvat .= $tvacompl;
1566 } else {
1567 $totalvat .= vatrate(abs($tvakey), 1).$tvacompl;
1568 }
1569
1570 $pdf->MultiCell($col2x - $col1x, $tab2_hl, $totalvat, 0, 'L', 1);
1571
1572 $total_localtax = ((isModEnabled("multicurrency") && isset($object->multicurrency_tx) && $object->multicurrency_tx != 1) ? price2num($tvaval * $object->multicurrency_tx, 'MT') : $tvaval);
1573
1574 $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1575 $pdf->MultiCell($largcol2, $tab2_hl, price($total_localtax, 0, $outputlangs), 0, 'R', 1);
1576 }
1577 }
1578
1579 // Revenue stamp
1580 if (price2num($object->revenuestamp, 'MT') != 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, $outputlangs->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 $hautcadre -= 10; // Height for the shipping address does not need to be as high as main box
2179
2180 // Show shipping frame
2181 $pdf->SetXY($posx + 2, $posy - 5);
2182 $pdf->SetFont('', '', $default_font_size - 2);
2183 $pdf->MultiCell($widthrecbox, '', $outputlangs->transnoentities('ShippingTo'), 0, 'L', 0);
2184 $pdf->Rect($posx, $posy, $widthrecbox, $hautcadre);
2185
2186 // Show shipping name
2187 $pdf->SetXY($posx + 2, $posy + 3);
2188 $pdf->SetFont('', 'B', $default_font_size);
2189 $pdf->MultiCell($widthrecbox - 2, 2, $carac_client_name_shipping, '', 'L');
2190
2191 $posy = $pdf->getY();
2192
2193 // Show shipping information
2194 $pdf->SetXY($posx + 2, $posy);
2195 $pdf->SetFont('', '', $default_font_size - 1);
2196 $pdf->MultiCell($widthrecbox - 2, 2, $carac_client_shipping, '', 'L');
2197
2198 $top_shift += $hautcadre + 10;
2199 }
2200 }
2201 }
2202
2203 $pdf->SetTextColor(0, 0, 0);
2204
2205 return $top_shift;
2206 }
2207
2208 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
2219 protected function _pagefoot(&$pdf, $object, $outputlangs, $hidefreetext = 0, $heightforqrinvoice = 0)
2220 {
2221 $showdetails = getDolGlobalInt('MAIN_GENERATE_DOCUMENTS_SHOW_FOOT_DETAILS', 0);
2222
2223 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);
2224 }
2225}
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.
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.
print $script_file $mode $langs defaultlang(is_numeric($duration_value) ? " delay=". $duration_value :"").(is_numeric($duration_value2) ? " after cd cd cd description as description
Only used if Module[ID]Desc translation string is not found.
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.
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)
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:2637
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:1438
pdf_getlinetotalexcltax($object, $i, $outputlangs, $hidedetails=0)
Return line total excluding tax.
Definition pdf.lib.php:2376
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:1027
pdf_getlineupexcltax($object, $i, $outputlangs, $hidedetails=0)
Return line unit price excluding tax.
Definition pdf.lib.php:1994
pdf_getlineprogress($object, $i, $outputlangs, $hidedetails=0, $hookmanager=null)
Return line percent.
Definition pdf.lib.php:2325
pdf_getlinevatrate($object, $i, $outputlangs, $hidedetails=0)
Return line vat rate.
Definition pdf.lib.php:1932
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:1401
pdf_bank(&$pdf, $outputlangs, $curx, $cury, $account, $onlynumber=0, $default_font_size=10)
Show bank information for PDF generation.
Definition pdf.lib.php:850
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:2239
pdf_getlineremisepercent($object, $i, $outputlangs, $hidedetails=0)
Return line remise percent.
Definition pdf.lib.php:2282
pdf_getlineqty($object, $i, $outputlangs, $hidedetails=0)
Return line quantity.
Definition pdf.lib.php:2079
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:137
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition repair.php:140