dolibarr 23.0.4
pdf_sponge.modules.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2004-2024 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 Ferran Marcet <fmarcet@2byte.es>
11 * Copyright (C) 2018-2025 Frédéric France <frederic.france@free.fr>
12 * Copyright (C) 2018-2024 Anthony Berton <anthony.berton@bb2a.fr>
13 * Copyright (C) 2022-2025 Alexandre Spangaro <alexandre@inovea-conseil.com>
14 * Copyright (C) 2024-2025 MDW <mdeweerd@users.noreply.github.com>
15 * Copyright (C) 2024-2025 Nick Fragoulis
16 * Copyright (C) 2024 Franck Moreau
17 *
18 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation; either version 3 of the License, or
21 * (at your option) any later version.
22 *
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
27 *
28 * You should have received a copy of the GNU General Public License
29 * along with this program. If not, see <https://www.gnu.org/licenses/>.
30 * or see https://www.gnu.org/
31 */
32
39require_once DOL_DOCUMENT_ROOT.'/core/modules/facture/modules_facture.php';
40require_once DOL_DOCUMENT_ROOT.'/product/class/product.class.php';
41require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
42require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
43require_once DOL_DOCUMENT_ROOT.'/core/lib/pdf.lib.php';
44
49{
53 public $db;
54
58 public $name;
59
63 public $description;
64
68 public $update_main_doc_field;
69
73 public $type;
74
79 public $version = 'dolibarr';
80
84 public $heightforinfotot;
85
89 public $heightforfreetext;
90
94 public $heightforfooter;
95
99 public $tab_top;
100
104 public $tab_top_newpage;
105
109 public $situationinvoice;
110
111
115 public $cols;
116
120 public $categoryOfOperation = -1; // unknown by default
121
122
128 public function __construct($db)
129 {
130 global $langs, $mysoc;
131
132 // Translations
133 $langs->loadLangs(array("main", "bills"));
134
135 $this->db = $db;
136 $this->name = "sponge";
137 $this->description = $langs->trans('PDFSpongeDescription');
138 $this->update_main_doc_field = 1; // Save the name of generated file as the main doc when generating a doc with this template
139
140 // Dimension page
141 $this->type = 'pdf';
142 $formatarray = pdf_getFormat();
143 $this->page_largeur = $formatarray['width'];
144 $this->page_hauteur = $formatarray['height'];
145 $this->format = array($this->page_largeur, $this->page_hauteur);
146 $this->marge_gauche = getDolGlobalInt('MAIN_PDF_MARGIN_LEFT', 10);
147 $this->marge_droite = getDolGlobalInt('MAIN_PDF_MARGIN_RIGHT', 10);
148 $this->marge_haute = getDolGlobalInt('MAIN_PDF_MARGIN_TOP', 10);
149 $this->marge_basse = getDolGlobalInt('MAIN_PDF_MARGIN_BOTTOM', 10);
150 $this->corner_radius = getDolGlobalInt('MAIN_PDF_FRAME_CORNER_RADIUS', 0);
151 $this->option_logo = 1; // Display logo
152 $this->option_tva = 1; // Manage the vat option FACTURE_TVAOPTION
153 $this->option_modereg = 1; // Display payment mode
154 $this->option_condreg = 1; // Display payment terms
155 $this->option_multilang = 1; // Available in several languages
156 $this->option_escompte = 1; // Displays if there has been a discount
157 $this->option_credit_note = 1; // Support credit notes
158 $this->option_freetext = 1; // Support add of a personalised text
159 $this->option_draft_watermark = 1; // Support add of a watermark on drafts
160 $this->watermark = '';
161
162 if ($mysoc === null) {
163 dol_syslog(get_class($this).'::__construct() Global $mysoc should not be null.'. getCallerInfoString(), LOG_ERR);
164 return;
165 }
166
167 // Get source company
168 $this->emetteur = $mysoc;
169 if (empty($this->emetteur->country_code)) {
170 $this->emetteur->country_code = substr($langs->defaultlang, -2); // By default if not defined
171 }
172
173 // Define position of columns
174 $this->posxdesc = $this->marge_gauche + 1; // used for notes and other stuff
175
176
177 $this->tabTitleHeight = 5; // default height
178
179 // Use new system for position of columns, view $this->defineColumnField()
180
181 $this->tva = array();
182 $this->tva_array = array();
183 $this->localtax1 = array();
184 $this->localtax2 = array();
185 $this->atleastoneratenotnull = 0;
186 $this->atleastonediscount = 0;
187 $this->situationinvoice = false;
188 }
189
190
191 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
203 public function write_file($object, $outputlangs, $srctemplatepath = '', $hidedetails = 0, $hidedesc = 0, $hideref = 0)
204 {
205 // phpcs:enable
206 global $user, $langs, $conf, $mysoc, $hookmanager, $nblines;
207
208 dol_syslog("write_file outputlangs->defaultlang=".(is_object($outputlangs) ? $outputlangs->defaultlang : 'null'));
209
210 if (!is_object($outputlangs)) {
211 $outputlangs = $langs;
212 }
213 // For backward compatibility with FPDF, force output charset to ISO, because FPDF expect text to be encoded in ISO
214 if (getDolGlobalString('MAIN_USE_FPDF')) {
215 $outputlangs->charset_output = 'ISO-8859-1';
216 }
217
218 // Load translation files required by the page
219 $outputlangs->loadLangs(array("main", "bills", "products", "dict", "companies", "compta"));
220
221 global $outputlangsbis;
222 $outputlangsbis = null;
223 if (getDolGlobalString('PDF_USE_ALSO_LANGUAGE_CODE') && $outputlangs->defaultlang != getDolGlobalString('PDF_USE_ALSO_LANGUAGE_CODE')) {
224 $outputlangsbis = new Translate('', $conf);
225 $outputlangsbis->setDefaultLang(getDolGlobalString('PDF_USE_ALSO_LANGUAGE_CODE'));
226 $outputlangsbis->loadLangs(array("main", "bills", "products", "dict", "companies", "compta"));
227 }
228
229 // Show Draft Watermark
230 if ($object->status == $object::STATUS_DRAFT && (getDolGlobalString('FACTURE_DRAFT_WATERMARK'))) {
231 $this->watermark = getDolGlobalString('FACTURE_DRAFT_WATERMARK');
232 }
233
234 $nblines = count($object->lines);
235
236 $hidetop = 0;
237 if (getDolGlobalString('MAIN_PDF_DISABLE_COL_HEAD_TITLE')) {
238 $hidetop = getDolGlobalString('MAIN_PDF_DISABLE_COL_HEAD_TITLE');
239 }
240
241 // Loop on each lines to detect if there is at least one image to show
242 $realpatharray = array();
243 $this->atleastonephoto = false;
244 if (getDolGlobalString('MAIN_GENERATE_INVOICES_WITH_PICTURE')) {
245 $objphoto = new Product($this->db);
246
247 for ($i = 0; $i < $nblines; $i++) {
248 if (empty($object->lines[$i]->fk_product)) {
249 continue;
250 }
251
252 $objphoto->fetch($object->lines[$i]->fk_product);
253 //var_dump($objphoto->ref);exit;
254 $pdir = array();
255 if (getDolGlobalInt('PRODUCT_USE_OLD_PATH_FOR_PHOTO')) {
256 $pdir[0] = get_exdir($objphoto->id, 2, 0, 0, $objphoto, 'product').$objphoto->id."/photos/";
257 $pdir[1] = get_exdir(0, 0, 0, 0, $objphoto, 'product').dol_sanitizeFileName($objphoto->ref).'/';
258 } else {
259 $pdir[0] = get_exdir(0, 0, 0, 0, $objphoto, 'product'); // default
260 $pdir[1] = get_exdir($objphoto->id, 2, 0, 0, $objphoto, 'product').$objphoto->id."/photos/"; // alternative
261 }
262
263 $arephoto = false;
264 $realpath = false;
265 foreach ($pdir as $midir) {
266 if (!$arephoto) {
267 $entity = $objphoto->entity;
268 if ($entity !== null && $conf->entity != $entity) {
269 $dir = $conf->product->multidir_output[$entity].'/'.$midir; //Check repertories of current entities
270 } else {
271 $dir = $conf->product->dir_output.'/'.$midir; //Check repertory of the current product
272 }
273
274 foreach ($objphoto->liste_photos($dir, 1) as $key => $obj) {
275 if (!getDolGlobalInt('CAT_HIGH_QUALITY_IMAGES')) { // If CAT_HIGH_QUALITY_IMAGES not defined, we use thumb if defined and then original photo
276 if ($obj['photo_vignette']) {
277 $filename = $obj['photo_vignette'];
278 } else {
279 $filename = $obj['photo'];
280 }
281 } else {
282 $filename = $obj['photo'];
283 }
284
285 $realpath = $dir.$filename;
286 $arephoto = true;
287 $this->atleastonephoto = true;
288 }
289 }
290 }
291
292 if (!empty($realpath) && $arephoto) {
293 $realpatharray[$i] = $realpath;
294 }
295 }
296 }
297
298 //if (count($realpatharray) == 0) $this->posxpicture=$this->posxtva;
299
300 if ($conf->facture->multidir_output[$conf->entity]) {
301 $object->fetch_thirdparty();
302
303 $deja_regle = $object->getSommePaiement((isModEnabled("multicurrency") && $object->multicurrency_tx != 1) ? 1 : 0);
304 $amount_credit_notes_included = $object->getSumCreditNotesUsed((isModEnabled("multicurrency") && $object->multicurrency_tx != 1) ? 1 : 0);
305 $amount_deposits_included = $object->getSumDepositsUsed((isModEnabled("multicurrency") && $object->multicurrency_tx != 1) ? 1 : 0);
306
307 // Definition of $dir and $file
308 if ($object->specimen) {
309 $dir = $conf->facture->multidir_output[$conf->entity];
310 $file = $dir."/SPECIMEN.pdf";
311 } else {
312 $objectref = dol_sanitizeFileName($object->ref);
313 $dir = $conf->facture->multidir_output[$object->entity ?? $conf->entity]."/".$objectref;
314 $file = $dir."/".$objectref.".pdf";
315 }
316 if (!file_exists($dir)) {
317 if (dol_mkdir($dir) < 0) {
318 $this->error = $langs->transnoentities("ErrorCanNotCreateDir", $dir);
319 return 0;
320 }
321 }
322
323 if (file_exists($dir)) {
324 // Add pdfgeneration hook
325 if (!is_object($hookmanager)) {
326 include_once DOL_DOCUMENT_ROOT.'/core/class/hookmanager.class.php';
327 $hookmanager = new HookManager($this->db);
328 }
329 $hookmanager->initHooks(array('pdfgeneration'));
330 $parameters = array('file' => $file, 'object' => $object, 'outputlangs' => $outputlangs);
331 global $action;
332 $reshook = $hookmanager->executeHooks('beforePDFCreation', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
333
334 // Set nblines with the new facture lines content after hook
335 $nblines = count($object->lines);
336 $nbpayments = count($object->getListOfPayments());
337
338 // Create pdf instance
339 $pdf = pdf_getInstance($this->format);
340 $default_font_size = pdf_getPDFFontSize($outputlangs); // Must be after pdf_getInstance
341 $pdf->setAutoPageBreak(true, 0);
342
343 // Compute height for total, free text and footer
344 $this->heightforinfotot = 50; // Height reserved to output the info and total part and payment part
345 if (!getDolGlobalString('INVOICE_NO_PAYMENT_DETAILS') && $nbpayments > 0) {
346 $this->heightforinfotot += (4 * $nbpayments);
347 }
348 $this->heightforfreetext = getDolGlobalInt('MAIN_PDF_FREETEXT_HEIGHT', 5); // Height reserved to output the free text on last page
349 $this->heightforfooter = $this->marge_basse + (!getDolGlobalString('MAIN_GENERATE_DOCUMENTS_SHOW_FOOT_DETAILS') ? 12 : 22); // Height reserved to output the footer (value include bottom margin)
350
351 $heightforqrinvoice = 0;
352 if (getDolGlobalString('INVOICE_ADD_SWISS_QR_CODE') == 'bottom') {
353 if ($this->getHeightForQRInvoice(1, $object, $langs) > 0) {
354 // Shrink infotot to a base 30
355 $this->heightforinfotot = 30 + (4 * $nbpayments); // Height reserved to output the info and total part and payment part
356 }
357 }
358
359 if (class_exists('TCPDF')) {
360 $pdf->setPrintHeader(false);
361 $pdf->setPrintFooter(false);
362 }
363 $pdf->SetFont(pdf_getPDFFont($outputlangs));
364
365 // Set path to the background PDF File
366 if (getDolGlobalString('MAIN_ADD_PDF_BACKGROUND')) {
367 $logodir = $conf->mycompany->dir_output;
368 if (!empty($conf->mycompany->multidir_output[$object->entity ?? $conf->entity])) {
369 $logodir = $conf->mycompany->multidir_output[$object->entity ?? $conf->entity];
370 }
371 $pagecount = $pdf->setSourceFile($logodir.'/' . getDolGlobalString('MAIN_ADD_PDF_BACKGROUND'));
372 $tplidx = $pdf->importPage(1);
373 }
374
375 $pdf->Open();
376 $pagenb = 0;
377 $pdf->SetDrawColor(128, 128, 128);
378
379 $pdf->SetTitle($outputlangs->convToOutputCharset($object->ref));
380 $pdf->SetSubject($outputlangs->transnoentities("PdfInvoiceTitle"));
381 $pdf->SetCreator("Dolibarr ".DOL_VERSION);
382 $pdf->SetAuthor($mysoc->name.($user->id > 0 ? ' - '.$outputlangs->convToOutputCharset($user->getFullName($outputlangs)) : ''));
383 $pdf->SetKeyWords($outputlangs->convToOutputCharset($object->ref)." ".$outputlangs->transnoentities("PdfInvoiceTitle")." ".$outputlangs->convToOutputCharset($object->thirdparty->name));
384 if (getDolGlobalString('MAIN_DISABLE_PDF_COMPRESSION')) {
385 $pdf->SetCompression(false);
386 }
387
388 // Set certificate
389 $cert = empty($user->conf->CERTIFICATE_CRT) ? '' : $user->conf->CERTIFICATE_CRT;
390 $certprivate = empty($user->conf->CERTIFICATE_CRT_PRIVATE) ? '' : $user->conf->CERTIFICATE_CRT_PRIVATE;
391 // If user has no certificate, we try to take the company one
392 if (!$cert) {
393 $cert = getDolGlobalString('CERTIFICATE_CRT');
394 }
395 if (!$certprivate) {
396 $certprivate = getDolGlobalString('CERTIFICATE_CRT_PRIVATE');
397 }
398 // If a certificate is found
399 if ($cert) {
400 $info = array(
401 'Name' => $this->emetteur->name,
402 'Location' => getCountry($this->emetteur->country_code, ''),
403 'Reason' => 'INVOICE',
404 'ContactInfo' => $this->emetteur->email
405 );
406 $pdf->setSignature($cert, $certprivate, $this->emetteur->name, '', 2, $info);
407 }
408
409 // @phan-suppress-next-line PhanPluginSuspiciousParamOrder
410 $pdf->SetMargins($this->marge_gauche, $this->marge_haute, $this->marge_droite); // Left, Top, Right
411
412 // Set $this->atleastonediscount if you have at least one discount
413 // and determine category of operation
414 $categoryOfOperation = 0;
415 $nbProduct = 0;
416 $nbService = 0;
417 for ($i = 0; $i < $nblines; $i++) {
418 if ($object->lines[$i]->remise_percent) {
419 $this->atleastonediscount++;
420 }
421
422 // Do not take into account lines of the type “deposit.”
423 $is_deposit = false;
424 if (preg_match('/^\‍((.*)\‍)$/', $object->lines[$i]->desc, $reg)) {
425 if ($reg[1] == 'DEPOSIT') {
426 $is_deposit = true;
427 }
428 }
429
430 // If DEPOSIT, this line is completely ignored for calculations.
431 if ($is_deposit) {
432 continue;
433 }
434
435 // determine category of operation
436 if ($categoryOfOperation < 2) {
437 $lineProductType = $object->lines[$i]->product_type;
438 if ($lineProductType == Product::TYPE_PRODUCT) {
439 $nbProduct++;
440 } elseif ($lineProductType == Product::TYPE_SERVICE) {
441 $nbService++;
442 }
443 if ($nbProduct > 0 && $nbService > 0) {
444 // mixed products and services
445 $categoryOfOperation = 2;
446 }
447 }
448 }
449 // determine category of operation
450 if ($categoryOfOperation <= 0) {
451 // only services
452 if ($nbProduct == 0 && $nbService > 0) {
453 $categoryOfOperation = 1;
454 }
455 }
456 $this->categoryOfOperation = $categoryOfOperation;
457
458 // Situation invoice handling
459 if ($object->situation_cycle_ref) {
460 $this->situationinvoice = true;
461 }
462
463 // New page
464 $pdf->AddPage();
465 if (!empty($tplidx)) {
466 $pdf->useTemplate($tplidx);
467 }
468 $pagenb++;
469
470 // Output header (logo, ref and address blocks). This is first call for first page.
471 $pagehead = $this->_pagehead($pdf, $object, 1, $outputlangs, $outputlangsbis);
472 $top_shift = $pagehead['top_shift'];
473 $shipp_shift = $pagehead['shipp_shift'];
474 $pdf->SetFont('', '', $default_font_size - 1);
475 $pdf->MultiCell(0, 3, ''); // Set interline to 3
476 $pdf->SetTextColor(0, 0, 0);
477
478 // $pdf->GetY() here can't be used. It is bottom of the second address box but first one may be higher
479
480 // $this->tab_top is y where we must continue content (90 = 42 + 48: 42 is height of logo and ref, 48 is address blocks)
481 $this->tab_top = 90 + $top_shift + $shipp_shift; // top_shift is an addition for linked objects or addons (0 in most cases)
482 $this->tab_top_newpage = (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD') ? 42 + $top_shift : 10);
483
484 // You can add more thing under header here, if you increase $extra_under_address_shift too.
485 $extra_under_address_shift = 0;
486 $qrcodestring = '';
487 if (getDolGlobalString('INVOICE_ADD_ZATCA_QR_CODE')) {
488 $qrcodestring = $object->buildZATCAQRString();
489 } elseif (getDolGlobalString('INVOICE_ADD_SWISS_QR_CODE') == '1' && (empty($object->mode_reglement_code) || $object->mode_reglement_code == 'VIR')) {
490 if ($object->fk_account > 0 || $object->fk_bank > 0 || getDolGlobalInt('FACTURE_RIB_NUMBER')) {
491 $qrcodestring = $object->buildSwitzerlandQRString();
492 }
493 } elseif (getDolGlobalString('INVOICE_ADD_EPC_QR_CODE') == '1' && (empty($object->mode_reglement_code) || $object->mode_reglement_code == 'VIR')) {
494 if ($object->fk_account > 0 || $object->fk_bank > 0 || getDolGlobalInt('FACTURE_RIB_NUMBER')) {
495 $qrcodestring = $object->buildEPCQrCodeString();
496 }
497 }
498
499 if ($qrcodestring) {
500 $qrcodecolor = array('25', '25', '25');
501 // set style for QR-code
502 $styleQr = array(
503 'border' => false,
504 'padding' => 0,
505 'fgcolor' => $qrcodecolor,
506 'bgcolor' => false, //array(255,255,255)
507 'module_width' => 1, // width of a single module in points
508 'module_height' => 1 // height of a single module in points
509 );
510 $pdf->write2DBarcode($qrcodestring, 'QRCODE,M', $this->marge_gauche, $this->tab_top - 5, 25, 25, $styleQr, 'N');
511
512 if (getDolGlobalString('INVOICE_ADD_EPC_QR_CODE') == '1' && (empty($object->mode_reglement_code) || $object->mode_reglement_code == 'VIR')) {
513 if ($object->fk_account > 0 || $object->fk_bank > 0 || getDolGlobalInt('FACTURE_RIB_NUMBER')) {
514 $pdf->SetXY($this->marge_gauche + 30, $pdf->GetY() - 15);
515 $pdf->SetFont('', '', $default_font_size - 4);
516 $pdf->MultiCell(40, 3, $langs->transnoentitiesnoconv("INVOICE_ADD_EPC_QR_CODEPay"), 0, 'L', false);
517 }
518 }
519
520 $extra_under_address_shift += 25;
521 }
522
523 // Call hook printUnderHeaderPDFline
524 $parameters = array(
525 'object' => $object,
526 // 'i' => $i, // we aren't in lines
527 'pdf' => &$pdf,
528 'outputlangs' => $outputlangs,
529 'hidedetails' => $hidedetails
530 );
531 $reshook = $hookmanager->executeHooks('printUnderHeaderPDFline', $parameters, $this); // Note that $object may have been modified by hook
532 if (!empty($hookmanager->resArray['extra_under_address_shift'])) {
533 $extra_under_address_shift += $hookmanager->resArray['extra_under_address_shift'];
534 }
535
536 $this->tab_top += $extra_under_address_shift;
537 $this->tab_top_newpage += 0;
538
539
540 // Define height of table for lines (for first page)
541 $tab_height = $this->page_hauteur - $this->tab_top - $this->heightforfooter - $this->heightforfreetext - $this->getHeightForQRInvoice(1, $object, $langs);
542
543 $nexY = $this->tab_top - 1;
544
545 // Incoterm
546 $height_incoterms = 0;
547 if (isModEnabled('incoterm')) {
548 $desc_incoterms = $object->getIncotermsForPDF();
549 if ($desc_incoterms) {
550 $this->tab_top -= 2;
551
552 $pdf->SetFont('', '', $default_font_size - 1);
553 $pdf->writeHTMLCell(190, 3, $this->posxdesc - 1, $this->tab_top - 1, dol_htmlentitiesbr($desc_incoterms), 0, 1);
554 $nexY = max($pdf->GetY(), $nexY);
555 $height_incoterms = $nexY - $this->tab_top;
556
557 // Rect takes a length in 3rd parameter
558 $pdf->SetDrawColor(192, 192, 192);
559 $pdf->RoundedRect($this->marge_gauche, $this->tab_top - 1, $this->page_largeur - $this->marge_gauche - $this->marge_droite, $height_incoterms + 3, $this->corner_radius, '1234', 'D');
560
561 $this->tab_top = $nexY + 6;
562 $height_incoterms += 4;
563 }
564 }
565
566 // Displays notes. Here we are still on code executed only for the first page.
567 $notetoshow = empty($object->note_public) ? '' : $object->note_public;
568 if (getDolGlobalString('MAIN_ADD_SALE_REP_SIGNATURE_IN_NOTE')) {
569 // Get first sale rep
570 if (is_object($object->thirdparty)) {
571 $salereparray = $object->thirdparty->getSalesRepresentatives($user);
572 $salerepobj = new User($this->db);
573 $salerepobj->fetch($salereparray[0]['id']);
574 if (!empty($salerepobj->signature)) {
575 $notetoshow = dol_concatdesc($notetoshow, $salerepobj->signature);
576 }
577 }
578 }
579
580 // Extrafields in note
581 $extranote = $this->getExtrafieldsInHtml($object, $outputlangs);
582 if (!empty($extranote)) {
583 $notetoshow = dol_concatdesc((string) $notetoshow, $extranote);
584 }
585
586 $pagenb = $pdf->getPage();
587 if ($notetoshow) {
588 $this->tab_top -= 2;
589
590 $tab_width = $this->page_largeur - $this->marge_gauche - $this->marge_droite;
591 $pageposbeforenote = $pagenb;
592
593 $substitutionarray = pdf_getSubstitutionArray($outputlangs, null, $object);
594 complete_substitutions_array($substitutionarray, $outputlangs, $object);
595 $notetoshow = make_substitutions($notetoshow, $substitutionarray, $outputlangs);
596 $notetoshow = convertBackOfficeMediasLinksToPublicLinks($notetoshow);
597
598 $pdf->startTransaction();
599
600 $pdf->SetFont('', '', $default_font_size - 1);
601 $pdf->writeHTMLCell(190, 3, $this->posxdesc - 1, $this->tab_top, dol_htmlentitiesbr($notetoshow), 0, 1);
602 // Description
603 $pageposafternote = $pdf->getPage();
604 $posyafter = $pdf->GetY();
605
606 if ($pageposafternote > $pageposbeforenote) {
607 $pdf->rollbackTransaction(true);
608
609 // prepare pages to receive notes
610 while ($pagenb < $pageposafternote) {
611 $pdf->AddPage();
612 $pagenb++;
613 if (!empty($tplidx)) {
614 $pdf->useTemplate($tplidx);
615 }
616 if (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD')) {
617 $this->_pagehead($pdf, $object, 0, $outputlangs, $outputlangsbis);
618 }
619 $pdf->setTopMargin($this->tab_top_newpage);
620 // The only function to edit the bottom margin of current page to set it.
621 $pdf->setPageOrientation('', true, $this->heightforfooter + $this->heightforfreetext);
622 }
623
624 // back to start
625 $pdf->setPage($pageposbeforenote);
626 $pdf->setPageOrientation('', true, $this->heightforfooter + $this->heightforfreetext);
627 $pdf->SetFont('', '', $default_font_size - 1);
628 $pdf->writeHTMLCell(190, 3, $this->posxdesc - 1, $this->tab_top, dol_htmlentitiesbr($notetoshow), 0, 1);
629 $pageposafternote = $pdf->getPage();
630
631 $posyafter = $pdf->GetY();
632
633 if ($posyafter > ($this->page_hauteur - ($this->heightforfooter + $this->heightforfreetext + 20))) { // There is no space left for total+free text
634 $pdf->AddPage('', '', true);
635 $pagenb++;
636 $pageposafternote++;
637 $pdf->setPage($pageposafternote);
638 $pdf->setTopMargin($this->tab_top_newpage);
639 // The only function to edit the bottom margin of current page to set it.
640 $pdf->setPageOrientation('', true, $this->heightforfooter + $this->heightforfreetext);
641 //$posyafter = $this->tab_top_newpage;
642 }
643
644
645 // apply note frame to previous pages
646 $i = $pageposbeforenote;
647 while ($i < $pageposafternote) {
648 $pdf->setPage($i);
649
650
651 $pdf->SetDrawColor(128, 128, 128);
652 // Draw note frame
653 if ($i > $pageposbeforenote) {
654 $height_note = $this->page_hauteur - ($this->tab_top_newpage + $this->heightforfooter);
655 $pdf->RoundedRect($this->marge_gauche, $this->tab_top_newpage - 1, $tab_width, $height_note + 1, $this->corner_radius, '1234', 'D');
656 } else {
657 $height_note = $this->page_hauteur - ($this->tab_top + $this->heightforfooter);
658 $pdf->RoundedRect($this->marge_gauche, $this->tab_top - 1, $tab_width, $height_note + 1, $this->corner_radius, '1234', 'D');
659 }
660
661 // Add footer
662 $pdf->setPageOrientation('', true, 0); // The only function to edit the bottom margin of current page to set it.
663 $this->_pagefoot($pdf, $object, $outputlangs, 1, $this->getHeightForQRInvoice($i, $object, $outputlangs));
664
665 $i++;
666 }
667
668 // apply note frame to last page
669 $pdf->setPage($pageposafternote);
670 if (!empty($tplidx)) {
671 $pdf->useTemplate($tplidx);
672 }
673 if (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD')) {
674 $this->_pagehead($pdf, $object, 0, $outputlangs, $outputlangsbis);
675 }
676 $height_note = $posyafter - $this->tab_top_newpage;
677 $pdf->RoundedRect($this->marge_gauche, $this->tab_top_newpage - 1, $tab_width, $height_note + 1, $this->corner_radius, '1234', 'D');
678 } else {
679 // No pagebreak
680 $pdf->commitTransaction();
681 $posyafter = $pdf->GetY();
682 $height_note = $posyafter - $this->tab_top;
683 $pdf->RoundedRect($this->marge_gauche, $this->tab_top - 1, $tab_width, $height_note + 1, $this->corner_radius, '1234', 'D');
684
685
686 if ($posyafter > ($this->page_hauteur - ($this->heightforfooter + $this->heightforfreetext + 20))) {
687 // not enough space, need to add page
688 $pdf->AddPage('', '', true);
689 $pagenb++;
690 $pageposafternote++;
691 $pdf->setPage($pageposafternote);
692 if (!empty($tplidx)) {
693 $pdf->useTemplate($tplidx);
694 }
695 if (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD')) {
696 $this->_pagehead($pdf, $object, 0, $outputlangs, $outputlangsbis);
697 }
698
699 $posyafter = $this->tab_top_newpage;
700 }
701 }
702
703 $tab_height -= $height_note;
704 $this->tab_top = $posyafter + 6;
705 } else {
706 $height_note = 0;
707 }
708
709 // Use new auto column system
710 $this->prepareArrayColumnField($object, $outputlangs, $hidedetails, $hidedesc, $hideref);
711
712 // Table simulation to know the height of the title line (this set this->tableTitleHeight)
713 $pdf->startTransaction();
714 $this->pdfTabTitles($pdf, $this->tab_top, $tab_height, $outputlangs, $hidetop);
715 $pdf->rollbackTransaction(true);
716
717 $nexY = $this->tab_top + $this->tabTitleHeight;
718
719 // Loop on each lines
720 $pageposbeforeprintlines = $pdf->getPage();
721 $pagenb = $pageposbeforeprintlines;
722
723 $pdf_sub_options = array();
724 $pdf_sub_options['titleshowuponpdf'] = 1;
725 $pdf_sub_options['titleshowtotalexludingvatonpdf'] = 1;
726
727 $hidenextline = 0;
728
729 for ($i = 0; $i < $nblines; $i++) {
730 $linePosition = $i + 1;
731 $curY = $nexY;
732
733 $sub_options = $object->lines[$i]->extraparams["subtotal"] ?? array();
734
735 if ($object->lines[$i]->special_code == SUBTOTALS_SPECIAL_CODE) {
736 $level = $object->lines[$i]->qty;
737 if ($sub_options) {
738 $hidenextline = 0;
739 if (isset($sub_options['titleshowuponpdf'])) {
740 $pdf_sub_options['titleshowuponpdf'] = isset($pdf_sub_options['titleshowuponpdf']) && $pdf_sub_options['titleshowuponpdf'] < $level ? $pdf_sub_options['titleshowuponpdf'] : $level;
741 } elseif (isset($pdf_sub_options['titleshowuponpdf']) && abs($level) <= $pdf_sub_options['titleshowuponpdf']) {
742 unset($pdf_sub_options['titleshowuponpdf']);
743 }
744 if (isset($sub_options['titleshowtotalexludingvatonpdf'])) {
745 $pdf_sub_options['titleshowtotalexludingvatonpdf'] = isset($pdf_sub_options['titleshowtotalexludingvatonpdf']) && $pdf_sub_options['titleshowtotalexludingvatonpdf'] < $level ? $pdf_sub_options['titleshowtotalexludingvatonpdf'] : $level;
746 } elseif (isset($pdf_sub_options['titleshowtotalexludingvatonpdf']) && abs($level) <= $pdf_sub_options['titleshowtotalexludingvatonpdf']) {
747 unset($pdf_sub_options['titleshowtotalexludingvatonpdf']);
748 }
749 } else {
750 if (isset($pdf_sub_options['titleshowuponpdf']) && abs($level) <= $pdf_sub_options['titleshowuponpdf']) {
751 unset($pdf_sub_options['titleshowuponpdf']);
752 }
753 if (isset($pdf_sub_options['titleshowtotalexludingvatonpdf']) && abs($level) <= $pdf_sub_options['titleshowtotalexludingvatonpdf']) {
754 unset($pdf_sub_options['titleshowtotalexludingvatonpdf']);
755 }
756 }
757 }
758
759 if ($object->lines[$i]->special_code == SUBTOTALS_SPECIAL_CODE && isset($sub_options['subtotalshowtotalexludingvatonpdf']) && getDolGlobalString('SUBTOTAL_HIDE_LINES_UNDER_TITLE')) { // TODO Use $sub_options['titlehidelinesundertitle'] instead of SUBTOTAL_HIDE_LINES_UNDER_TITLE
760 $hidenextline = 0;
761 $pdf_sub_options = array();
762 $pdf_sub_options['titleshowuponpdf'] = 1;
763 $pdf_sub_options['titleshowtotalexludingvatonpdf'] = 1;
764 }
765
766 if ($hidenextline) {
767 $linePosition--;
768 } else {
769 if (($curY + 6) > ($this->page_hauteur - $this->heightforfooter) || isset($sub_options['titleforcepagebreak']) && !($pdf->getNumPages() == 1 && $curY == $this->tab_top + $this->tabTitleHeight)) {
770 $object->lines[$i]->pagebreak = true;
771 }
772
773 // in First Check line page break and add page if needed
774 if (isset($object->lines[$i]->pagebreak) && $object->lines[$i]->pagebreak) {
775 // New page
776 $pdf->AddPage();
777 if (!empty($tplidx)) {
778 $pdf->useTemplate($tplidx);
779 }
780
781 $pdf->setPage($pdf->getNumPages());
782 $nexY = $curY = $this->tab_top_newpage;
783 }
784
785 $this->resetAfterColsLinePositionsData($nexY, $pdf->getPage());
786
787 $pdf->SetFont('', '', $default_font_size - 1); // Into loop to work with multipage
788 $pdf->SetTextColor(0, 0, 0);
789
790 // Define size of image if we need it
791 $imglinesize = array();
792 if (!empty($realpatharray[$i])) {
793 $imglinesize = pdf_getSizeForImage($realpatharray[$i]);
794 }
795
796 $pdf->setTopMargin($this->tab_top_newpage);
797 $pdf->setPageOrientation('', true, $this->heightforfooter);
798 $pageposbefore = $pdf->getPage();
799 $curYBefore = $curY;
800
801 // Allows data in the first page if description is long enough to break in multiples pages
802 $showpricebeforepagebreak = getDolGlobalInt('MAIN_PDF_DATA_ON_FIRST_PAGE');
803
804 if ($this->getColumnStatus('photo')) {
805 // We start with Photo of product line
806 $imageTopMargin = 1;
807 if (isset($imglinesize['width']) && isset($imglinesize['height']) && ($curY + $imageTopMargin + $imglinesize['height']) > ($this->page_hauteur - $this->heightforfooter)) { // If photo too high, we moved completely on new page
808 $pdf->AddPage('', '', true);
809 if (!empty($tplidx)) {
810 $pdf->useTemplate($tplidx);
811 }
812 $pdf->setPage($pageposbefore + 1);
813 $pdf->setPageOrientation('', true, $this->heightforfooter); // The only function to edit the bottom margin of current page to set it.
814 $curY = $this->tab_top_newpage;
815 $showpricebeforepagebreak = 0;
816 }
817
818 $pdf->setPageOrientation('', false, $this->heightforfooter + $this->heightforfreetext); // The only function to edit the bottom margin of current page to set it.
819 // @phan-suppress-next-line PhanTypeMismatchProperty
820 if (!empty($this->cols['photo']) && isset($imglinesize['width']) && isset($imglinesize['height'])) {
821 $pdf->Image($realpatharray[$i], $this->getColumnContentXStart('photo'), $curY + $imageTopMargin, $imglinesize['width'], $imglinesize['height'], '', '', '', 2, 300); // Use 300 dpi
822 // $pdf->Image does not increase value return by getY, so we save it manually
823 $posYAfterImage = $curY + $imglinesize['height'];
824
825 $this->setAfterColsLinePositionsData('photo', $posYAfterImage, $pdf->getPage());
826 }
827 }
828
829 // restore Page orientation for text
830 $pdf->setPageOrientation('', true, $this->heightforfooter); // The only function to edit the bottom margin of current page to set it.
831
832 // Description of product line
833 if ($this->getColumnStatus('desc')) {
834 if ($object->lines[$i]->special_code != SUBTOTALS_SPECIAL_CODE) {
835 $this->printColDescContent($pdf, $curY, 'desc', $object, $i, $outputlangs, $hideref, $hidedesc);
836 $this->setAfterColsLinePositionsData('desc', $pdf->GetY(), $pdf->getPage());
837 } else {
838 $bg_color = colorStringToArray(getDolGlobalString("SUBTOTAL_BACK_COLOR_LEVEL_".abs($object->lines[$i]->qty), 'ffffff'));
839 pdf_render_subtotals($pdf, $this, $curY, $object, $i, $outputlangs, $hideref, $hidedesc, $bg_color, true, true);
840 }
841 }
842
843
844 $afterPosData = $this->getMaxAfterColsLinePositionsData();
845 $pdf->setPage($pageposbefore);
846 $pdf->setTopMargin($this->marge_haute);
847 $curY = $curYBefore;
848 $pdf->setPageOrientation('', false, $this->heightforfooter); // The only function to edit the bottom margin of current page to set it.
849
850 // We suppose that a too long description or photo were moved completely on next page
851 if ($afterPosData['page'] > $pageposbefore && (empty($showpricebeforepagebreak) || ($curY + 4) > ($this->page_hauteur - $this->heightforfooter))) {
852 $pdf->setPage($afterPosData['page']);
853 $curY = $this->tab_top_newpage;
854 }
855
856 $pdf->SetFont('', '', $default_font_size - 1); // We reposition the default font
857
858 // Line position
859 if ($this->getColumnStatus('position')) {
860 $this->printStdColumnContent($pdf, $curY, 'position', strval($linePosition));
861 }
862
863 // VAT Rate
864 if ($this->getColumnStatus('vat') && $object->lines[$i]->special_code != SUBTOTALS_SPECIAL_CODE) {
865 $vat_rate = pdf_getlinevatrate($object, $i, $outputlangs, $hidedetails);
866 $this->printStdColumnContent($pdf, $curY, 'vat', $vat_rate);
867 }
868
869 // Unit price before discount
870 if ($this->getColumnStatus('subprice') && $object->lines[$i]->special_code != SUBTOTALS_SPECIAL_CODE && isset($pdf_sub_options['titleshowuponpdf'])) {
871 $up_excl_tax = pdf_getlineupexcltax($object, $i, $outputlangs, $hidedetails);
872 $this->printStdColumnContent($pdf, $curY, 'subprice', $up_excl_tax);
873 }
874
875 // Quantity
876 // Enough for 6 chars
877 if ($this->getColumnStatus('qty') && $object->lines[$i]->special_code != SUBTOTALS_SPECIAL_CODE) {
878 $qty = pdf_getlineqty($object, $i, $outputlangs, $hidedetails);
879 $this->printStdColumnContent($pdf, $curY, 'qty', $qty);
880 }
881
882 // Situation progress
883 if ($this->getColumnStatus('progress') && $object->lines[$i]->special_code != SUBTOTALS_SPECIAL_CODE) {
884 $progress = pdf_getlineprogress($object, $i, $outputlangs, $hidedetails);
885 $this->printStdColumnContent($pdf, $curY, 'progress', $progress);
886 }
887
888 // Unit
889 if ($this->getColumnStatus('unit') && $object->lines[$i]->special_code != SUBTOTALS_SPECIAL_CODE) {
890 $unit = pdf_getlineunit($object, $i, $outputlangs, $hidedetails);
891 $this->printStdColumnContent($pdf, $curY, 'unit', $unit);
892 }
893
894 // Discount on line
895 if ($this->getColumnStatus('discount') && $object->lines[$i]->remise_percent && $object->lines[$i]->special_code != SUBTOTALS_SPECIAL_CODE) {
896 $remise_percent = pdf_getlineremisepercent($object, $i, $outputlangs, $hidedetails);
897 $this->printStdColumnContent($pdf, $curY, 'discount', $remise_percent);
898 }
899
900 // Total excl tax line (HT)
901 if ($this->getColumnStatus('totalexcltax')) {
902 if ($object->lines[$i]->special_code != SUBTOTALS_SPECIAL_CODE && isset($pdf_sub_options['titleshowtotalexludingvatonpdf'])) {
903 $total_excl_tax = pdf_getlinetotalexcltax($object, $i, $outputlangs, $hidedetails);
904 $this->printStdColumnContent($pdf, $curY, 'totalexcltax', $total_excl_tax);
905 } elseif ($object->lines[$i]->qty < 0 && isset($sub_options['subtotalshowtotalexludingvatonpdf'])) {
906 if (isModEnabled('multicurrency') && $object->multicurrency_code != $conf->currency) {
907 $total_excl_tax = $object->getSubtotalLineMulticurrencyAmount($object->lines[$i]);
908 } else {
909 $total_excl_tax = $object->getSubtotalLineAmount($object->lines[$i]);
910 }
911 $this->printStdColumnContent($pdf, $curY, 'totalexcltax', $total_excl_tax);
912 }
913 }
914
915 // Total with tax line (TTC)
916 if ($this->getColumnStatus('totalincltax')) {
917 $total_incl_tax = pdf_getlinetotalwithtax($object, $i, $outputlangs, $hidedetails);
918 $this->printStdColumnContent($pdf, $curY, 'totalincltax', $total_incl_tax);
919 }
920
921 // Extrafields
922 if (!empty($object->lines[$i]->array_options)) {
923 foreach ($object->lines[$i]->array_options as $extrafieldColKey => $extrafieldValue) {
924 if ($this->getColumnStatus($extrafieldColKey)) {
925 $extrafieldValue = $this->getExtrafieldContent($object->lines[$i], $extrafieldColKey, $outputlangs);
926 $this->printStdColumnContent($pdf, $curY, $extrafieldColKey, $extrafieldValue);
927
928 $this->setAfterColsLinePositionsData('options_' . $extrafieldColKey, $pdf->GetY(), $pdf->getPage());
929 }
930 }
931 }
932
933 $afterPosData = $this->getMaxAfterColsLinePositionsData();
934 $parameters = array(
935 'object' => $object,
936 'i' => $i,
937 'pdf' => & $pdf,
938 'curY' => & $curY,
939 'nexY' => & $afterPosData['y'], // for backward module hook compatibility Y will be accessible by $object->getMaxAfterColsLinePositionsData()
940 'outputlangs' => $outputlangs,
941 'hidedetails' => $hidedetails
942 );
943 $reshook = $hookmanager->executeHooks('printPDFline', $parameters, $this); // Note that $object may have been modified by hook
944 }
945
946 $sign = 1;
947 if (isset($object->type) && $object->type == 2 && getDolGlobalString('INVOICE_POSITIVE_CREDIT_NOTE')) {
948 $sign = -1;
949 }
950 // Collecte des totaux par valeur de tva dans $this->tva["taux"]=total_tva
951 $prev_progress = $object->lines[$i]->get_prev_progress($object->id);
952 // Lines are already stored as delta (not cumulative) once INVOICE_USE_SITUATION=2, so no ratio must be reapplied here (same guard as CommonObject::update_price())
953 if ($prev_progress > 0 && !empty($object->lines[$i]->situation_percent) && getDolGlobalInt('INVOICE_USE_SITUATION') != 2) { // Compute progress from previous situation
954 if (isModEnabled("multicurrency") && $object->multicurrency_tx != 1) {
955 $tvaligne = $sign * $object->lines[$i]->multicurrency_total_tva * ($object->lines[$i]->situation_percent - $prev_progress) / $object->lines[$i]->situation_percent;
956 } else {
957 $tvaligne = $sign * $object->lines[$i]->total_tva * ($object->lines[$i]->situation_percent - $prev_progress) / $object->lines[$i]->situation_percent;
958 }
959 } else {
960 if (isModEnabled("multicurrency") && $object->multicurrency_tx != 1) {
961 $tvaligne = $sign * $object->lines[$i]->multicurrency_total_tva;
962 } else {
963 $tvaligne = $sign * $object->lines[$i]->total_tva;
964 }
965 }
966
967 $localtax1ligne = $object->lines[$i]->total_localtax1;
968 $localtax2ligne = $object->lines[$i]->total_localtax2;
969 $localtax1_rate = $object->lines[$i]->localtax1_tx;
970 $localtax2_rate = $object->lines[$i]->localtax2_tx;
971 $localtax1_type = $object->lines[$i]->localtax1_type;
972 $localtax2_type = $object->lines[$i]->localtax2_type;
973
974 $vatrate = (string) $object->lines[$i]->tva_tx;
975
976 // Retrieve type from database for backward compatibility with old records
977 if ((!isset($localtax1_type) || $localtax1_type == '' || !isset($localtax2_type) || $localtax2_type == '') // if tax type not defined
978 && (!empty($localtax1_rate) || !empty($localtax2_rate))) { // and there is local tax
979 $localtaxtmp_array = getLocalTaxesFromRate($vatrate, 0, $object->thirdparty, $mysoc);
980 $localtax1_type = isset($localtaxtmp_array[0]) ? $localtaxtmp_array[0] : '';
981 $localtax2_type = isset($localtaxtmp_array[2]) ? $localtaxtmp_array[2] : '';
982 }
983
984 // retrieve global local tax
985 if ($localtax1_type && $localtax1ligne != 0) {
986 if (empty($this->localtax1[$localtax1_type][$localtax1_rate])) {
987 $this->localtax1[$localtax1_type][$localtax1_rate] = $localtax1ligne;
988 } else {
989 $this->localtax1[$localtax1_type][$localtax1_rate] += $localtax1ligne;
990 }
991 }
992 if ($localtax2_type && $localtax2ligne != 0) {
993 if (empty($this->localtax2[$localtax2_type][$localtax2_rate])) {
994 $this->localtax2[$localtax2_type][$localtax2_rate] = $localtax2ligne;
995 } else {
996 $this->localtax2[$localtax2_type][$localtax2_rate] += $localtax2ligne;
997 }
998 }
999
1000 if (($object->lines[$i]->info_bits & 0x01) == 0x01) {
1001 $vatrate .= '*';
1002 }
1003
1004 // Fill $this->tva and $this->tva_array
1005 if (!isset($this->tva[$vatrate])) {
1006 $this->tva[$vatrate] = 0;
1007 }
1008 $this->tva[$vatrate] += $tvaligne; // ->tva is abandoned, we use now ->tva_array that is more complete
1009 $vatcode = $object->lines[$i]->vat_src_code;
1010 if (empty($this->tva_array[$vatrate.($vatcode ? ' ('.$vatcode.')' : '')]['amount'])) {
1011 $this->tva_array[$vatrate.($vatcode ? ' ('.$vatcode.')' : '')]['amount'] = 0;
1012 }
1013 if (getDolGlobalInt('PDF_INVOICE_SHOW_VAT_ANALYSIS')) {
1014 if (empty($this->tva_array[$vatrate.($vatcode ? ' ('.$vatcode.')' : '')]['tot_ht'])) {
1015 $this->tva_array[$vatrate . ($vatcode ? ' (' . $vatcode . ')' : '')]['tot_ht'] = 0;
1016 }
1017 $this->tva_array[$vatrate.($vatcode ? ' ('.$vatcode.')' : '')] = array('vatrate' => $vatrate, 'vatcode' => $vatcode, 'amount' => $this->tva_array[$vatrate.($vatcode ? ' ('.$vatcode.')' : '')]['amount'] + $tvaligne, 'tot_ht' => $this->tva_array[$vatrate.($vatcode ? ' ('.$vatcode.')' : '')]['tot_ht'] + $object->lines[$i]->total_ht);
1018 } else {
1019 $this->tva_array[$vatrate.($vatcode ? ' ('.$vatcode.')' : '')] = array('vatrate' => $vatrate, 'vatcode' => $vatcode, 'amount' => $this->tva_array[$vatrate.($vatcode ? ' ('.$vatcode.')' : '')]['amount'] + $tvaligne);
1020 }
1021
1022 if (!$hidenextline) {
1023 $afterPosData = $this->getMaxAfterColsLinePositionsData();
1024 $pdf->setPage($afterPosData['page']);
1025 $nexY = $afterPosData['y'];
1026
1027 // Add line
1028 if (getDolGlobalString('MAIN_PDF_DASH_BETWEEN_LINES') && $i < ($nblines - 1) && $afterPosData['y'] < $this->page_hauteur - $this->heightforfooter - 5) {
1029 $pdf->SetLineStyle(array('dash' => '1,1', 'color' => array(80, 80, 80)));
1030 //$pdf->SetDrawColor(190,190,200);
1031 $pdf->line($this->marge_gauche, $nexY, $this->page_largeur - $this->marge_droite, $nexY);
1032 $pdf->SetLineStyle(array('dash' => 0));
1033 }
1034 }
1035
1036 if ($object->lines[$i]->special_code == SUBTOTALS_SPECIAL_CODE && (isset($sub_options['titleshowuponpdf']) || isset($sub_options['titleshowtotalexludingvatonpdf'])) && getDolGlobalString('SUBTOTAL_HIDE_LINES_UNDER_TITLE')) { // TODO Use $sub_options['titlehidelinesundertitle'] instead of SUBTOTAL_HIDE_LINES_UNDER_TITLE
1037 $hidenextline = 1;
1038 }
1039
1040 $nexY += 0; // Add space between lines
1041 }
1042
1043 // Add last page for document footer if there are not enough size left
1044 $afterPosData = $this->getMaxAfterColsLinePositionsData();
1045 $page_bottom_margin = $this->heightforfooter + $this->heightforfreetext + $this->heightforinfotot + $this->getHeightForQRInvoice($pdf->getPage(), $object, $langs);
1046
1047 if (isset($afterPosData['y']) && $afterPosData['y'] > $this->page_hauteur - $page_bottom_margin) {
1048 $pdf->AddPage();
1049 if (!empty($tplidx)) {
1050 $pdf->useTemplate($tplidx);
1051 }
1052 $pagenb++;
1053 $pdf->setPage($pagenb);
1054 }
1055
1056 // Draw table frames and columns borders
1057 $drawTabNumbPage = $pdf->getNumPages();
1058 for ($i = $pageposbeforeprintlines; $i <= $drawTabNumbPage; $i++) {
1059 $pdf->setPage($i);
1060 // reset page orientation each loop to override it if it was changed
1061 $pdf->setPageOrientation('', false, 0); // The only function to edit the bottom margin of current page to set it.
1062
1063 $drawTabHideTop = $hidetop;
1064 $drawTabTop = $this->tab_top_newpage;
1065 $drawTabBottom = $this->page_hauteur - $this->heightforfooter;
1066 $hideBottom = 0; // TODO understand why it change to 1 or 0 during process
1067
1068 if ($i == $pageposbeforeprintlines) {
1069 // first page need to start after notes
1070 $drawTabTop = $this->tab_top;
1071 } elseif (!$drawTabHideTop) {
1072 if (getDolGlobalInt('MAIN_PDF_ENABLE_COL_HEAD_TITLE_REPEAT')) {
1073 $drawTabTop -= $this->tabTitleHeight;
1074 } else {
1075 $drawTabHideTop = 1;
1076 }
1077 }
1078
1079 // last page need to include document footer
1080 if ($i == $pdf->getNumPages()) {
1081 // remove document footer height to tab bottom position
1082 $drawTabBottom -= $this->heightforfreetext + $this->heightforinfotot + $this->getHeightForQRInvoice($pdf->getPage(), $object, $outputlangs);
1083 }
1084
1085 $drawTabHeight = $drawTabBottom - $drawTabTop;
1086 $this->_tableau($pdf, $drawTabTop, $drawTabHeight, 0, $outputlangs, $drawTabHideTop, $hideBottom, $object, $outputlangsbis);
1087
1088 $hideFreeText = $i != $pdf->getNumPages() ? 1 : 0; // Display free text only in last page
1089
1090 $this->_pagefoot($pdf, $object, $outputlangs, $hideFreeText, $this->getHeightForQRInvoice($pdf->getPage(), $object, $outputlangs));
1091
1092 $pdf->setPage($i); // in case of _pagefoot or _tableau change it
1093
1094 // reset page orientation each loop to override it if it was changed by _pagefoot or _tableau change it
1095 $pdf->setPageOrientation('', true, 0); // The only function to edit the bottom margin of current page to set it.
1096
1097 // Don't print head on first page ($pageposbeforeprintlines) because already added previously
1098 if (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD') && $i != $pageposbeforeprintlines) {
1099 $this->_pagehead($pdf, $object, 0, $outputlangs);
1100 }
1101 if (!empty($tplidx)) {
1102 $pdf->useTemplate($tplidx);
1103 }
1104 }
1105
1106
1107 // reset text color before print footers
1108 $pdf->SetTextColor(0, 0, 0);
1109
1110 $pdf->setPage($pdf->getNumPages());
1111
1112 $bottomlasttab = $this->page_hauteur - $this->heightforinfotot - $this->heightforfreetext - $this->heightforfooter - $heightforqrinvoice + 1;
1113
1114 // Display infos area
1115 $posy = $this->drawInfoTable($pdf, $object, $bottomlasttab, $outputlangs, $outputlangsbis);
1116
1117 // Display total zone
1118 $posy = $this->drawTotalTable($pdf, $object, $deja_regle, $bottomlasttab, $outputlangs, $outputlangsbis);
1119
1120 // Display payment area
1121 $listofpayments = $object->getListOfPayments('', 0, 1);
1122 if ((count($listofpayments) || $amount_credit_notes_included || $amount_deposits_included) && !getDolGlobalString('INVOICE_NO_PAYMENT_DETAILS')) {
1123 $posy = $this->drawPaymentsTable($pdf, $object, $posy, $outputlangs);
1124 }
1125
1126 // Add number of pages in footer
1127 if (method_exists($pdf, 'AliasNbPages')) {
1128 $pdf->AliasNbPages(); // @phan-suppress-current-line PhanUndeclaredMethod
1129 }
1130
1131 // Add terms to sale
1132 $termsofsalefilename = getDolGlobalString('MAIN_INFO_INVOICE_TERMSOFSALE');
1133 if (getDolGlobalInt('MAIN_PDF_ADD_TERMSOFSALE_INVOICE') && $termsofsalefilename) {
1134 $termsofsale = $conf->invoice->dir_output.'/'.$termsofsalefilename;
1135 if (!empty($conf->invoice->multidir_output[$object->entity ?? $conf->entity])) {
1136 $termsofsale = $conf->invoice->multidir_output[$object->entity ?? $conf->entity].'/'.$termsofsalefilename;
1137 }
1138
1139 if (file_exists($termsofsale) && is_readable($termsofsale)) {
1140 $pagecount = $pdf->setSourceFile($termsofsale);
1141 for ($i = 1; $i <= $pagecount; $i++) {
1142 $tplIdx = $pdf->importPage($i);
1143 if ($tplIdx !== false) {
1144 $s = $pdf->getTemplatesize($tplIdx);
1145 $pdf->AddPage($s['h'] > $s['w'] ? 'P' : 'L');
1146 $pdf->useTemplate($tplIdx);
1147 } else {
1148 setEventMessages(null, array($termsofsale.' cannot be added, probably protected PDF'), 'warnings');
1149 }
1150 }
1151 }
1152 }
1153
1154 if (getDolGlobalString('INVOICE_ADD_SWISS_QR_CODE') == 'bottom') {
1155 $this->addBottomQRInvoice($pdf, $object, $outputlangs);
1156 }
1157
1158 $pdf->Close();
1159
1160 $pdf->Output($file, 'F');
1161
1162 // Add pdfgeneration hook
1163 $hookmanager->initHooks(array('pdfgeneration'));
1164 $parameters = array('file' => $file, 'object' => $object, 'outputlangs' => $outputlangs);
1165 global $action;
1166 $reshook = $hookmanager->executeHooks('afterPDFCreation', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
1167 $this->warnings = $hookmanager->warnings;
1168 if ($reshook < 0) {
1169 $this->error = $hookmanager->error;
1170 $this->errors = $hookmanager->errors;
1171 dolChmod($file);
1172 return -1;
1173 }
1174
1175 dolChmod($file);
1176
1177 $this->result = array('fullpath' => $file);
1178
1179 return 1; // No error
1180 } else {
1181 $this->error = $langs->transnoentities("ErrorCanNotCreateDir", $dir);
1182 return 0;
1183 }
1184 } else {
1185 $this->error = $langs->transnoentities("ErrorConstantNotDefined", "FAC_OUTPUTDIR");
1186 return 0;
1187 }
1188 }
1189
1190
1200 public function drawPaymentsTable(&$pdf, $object, $posy, $outputlangs)
1201 {
1202 $sign = 1;
1203 if ($object->type == 2 && getDolGlobalString('INVOICE_POSITIVE_CREDIT_NOTE')) {
1204 $sign = -1;
1205 }
1206
1207 $tab3_posx = 120;
1208 $tab3_top = $posy + 8;
1209 $tab3_width = 80;
1210 $tab3_height = 4;
1211 if ($this->page_largeur < 210) { // To work with US executive format
1212 $tab3_posx -= 15;
1213 }
1214
1215 $default_font_size = pdf_getPDFFontSize($outputlangs);
1216
1217 $title = $outputlangs->transnoentities("PaymentsAlreadyDone");
1218 if ($object->type == 2) {
1219 $title = $outputlangs->transnoentities("PaymentsBackAlreadyDone");
1220 }
1221
1222 $pdf->SetFont('', '', $default_font_size - 3);
1223 $pdf->SetXY($tab3_posx, $tab3_top - 4);
1224 $pdf->MultiCell(60, 3, $title, 0, 'L', false);
1225
1226 $pdf->line($tab3_posx, $tab3_top, $tab3_posx + $tab3_width, $tab3_top);
1227
1228 $pdf->SetFont('', '', $default_font_size - 4);
1229 $pdf->SetXY($tab3_posx, $tab3_top);
1230 $pdf->MultiCell(20, 3, $outputlangs->transnoentities("Payment"), 0, 'L', false);
1231 $pdf->SetXY($tab3_posx + 21, $tab3_top);
1232 $pdf->MultiCell(20, 3, $outputlangs->transnoentities("Amount"), 0, 'L', false);
1233 $pdf->SetXY($tab3_posx + 40, $tab3_top);
1234 $pdf->MultiCell(20, 3, $outputlangs->transnoentities("Type"), 0, 'L', false);
1235 $pdf->SetXY($tab3_posx + 58, $tab3_top);
1236 $pdf->MultiCell(20, 3, $outputlangs->transnoentities("Num"), 0, 'L', false);
1237
1238 $pdf->line($tab3_posx, $tab3_top - 1 + $tab3_height, $tab3_posx + $tab3_width, $tab3_top - 1 + $tab3_height);
1239
1240 $y = 0;
1241
1242 $pdf->SetFont('', '', $default_font_size - 4);
1243
1244
1245 // Loop on each discount available (deposits and credit notes and excess of payment included)
1246 $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,";
1247 $sql .= " re.description, re.fk_facture_source,";
1248 $sql .= " f.type, f.datef";
1249 $sql .= " FROM ".MAIN_DB_PREFIX."societe_remise_except as re, ".MAIN_DB_PREFIX."facture as f";
1250 $sql .= " WHERE re.fk_facture_source = f.rowid AND re.fk_facture = ".((int) $object->id);
1251 $resql = $this->db->query($sql);
1252 if ($resql) {
1253 $num = $this->db->num_rows($resql);
1254 $i = 0;
1255 $invoice = new Facture($this->db);
1256 while ($i < $num) {
1257 $y += 3;
1258 $obj = $this->db->fetch_object($resql);
1259
1260 if ($obj->type == 2) {
1261 $text = $outputlangs->transnoentities("CreditNote");
1262 } elseif ($obj->type == 3) {
1263 $text = $outputlangs->transnoentities("Deposit");
1264 } elseif ($obj->type == 0) {
1265 $text = $outputlangs->transnoentities("ExcessReceived");
1266 } else {
1267 $text = $outputlangs->transnoentities("UnknownType");
1268 }
1269
1270 $invoice->fetch($obj->fk_facture_source);
1271
1272 $pdf->SetXY($tab3_posx, $tab3_top + $y);
1273 $pdf->MultiCell(20, 3, dol_print_date($this->db->jdate($obj->datef), 'day', false, $outputlangs, true), 0, 'L', false);
1274 $pdf->SetXY($tab3_posx + 21, $tab3_top + $y);
1275 $pdf->MultiCell(20, 3, price((isModEnabled("multicurrency") && $object->multicurrency_tx != 1) ? $obj->multicurrency_amount_ttc : $obj->amount_ttc, 0, $outputlangs), 0, 'L', false);
1276 $pdf->SetXY($tab3_posx + 40, $tab3_top + $y);
1277 $pdf->MultiCell(20, 3, $text, 0, 'L', false);
1278 $pdf->SetXY($tab3_posx + 58, $tab3_top + $y);
1279 $pdf->MultiCell(20, 3, $invoice->ref, 0, 'L', false);
1280
1281 $pdf->line($tab3_posx, $tab3_top + $y + 3, $tab3_posx + $tab3_width, $tab3_top + $y + 3);
1282
1283 $i++;
1284 }
1285 } else {
1286 $this->error = $this->db->lasterror();
1287 return -1;
1288 }
1289
1290 // Loop on each payment
1291 // TODO Call getListOfPayments instead of hard coded sql
1292 $sql = "SELECT p.datep as date, p.fk_paiement, p.num_paiement as num, pf.amount as amount, pf.multicurrency_amount,";
1293 $sql .= " cp.code";
1294 $sql .= " FROM ".MAIN_DB_PREFIX."paiement_facture as pf, ".MAIN_DB_PREFIX."paiement as p";
1295 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."c_paiement as cp ON p.fk_paiement = cp.id";
1296 $sql .= " WHERE pf.fk_paiement = p.rowid AND pf.fk_facture = ".((int) $object->id);
1297 //$sql.= " WHERE pf.fk_paiement = p.rowid AND pf.fk_facture = 1";
1298 $sql .= " ORDER BY p.datep";
1299
1300 $resql = $this->db->query($sql);
1301 if ($resql) {
1302 $num = $this->db->num_rows($resql);
1303 $i = 0;
1304 $y += 3;
1305 $maxY = $y;
1306 while ($i < $num) {
1307 $row = $this->db->fetch_object($resql);
1308 $pdf->SetXY($tab3_posx, $tab3_top + $y);
1309 $pdf->MultiCell(20, 3, dol_print_date($this->db->jdate($row->date), 'day', false, $outputlangs, true), 0, 'L', false);
1310 $pdf->SetXY($tab3_posx + 21, $tab3_top + $y);
1311 $pdf->MultiCell(20, 3, price($sign * ((isModEnabled("multicurrency") && $object->multicurrency_tx != 1) ? $row->multicurrency_amount : $row->amount), 0, $outputlangs), 0, 'L', false);
1312 $pdf->SetXY($tab3_posx + 40, $tab3_top + $y);
1313 $oper = $outputlangs->transnoentitiesnoconv("PaymentTypeShort".$row->code);
1314
1315 $pdf->MultiCell(20, 3, $oper, 0, 'L', false);
1316 $maxY = max($pdf->GetY() - $tab3_top - 3, $maxY);
1317 $pdf->SetXY($tab3_posx + 58, $tab3_top + $y);
1318 $pdf->MultiCell(30, 3, $row->num, 0, 'L', false);
1319 $y = $maxY = max($pdf->GetY() - 3 - $tab3_top, $maxY);
1320 $pdf->line($tab3_posx, $tab3_top + $y + 3, $tab3_posx + $tab3_width, $tab3_top + $y + 3);
1321 $y += 3;
1322 $i++;
1323 }
1324
1325 return $tab3_top + $y + 3;
1326 } else {
1327 $this->error = $this->db->lasterror();
1328 return -1;
1329 }
1330 }
1331
1332
1343 protected function drawInfoTable(&$pdf, $object, $posy, $outputlangs, $outputlangsbis)
1344 {
1345 global $mysoc;
1346
1347 $default_font_size = pdf_getPDFFontSize($outputlangs);
1348
1349 $pdf->SetFont('', '', $default_font_size - 1);
1350
1351 krsort($this->tva_array);
1352
1353 // Clean data type
1354 $object->total_tva = (float) $object->total_tva;
1355
1356 // Show VAT details
1357 if ($object->total_tva != 0 && getDolGlobalInt('PDF_INVOICE_SHOW_VAT_ANALYSIS')) {
1358 $pdf->SetFillColor(224, 224, 224);
1359
1360 $pdf->SetFont('', '', $default_font_size - 2);
1361 $pdf->SetXY($this->marge_gauche, $posy);
1362 $titre = $outputlangs->transnoentities("VAT");
1363 $pdf->MultiCell(25, 4, $titre, 0, 'L', true);
1364
1365 $pdf->SetFont('', '', $default_font_size - 2);
1366 $pdf->SetXY($this->marge_gauche + 25, $posy);
1367 $titre = $outputlangs->transnoentities("NetTotal");
1368 $pdf->MultiCell(25, 4, $titre, 0, 'L', true);
1369
1370 $pdf->SetFont('', '', $default_font_size - 2);
1371 $pdf->SetXY($this->marge_gauche + 50, $posy);
1372 $titre = $outputlangs->transnoentities("VATAmount");
1373 $pdf->MultiCell(25, 4, $titre, 0, 'L', true);
1374
1375 $pdf->SetFont('', '', $default_font_size - 2);
1376 $pdf->SetXY($this->marge_gauche + 75, $posy);
1377 $titre = $outputlangs->transnoentities("AmountTotal");
1378 $pdf->MultiCell(25, 4, $titre, 0, 'L', true);
1379
1380 $posy = $pdf->GetY();
1381 $tot_ht = 0;
1382 $tot_tva = 0;
1383 $tot_ttc = 0;
1384
1385 foreach ($this->tva_array as $tvakey => $tvaval) {
1386 $pdf->SetFont('', '', $default_font_size - 2);
1387 $pdf->SetXY($this->marge_gauche, $posy);
1388 $titre = round((float) $tvakey, 2) . "%";
1389 $pdf->MultiCell(25, 4, $titre, 0, 'L');
1390
1391 $pdf->SetFont('', '', $default_font_size - 2);
1392 $pdf->SetXY($this->marge_gauche + 25, $posy);
1393 $titre = price($tvaval['tot_ht']);
1394 $pdf->MultiCell(25, 4, $titre, 0, 'L');
1395 $tot_ht += $tvaval['tot_ht'];
1396
1397 $pdf->SetFont('', '', $default_font_size - 2);
1398 $pdf->SetXY($this->marge_gauche + 50, $posy);
1399 $titre = price($tvaval['amount']);
1400 $pdf->MultiCell(25, 4, $titre, 0, 'L');
1401 $tot_tva += $tvaval['amount'];
1402
1403 $pdf->SetFont('', '', $default_font_size - 2);
1404 $pdf->SetXY($this->marge_gauche + 75, $posy);
1405 $titre = price($tvaval['tot_ht'] + $tvaval['amount']);
1406 $pdf->MultiCell(25, 4, $titre, 0, 'L');
1407 $tot_ttc += ($tvaval['tot_ht'] + $tvaval['amount']);
1408
1409 $posy = $pdf->GetY();
1410 }
1411 }
1412
1413 // If France, show VAT mention if applicable
1414 $showvatmention = 0;
1415 if (in_array($this->emetteur->country_code, array('FR')) && empty($object->total_tva)) {
1416 $pdf->SetFont('', '', $default_font_size - 2);
1417 $pdf->SetXY($this->marge_gauche, $posy);
1418 if (empty($mysoc->tva_assuj)) {
1419 if ($mysoc->forme_juridique_code == 92) {
1420 $pdf->MultiCell(100, 3, $outputlangs->transnoentities("VATIsNotUsedForInvoiceAsso"), 0, 'L', false);
1421 } else {
1422 $pdf->MultiCell(100, 3, $outputlangs->transnoentities("VATIsNotUsedForInvoice"), 0, 'L', false);
1423 }
1424 $showvatmention++;
1425 } elseif (getDolGlobalString("INVOICE_VAT_SHOW_REVERSE_CHARGE_MENTION") && $this->emetteur->country_code != $object->thirdparty->country_code && $this->emetteur->isInEEC() && $object->thirdparty->isInEEC()) {
1426 $pdf->MultiCell(100, 3, $outputlangs->transnoentities("VATIsNotUsedReverseChargeProcedure"), 0, 'L', false);
1427 $showvatmention++;
1428 }
1429 $posy = $pdf->GetY();
1430 }
1431
1432 $showvatmention += pdfCertifMention($pdf, $outputlangs, $this->emetteur, $default_font_size, $posy, $this);
1433
1434 if ($showvatmention) {
1435 $posy += 3;
1436 }
1437
1438 $posxval = 52; // Position of values of properties shown on left side
1439 $posxend = 110; // End of x for text on left side
1440 if ($this->page_largeur < 210) { // To work with US executive format
1441 $posxend -= 10;
1442 }
1443
1444 // Show previous and new balance
1445 if ($object->status > Facture::STATUS_DRAFT && getDolGlobalInt('PDF_INVOICE_SHOW_BALANCE_SUMMARY')) {
1446 // All customer previous invoices
1447 $sql = "SELECT f.rowid, f.datef, f.total_ttc";
1448 $sql .= " FROM " . MAIN_DB_PREFIX . "facture as f";
1449 $sql .= " WHERE f.fk_soc = " . ((int) $object->socid);
1450 $sql .= " AND f.entity IN (" . getEntity('invoice') . ")";
1451 $sql .= " AND f.datef <= '" . $this->db->idate($object->date) . "'";
1452 $sql .= " AND f.rowid < " . ((int) $object->id);
1453 $sql .= " AND f.fk_statut > 0";
1454 $sql .= " ORDER BY f.datef ASC";
1455
1456 $old_balance = 0;
1457 $invoices = array();
1458 $resql = $this->db->query($sql);
1459 if ($resql) {
1460 while ($obj = $this->db->fetch_object($resql)) {
1461 $invoices[] = $obj;
1462 $old_balance += $obj->total_ttc;
1463 }
1464 $this->db->free($resql);
1465 }
1466
1467 // All payments before current date
1468 $sql_payments = "SELECT p.datep, pf.fk_facture, pf.amount";
1469 $sql_payments .= " FROM " . MAIN_DB_PREFIX . "paiement_facture as pf";
1470 $sql_payments .= " INNER JOIN " . MAIN_DB_PREFIX . "paiement as p ON p.rowid = pf.fk_paiement";
1471 $sql_payments .= " INNER JOIN " . MAIN_DB_PREFIX . "facture as f ON f.rowid = pf.fk_facture";
1472 $sql_payments .= " WHERE f.fk_soc = " . ((int) $object->socid);
1473 $sql_payments .= " AND p.datep < '" . $this->db->idate($object->date) . "'";
1474 $sql_payments .= " ORDER BY p.datep ASC";
1475
1476 $total_payments = 0;
1477 $resql_payments = $this->db->query($sql_payments);
1478 if ($resql_payments) {
1479 while ($obj_payment = $this->db->fetch_object($resql_payments)) {
1480 $total_payments += $obj_payment->amount;
1481 }
1482 $this->db->free($resql_payments);
1483 }
1484
1485 // Payments made on current invoice date (including current invoice)
1486 $sql_current_date_payments = "SELECT p.datep, pf.fk_facture, pf.amount";
1487 $sql_current_date_payments .= " FROM " . MAIN_DB_PREFIX . "paiement_facture as pf";
1488 $sql_current_date_payments .= " INNER JOIN " . MAIN_DB_PREFIX . "paiement as p ON p.rowid = pf.fk_paiement";
1489 $sql_current_date_payments .= " INNER JOIN " . MAIN_DB_PREFIX . "facture as f ON f.rowid = pf.fk_facture";
1490 $sql_current_date_payments .= " WHERE f.fk_soc = " . ((int) $object->socid);
1491 $sql_current_date_payments .= " AND DATE(p.datep) = DATE('" . $this->db->idate($object->date) . "')";
1492
1493 $current_date_payments = 0;
1494 $resql_current_date = $this->db->query($sql_current_date_payments);
1495 if ($resql_current_date) {
1496 while ($obj_current = $this->db->fetch_object($resql_current_date)) {
1497 $current_date_payments += $obj_current->amount;
1498 }
1499 $this->db->free($resql_current_date);
1500 }
1501
1502 // Previous balance
1503 $old_balance -= $total_payments;
1504
1505 // New balance
1506 $new_balance = $old_balance + $object->total_ttc - $current_date_payments;
1507
1508 $pdf->SetFillColor(224, 224, 224);
1509 $pdf->SetFont('', '', $default_font_size - 2);
1510 $pdf->SetXY($this->marge_gauche, $posy);
1511 $titre = $outputlangs->transnoentities("PreviousBalance").' : '.price($old_balance);
1512 $pdf->MultiCell($posxval - $this->marge_gauche + 8, 4, $titre, 0, 'L', true);
1513
1514 $pdf->SetFont('', '', $default_font_size - 2);
1515 $pdf->SetXY($posxval + 8, $posy);
1516 $titre = $outputlangs->transnoentities("NewBalance").' : '.price($new_balance);
1517 $pdf->MultiCell($posxend - $posxval - 8, 4, $titre, 0, 'L', true);
1518
1519 $posy = $pdf->GetY() + 1;
1520 }
1521
1522 // Show payments conditions
1523 if ($object->type != 2 && $object->cond_reglement_code) {
1524 $pdf->SetFont('', '', $default_font_size - 2);
1525 $pdf->SetXY($this->marge_gauche, $posy);
1526 $titre = $outputlangs->transnoentities("PaymentConditions").':';
1527 $pdf->MultiCell($posxval - $this->marge_gauche, 4, $titre, 0, 'L');
1528
1529 $pdf->SetFont('', '', $default_font_size - 2);
1530 $pdf->SetXY($posxval, $posy);
1531 $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);
1532 $lib_condition_paiement = str_replace('\n', "\n", $lib_condition_paiement);
1533 $pdf->MultiCell($posxend - $posxval, 4, $lib_condition_paiement, 0, 'L');
1534
1535 $posy = $pdf->GetY() + 3; // We need spaces for 2 lines payment conditions
1536 }
1537
1538 // Show category of operations
1539 if (getDolGlobalInt('INVOICE_CATEGORY_OF_OPERATION') == 2 && $this->categoryOfOperation >= 0) {
1540 $pdf->SetFont('', '', $default_font_size - 2);
1541 $pdf->SetXY($this->marge_gauche, $posy);
1542 $categoryOfOperationTitle = $outputlangs->transnoentities("MentionCategoryOfOperations").' : ';
1543 $pdf->MultiCell($posxval - $this->marge_gauche, 4, $categoryOfOperationTitle, 0, 'L');
1544
1545 $pdf->SetFont('', '', $default_font_size - 2);
1546 $pdf->SetXY($posxval, $posy);
1547 $categoryOfOperationLabel = $outputlangs->transnoentities("MentionCategoryOfOperations" . $this->categoryOfOperation);
1548 $pdf->MultiCell($posxend - $posxval, 4, $categoryOfOperationLabel, 0, 'L');
1549
1550 $posy = $pdf->GetY() + 3; // for 2 lines
1551 }
1552
1553 if ($object->type != 2) {
1554 // Check a payment mode is defined
1555 if (empty($object->mode_reglement_code)
1556 && !getDolGlobalInt('FACTURE_CHQ_NUMBER')
1557 && !getDolGlobalInt('FACTURE_RIB_NUMBER')) {
1558 $this->error = $outputlangs->transnoentities("ErrorNoPaiementModeConfigured");
1559 } elseif (($object->mode_reglement_code == 'CHQ' && !getDolGlobalInt('FACTURE_CHQ_NUMBER') && empty($object->fk_account) && empty($object->fk_bank))
1560 || ($object->mode_reglement_code == 'VIR' && !getDolGlobalInt('FACTURE_RIB_NUMBER') && empty($object->fk_account) && empty($object->fk_bank))) {
1561 // Avoid having any valid PDF with setup that is not complete
1562 $outputlangs->load("errors");
1563
1564 $pdf->SetXY($this->marge_gauche, $posy);
1565 $pdf->SetTextColor(200, 0, 0);
1566 $pdf->SetFont('', '', $default_font_size - 2);
1567 $this->error = $outputlangs->transnoentities("ErrorPaymentModeDefinedToWithoutSetup", $object->mode_reglement_code);
1568 $pdf->MultiCell($posxend - $this->marge_gauche, 3, $this->error, 0, 'L', false);
1569 $pdf->SetTextColor(0, 0, 0);
1570
1571 $posy = $pdf->GetY() + 1;
1572 }
1573
1574 // Show payment mode
1575 if (!empty($object->mode_reglement_code)
1576 && $object->mode_reglement_code != 'CHQ'
1577 && $object->mode_reglement_code != 'VIR') {
1578 $pdf->SetFont('', '', $default_font_size - 2);
1579 $pdf->SetXY($this->marge_gauche, $posy);
1580 $titre = $outputlangs->transnoentities("PaymentMode").':';
1581 $pdf->MultiCell($posxend - $this->marge_gauche, 5, $titre, 0, 'L');
1582
1583 $pdf->SetFont('', '', $default_font_size - 2);
1584 $pdf->SetXY($posxval, $posy);
1585 $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);
1586
1587 //#21654: add account number used for the debit
1588 if ($object->mode_reglement_code == "PRE") {
1589 require_once DOL_DOCUMENT_ROOT.'/societe/class/companybankaccount.class.php';
1590 $bac = new CompanyBankAccount($this->db);
1591 // @phan-suppress-next-line PhanPluginSuspiciousParamPosition
1592 $bac->fetch(0, '', $object->thirdparty->id);
1593 $iban = $bac->iban.(($bac->iban && $bac->bic) ? ' / ' : '').$bac->bic;
1594 $lib_mode_reg .= ' '.$outputlangs->trans("PaymentTypePREdetails", dol_trunc($iban, 6, 'right', 'UTF-8', 1));
1595 }
1596
1597 $pdf->MultiCell($posxend - $posxval, 5, $lib_mode_reg, 0, 'L');
1598
1599 $posy = $pdf->GetY();
1600 }
1601
1602 // Show if Option VAT debit option is on also if transmitter is french
1603 // Decret n°2099-1299 2022-10-07
1604 // French mention : "Option pour le paiement de la taxe d'après les débits"
1605 if ($this->emetteur->country_code == 'FR') {
1606 if (getDolGlobalInt('TAX_MODE') == 1) {
1607 $pdf->SetXY($this->marge_gauche, $posy);
1608 $pdf->writeHTMLCell(80, 5, null, null, $outputlangs->transnoentities("MentionVATDebitOptionIsOn"), 0, 1);
1609
1610 $posy = $pdf->GetY() + 1;
1611 }
1612 }
1613
1614 // Show online payment link
1615 if (empty($object->mode_reglement_code) || $object->mode_reglement_code == 'CB' || $object->mode_reglement_code == 'VAD') {
1616 $useonlinepayment = 0;
1617 if (getDolGlobalString('PDF_SHOW_LINK_TO_ONLINE_PAYMENT')) {
1618 // Show online payment link
1619 // The list can be complete by the hook 'doValidatePayment' executed inside getValidOnlinePaymentMethods()
1620 include_once DOL_DOCUMENT_ROOT.'/core/lib/payments.lib.php';
1621 $validpaymentmethod = getValidOnlinePaymentMethods('');
1622 $useonlinepayment = count($validpaymentmethod);
1623 }
1624
1625
1626 if ($object->status != Facture::STATUS_DRAFT && $useonlinepayment) {
1627 require_once DOL_DOCUMENT_ROOT.'/core/lib/payments.lib.php';
1628 global $langs;
1629
1630 $langs->loadLangs(array('payment', 'stripe'));
1631 $servicename = $langs->transnoentities('Online');
1632 $paiement_url = getOnlinePaymentUrl(0, 'invoice', $object->ref, 0, '', 0);
1633 $linktopay = $langs->trans("ToOfferALinkForOnlinePayment", $servicename).' <a href="'.$paiement_url.'">'.$outputlangs->transnoentities("ClickHere").'</a>';
1634
1635 $pdf->SetXY($this->marge_gauche, $posy);
1636 $pdf->writeHTMLCell($posxend - $this->marge_gauche, 5, null, null, dol_htmlentitiesbr($linktopay), 0, 1);
1637
1638 $posy = $pdf->GetY() + 1;
1639 }
1640 }
1641
1642 // Show payment mode CHQ
1643 if (empty($object->mode_reglement_code) || $object->mode_reglement_code == 'CHQ') {
1644 // If payment mode unregulated or payment mode forced to CHQ
1645 if (getDolGlobalInt('FACTURE_CHQ_NUMBER')) {
1646 $diffsizetitle = getDolGlobalInt('PDF_DIFFSIZE_TITLE', 3);
1647
1648 if (getDolGlobalInt('FACTURE_CHQ_NUMBER') > 0) {
1649 $account = new Account($this->db);
1650 $account->fetch(getDolGlobalInt('FACTURE_CHQ_NUMBER'));
1651
1652 $pdf->SetXY($this->marge_gauche, $posy);
1653 $pdf->SetFont('', 'B', $default_font_size - $diffsizetitle);
1654 $pdf->MultiCell($posxend - $this->marge_gauche, 3, $outputlangs->transnoentities('PaymentByChequeOrderedTo', $account->owner_name), 0, 'L', false);
1655 $posy = $pdf->GetY() + 1;
1656
1657 if (!getDolGlobalString('MAIN_PDF_HIDE_CHQ_ADDRESS')) {
1658 $pdf->SetXY($this->marge_gauche, $posy);
1659 $pdf->SetFont('', '', $default_font_size - $diffsizetitle);
1660 $pdf->MultiCell($posxend - $this->marge_gauche, 3, $outputlangs->convToOutputCharset($account->owner_address), 0, 'L', false);
1661 $posy = $pdf->GetY() + 2;
1662 }
1663 }
1664 if (getDolGlobalInt('FACTURE_CHQ_NUMBER') == -1) {
1665 $pdf->SetXY($this->marge_gauche, $posy);
1666 $pdf->SetFont('', 'B', $default_font_size - $diffsizetitle);
1667 $pdf->MultiCell($posxend - $this->marge_gauche, 3, $outputlangs->transnoentities('PaymentByChequeOrderedTo', $this->emetteur->name), 0, 'L', false);
1668 $posy = $pdf->GetY() + 1;
1669
1670 if (!getDolGlobalString('MAIN_PDF_HIDE_CHQ_ADDRESS')) {
1671 $pdf->SetXY($this->marge_gauche, $posy);
1672 $pdf->SetFont('', '', $default_font_size - $diffsizetitle);
1673 $pdf->MultiCell($posxend - $this->marge_gauche, 3, $outputlangs->convToOutputCharset($this->emetteur->getFullAddress()), 0, 'L', false);
1674 $posy = $pdf->GetY() + 2;
1675 }
1676 }
1677 }
1678 }
1679
1680 // If payment mode not forced or forced to VIR, show payment with BAN
1681 if (empty($object->mode_reglement_code) || $object->mode_reglement_code == 'VIR') {
1682 if ($object->fk_account > 0 || $object->fk_bank > 0 || getDolGlobalInt('FACTURE_RIB_NUMBER')) {
1683 $bankid = ($object->fk_account <= 0 ? getDolGlobalInt('FACTURE_RIB_NUMBER') : (int) $object->fk_account);
1684 if ($object->fk_bank > 0) {
1685 $bankid = $object->fk_bank; // For backward compatibility when object->fk_account is forced with object->fk_bank
1686 }
1687 $account = new Account($this->db);
1688 $account->fetch($bankid);
1689
1690 $curx = $this->marge_gauche;
1691 $cury = $posy;
1692
1693 $posy = pdf_bank($pdf, $outputlangs, $curx, $cury, $account, 0, $default_font_size);
1694
1695 $posy += 2;
1696
1697 // SHOW EPC QR CODE at bottom, but only if unpaid amount exists
1698 if ((getDolGlobalString('INVOICE_ADD_EPC_QR_CODE') == 'bottom') && ($object->getRemainToPay() > 0)) {
1699 $qrPosX = $this->marge_gauche + 5;
1700 $qrPosY = $posy;
1701 $qrCodeColor = array('25', '25', '25');
1702 $styleQr = array(
1703 'border' => false,
1704 'padding' => 0,
1705 'fgcolor' => $qrCodeColor,
1706 'bgcolor' => false, //array(255,255,255)
1707 'module_width' => 1, // width of a single module in points
1708 'module_height' => 1 // height of a single module in points
1709 );
1710
1711 $EPCQrCodeString = $object->buildEPCQrCodeString();
1712 $pdf->write2DBarcode($EPCQrCodeString, 'QRCODE,M', $qrPosX, $qrPosY, 20, 20, $styleQr, 'N');
1713
1714 $pdf->SetXY($qrPosX + 25, $qrPosY + 5);
1715 $pdf->SetFont('', '', $default_font_size - 5);
1716 $pdf->MultiCell(30, 3, $outputlangs->transnoentitiesnoconv("INVOICE_ADD_EPC_QR_CODEPay"), 0, 'L', false);
1717 $posy = $pdf->GetY() + 2;
1718 }
1719
1720 // Show structured communication
1721 if (getDolGlobalString('INVOICE_PAYMENT_ENABLE_STRUCTURED_COMMUNICATION')) {
1722 include_once DOL_DOCUMENT_ROOT.'/core/lib/functions_be.lib.php';
1723 $invoicePaymentKey = dolBECalculateStructuredCommunication($object->ref, $object->type);
1724
1725 $pdf->MultiCell(100, 3, $outputlangs->transnoentities('StructuredCommunication').": " . $outputlangs->convToOutputCharset($invoicePaymentKey), 0, 'L', false);
1726 }
1727 }
1728 }
1729 }
1730
1731 return $posy;
1732 }
1733
1734
1746 protected function drawTotalTable(&$pdf, $object, $deja_regle, $posy, $outputlangs, $outputlangsbis)
1747 {
1748 global $mysoc, $hookmanager;
1749
1750 $sign = 1;
1751 if ($object->type == 2 && getDolGlobalString('INVOICE_POSITIVE_CREDIT_NOTE')) {
1752 $sign = -1;
1753 }
1754
1755 $default_font_size = pdf_getPDFFontSize($outputlangs);
1756
1757 $tab2_top = $posy;
1758 $tab2_hl = 4;
1759 if (is_object($outputlangsbis)) { // When we show 2 languages we need more room for text, so we use a smaller font.
1760 $pdf->SetFont('', '', $default_font_size - 2);
1761 } else {
1762 $pdf->SetFont('', '', $default_font_size - 1);
1763 }
1764
1765 // Total table
1766 $col1x = 120;
1767 $col2x = 170;
1768 if ($this->page_largeur < 210) { // To work with US executive format
1769 $col1x -= 15;
1770 $col2x -= 10;
1771 }
1772 $largcol2 = ($this->page_largeur - $this->marge_droite - $col2x);
1773
1774 $useborder = 0;
1775 $index = 0;
1776
1777 // Add trigger to allow to edit $object
1778 $parameters = array(
1779 'object' => &$object,
1780 'outputlangs' => $outputlangs,
1781 );
1782 $hookmanager->executeHooks('beforePercentCalculation', $parameters, $this); // Note that $object may have been modified by hook
1783
1784 // overall percentage of advancement
1785 $percent = 0;
1786 $i = 0;
1787 foreach ($object->lines as $line) {
1788 if ($line->product_type != 9) {
1789 $percent += $line->situation_percent;
1790 $i++;
1791 }
1792 }
1793
1794 if (!empty($i)) {
1795 $avancementGlobal = $percent / $i;
1796 } else {
1797 $avancementGlobal = 0;
1798 }
1799
1800 $object->fetchPreviousNextSituationInvoice();
1801 $TPreviousIncoice = $object->tab_previous_situation_invoice;
1802
1803 $total_a_payer = 0;
1804 $total_a_payer_ttc = 0;
1805 foreach ($TPreviousIncoice as &$fac) {
1806 $total_a_payer += $fac->total_ht;
1807 $total_a_payer_ttc += $fac->total_ttc;
1808 }
1809 $total_a_payer += $object->total_ht;
1810 $total_a_payer_ttc += $object->total_ttc;
1811
1812 if (!empty($avancementGlobal)) {
1813 $total_a_payer = $total_a_payer * 100 / $avancementGlobal;
1814 $total_a_payer_ttc = $total_a_payer_ttc * 100 / $avancementGlobal;
1815 } else {
1816 $total_a_payer = 0;
1817 $total_a_payer_ttc = 0;
1818 }
1819
1820 $i = 1;
1821 if (!empty($TPreviousIncoice)) {
1822 $pdf->setY($tab2_top);
1823 $posy = $pdf->GetY();
1824
1825 foreach ($TPreviousIncoice as &$fac) {
1826 if ($posy > $this->page_hauteur - 4 - $this->heightforfooter) {
1827 $this->_pagefoot($pdf, $object, $outputlangs, 1, $this->getHeightForQRInvoice($pdf->getPage(), $object, $outputlangs));
1828 $pdf->addPage();
1829 if (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD')) {
1830 $this->_pagehead($pdf, $object, 0, $outputlangs, $outputlangsbis);
1831 $pdf->setY($this->tab_top_newpage);
1832 } else {
1833 $pdf->setY($this->marge_haute);
1834 }
1835 $posy = $pdf->GetY();
1836 }
1837
1838 // Cumulate preceding VAT
1839 $index++;
1840 $pdf->SetFillColor(255, 255, 255);
1841 $pdf->SetXY($col1x, $posy);
1842 $pdf->MultiCell($col2x - $col1x, $tab2_hl, $outputlangs->transnoentities("PDFSituationTitle", (string) $fac->situation_counter).' '.$outputlangs->transnoentities("TotalHT"), 0, 'L', true);
1843
1844 $pdf->SetXY($col2x, $posy);
1845
1846 $facSign = '';
1847 if ($i > 1) {
1848 $facSign = $fac->total_ht >= 0 ? '+' : '';
1849 }
1850
1851 $displayAmount = ' '.$facSign.' '.price($fac->total_ht, 0, $outputlangs);
1852
1853 $pdf->MultiCell($largcol2, $tab2_hl, $displayAmount, 0, 'R', true);
1854
1855 $i++;
1856 $posy += $tab2_hl;
1857
1858 $pdf->setY($posy);
1859 }
1860
1861 // Display current total
1862 $pdf->SetFillColor(255, 255, 255);
1863 $pdf->SetXY($col1x, $posy);
1864 $pdf->MultiCell($col2x - $col1x, $tab2_hl, $outputlangs->transnoentities("PDFSituationTitle", (string) $object->situation_counter).' '.$outputlangs->transnoentities("TotalHT"), 0, 'L', true);
1865
1866 $pdf->SetXY($col2x, $posy);
1867 $facSign = '';
1868 if ($i > 1) {
1869 $facSign = $object->total_ht >= 0 ? '+' : ''; // management of a particular customer case
1870 }
1871
1872 if ($fac->type === Facture::TYPE_CREDIT_NOTE) {
1873 $facSign = '-';
1874 }
1875
1876
1877 $displayAmount = ' '.$facSign.' '.price($object->total_ht, 0, $outputlangs);
1878 $pdf->MultiCell($largcol2, $tab2_hl, $displayAmount, 0, 'R', true);
1879
1880 $posy += $tab2_hl;
1881
1882 // Display all total
1883 $pdf->SetFont('', '', $default_font_size - 1);
1884 $pdf->SetFillColor(255, 255, 255);
1885 $pdf->SetXY($col1x, $posy);
1886 $pdf->MultiCell($col2x - $col1x, $tab2_hl, $outputlangs->transnoentities("SituationTotalProgress", (string) $avancementGlobal), 0, 'L', true);
1887
1888 $pdf->SetXY($col2x, $posy);
1889 $pdf->MultiCell($largcol2, $tab2_hl, price($total_a_payer * $avancementGlobal / 100, 0, $outputlangs), 0, 'R', true);
1890 $pdf->SetFont('', '', $default_font_size - 2);
1891
1892 $posy += $tab2_hl;
1893
1894 if ($posy > $this->page_hauteur - 4 - $this->heightforfooter) {
1895 $pdf->addPage();
1896 if (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD')) {
1897 $this->_pagehead($pdf, $object, 0, $outputlangs, $outputlangsbis);
1898 $pdf->setY($this->tab_top_newpage);
1899 } else {
1900 $pdf->setY($this->marge_haute);
1901 }
1902
1903 $posy = $pdf->GetY();
1904 }
1905
1906 $tab2_top = $posy;
1907 $index = 0;
1908
1909 $tab2_top += 3;
1910 }
1911
1912
1913 // Get Total HT
1914 $total_ht = (isModEnabled("multicurrency") && $object->multicurrency_tx != 1 ? $object->multicurrency_total_ht : $object->total_ht);
1915
1916 // Total discount
1917 $total_discount_on_lines = 0;
1918 $multicurrency_total_discount_on_lines = 0;
1919 foreach ($object->lines as $i => $line) {
1920 $resdiscount = pdfGetLineTotalDiscountAmount($object, $i, $outputlangs, 2);
1921 $multicurrency_resdiscount = pdfGetLineTotalDiscountAmount($object, $i, $outputlangs, 2, 1);
1922
1923 $total_discount_on_lines += (is_numeric($resdiscount) ? $resdiscount : 0);
1924 $multicurrency_total_discount_on_lines += (is_numeric($multicurrency_resdiscount) ? $multicurrency_resdiscount : 0);
1925 // If line was a negative line, we do not count the discount as a discount
1926 if ($line->total_ht < 0) {
1927 $total_discount_on_lines += -$line->total_ht;
1928 $multicurrency_total_discount_on_lines += -$line->multicurrency_total_ht;
1929 }
1930 }
1931
1932 // Show total discount only if there is some discount on lines
1933 if ($total_discount_on_lines > 0 && !$object->isSituationInvoice()) {
1934 // Show total NET before discount except on credit note type invoices
1935 if (!getDolGlobalString('MAIN_HIDE_AMOUNT_BEFORE_DISCOUNT') && $object->type != 2) {
1936 $pdf->SetFillColor(255, 255, 255);
1937 $pdf->SetXY($col1x, $tab2_top);
1938 $pdf->MultiCell($col2x - $col1x, $tab2_hl, $outputlangs->transnoentities("TotalHTBeforeDiscount").(is_object($outputlangsbis) ? ' / '.$outputlangsbis->transnoentities("TotalHTBeforeDiscount") : ''), 0, 'L', true);
1939 $pdf->SetXY($col2x, $tab2_top);
1940
1941 $total_before_discount_to_show = ((isModEnabled("multicurrency") && $object->multicurrency_tx != 1) ? ($object->multicurrency_total_ht + $multicurrency_total_discount_on_lines) : ($object->total_ht + $total_discount_on_lines));
1942 $pdf->MultiCell($largcol2, $tab2_hl, price($total_before_discount_to_show, 0, $outputlangs), 0, 'R', true);
1943
1944 $index++;
1945 }
1946
1947 // Show discount except on credit note type invoices
1948 if (!getDolGlobalString('MAIN_HIDE_AMOUNT_DISCOUNT') && $object->type != 2) {
1949 $pdf->SetFillColor(255, 255, 255);
1950 $pdf->SetXY($col1x, $tab2_top + $tab2_hl);
1951 $pdf->MultiCell($col2x - $col1x, $tab2_hl, $outputlangs->transnoentities("TotalDiscount").(is_object($outputlangsbis) ? ' / '.$outputlangsbis->transnoentities("TotalDiscount") : ''), 0, 'L', true);
1952 $pdf->SetXY($col2x, $tab2_top + $tab2_hl);
1953
1954 $total_discount_to_show = ((isModEnabled("multicurrency") && $object->multicurrency_tx != 1) ? $multicurrency_total_discount_on_lines : $total_discount_on_lines);
1955 $pdf->MultiCell($largcol2, $tab2_hl, price($total_discount_to_show, 0, $outputlangs), 0, 'R', true);
1956
1957 $index++;
1958 }
1959 }
1960
1961 // Total HT
1962 $pdf->SetFillColor(255, 255, 255);
1963 $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1964 $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', true);
1965
1966 $total_ht = ((isModEnabled("multicurrency") && $object->multicurrency_tx != 1) ? $object->multicurrency_total_ht : $object->total_ht);
1967 $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1968 $pdf->MultiCell($largcol2, $tab2_hl, price($sign * $total_ht, 0, $outputlangs), 0, 'R', true);
1969
1970 if (getDolGlobalInt('PDF_INVOICE_SHOW_VAT_ANALYSIS')) {
1971 $index++;
1972 $pdf->SetFillColor(255, 255, 255);
1973 $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
1974 $pdf->MultiCell($col2x - $col1x, $tab2_hl, $outputlangs->transnoentities("TotalVAT"), 0, 'L', true);
1975
1976 $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
1977 $pdf->MultiCell($largcol2, $tab2_hl, price($sign * $object->total_tva), 0, 'R', true);
1978 }
1979
1980 // Show VAT by rates and total
1981 $pdf->SetFillColor(248, 248, 248);
1982
1983 $total_ttc = (isModEnabled("multicurrency") && $object->multicurrency_tx != 1) ? $object->multicurrency_total_ttc : $object->total_ttc;
1984 $total_ttc_origin = $object->total_ttc;
1985
1986 $this->atleastoneratenotnull = 0;
1987 if (!getDolGlobalString('MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT')) {
1988 $tvaisnull = (!empty($this->tva) && count($this->tva) == 1 && isset($this->tva['0.000']) && is_float($this->tva['0.000']));
1989 if (getDolGlobalString('MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT_IFNULL') && $tvaisnull) {
1990 // Nothing to do
1991 } else {
1992 // Local tax 1 before VAT
1993 foreach ($this->localtax1 as $localtax_type => $localtax_rate) {
1994 if (in_array((string) $localtax_type, array('1', '3', '5'))) {
1995 continue;
1996 }
1997
1998 foreach ($localtax_rate as $tvakey => $tvaval) {
1999 if ($tvakey != 0 || getDolGlobalString('INVOICE_SHOW_ALSO_LOCALTAX1_LINE_IF_ZERO')) {
2000 //$this->atleastoneratenotnull++;
2001
2002 $index++;
2003 $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
2004
2005 $tvacompl = '';
2006 if (preg_match('/\*/', (string) $tvakey)) {
2007 $tvakey = str_replace('*', '', (string) $tvakey);
2008 $tvacompl = " (".$outputlangs->transnoentities("NonPercuRecuperable").")";
2009 }
2010
2011 $totalvat = $outputlangs->transcountrynoentities("TotalLT1", $mysoc->country_code).(is_object($outputlangsbis) ? ' / '.$outputlangsbis->transcountrynoentities("TotalLT1", $mysoc->country_code) : '');
2012 $totalvat .= ' ';
2013
2014 if (getDolGlobalString('PDF_LOCALTAX1_LABEL_IS_CODE_OR_RATE') == 'nocodenorate') {
2015 $totalvat .= $tvacompl;
2016 } else {
2017 $totalvat .= vatrate((string) abs((float) $tvakey), true).$tvacompl;
2018 }
2019
2020 $pdf->MultiCell($col2x - $col1x, $tab2_hl, $totalvat, 0, 'L', true);
2021
2022 $total_localtax = ((isModEnabled("multicurrency") && isset($object->multicurrency_tx) && $object->multicurrency_tx != 1) ? price2num($tvaval * $object->multicurrency_tx, 'MT') : $tvaval);
2023
2024 $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
2025 $pdf->MultiCell($largcol2, $tab2_hl, price($total_localtax, 0, $outputlangs), 0, 'R', true);
2026 }
2027 }
2028 }
2029
2030 // Local tax 2 before VAT
2031 foreach ($this->localtax2 as $localtax_type => $localtax_rate) {
2032 if (in_array((string) $localtax_type, array('1', '3', '5'))) {
2033 continue;
2034 }
2035
2036 foreach ($localtax_rate as $tvakey => $tvaval) {
2037 if ($tvakey != 0 || getDolGlobalString('INVOICE_SHOW_ALSO_LOCALTAX2_LINE_IF_ZERO')) {
2038 //$this->atleastoneratenotnull++;
2039
2040 $index++;
2041 $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
2042
2043 $tvacompl = '';
2044 if (preg_match('/\*/', (string) $tvakey)) {
2045 $tvakey = str_replace('*', '', (string) $tvakey);
2046 $tvacompl = " (".$outputlangs->transnoentities("NonPercuRecuperable").")";
2047 }
2048 $totalvat = $outputlangs->transcountrynoentities("TotalLT2", $mysoc->country_code).(is_object($outputlangsbis) ? ' / '.$outputlangsbis->transcountrynoentities("TotalLT2", $mysoc->country_code) : '');
2049 $totalvat .= ' ';
2050
2051 if (getDolGlobalString('PDF_LOCALTAX2_LABEL_IS_CODE_OR_RATE') == 'nocodenorate') {
2052 $totalvat .= $tvacompl;
2053 } else {
2054 $totalvat .= vatrate((string) abs((float) $tvakey), true).$tvacompl;
2055 }
2056
2057 $pdf->MultiCell($col2x - $col1x, $tab2_hl, $totalvat, 0, 'L', true);
2058
2059 $total_localtax = ((isModEnabled("multicurrency") && isset($object->multicurrency_tx) && $object->multicurrency_tx != 1) ? price2num($tvaval * $object->multicurrency_tx, 'MT') : $tvaval);
2060
2061 $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
2062 $pdf->MultiCell($largcol2, $tab2_hl, price($total_localtax, 0, $outputlangs), 0, 'R', true);
2063 }
2064 }
2065 }
2066
2067 // Situations totals might be wrong on huge amounts with old mode 1
2068 if (getDolGlobalInt('INVOICE_USE_SITUATION') == 1 && $object->situation_cycle_ref && $object->situation_counter > 1) {
2069 $sum_pdf_tva = 0;
2070 foreach ($this->tva as $tvakey => $tvaval) {
2071 $sum_pdf_tva += $tvaval; // sum VAT amounts to compare to object
2072 }
2073
2074 if ($sum_pdf_tva != $object->total_tva) { // apply coef to recover the VAT object amount (the good one)
2075 if (!empty($sum_pdf_tva)) {
2076 $coef_fix_tva = $object->total_tva / $sum_pdf_tva;
2077 } else {
2078 $coef_fix_tva = 1;
2079 }
2080
2081
2082 foreach ($this->tva as $tvakey => $tvaval) {
2083 $this->tva[$tvakey] = $tvaval * $coef_fix_tva;
2084 }
2085 foreach ($this->tva_array as $tvakey => $tvaval) {
2086 $this->tva_array[$tvakey]['amount'] = $tvaval['amount'] * $coef_fix_tva;
2087 }
2088 }
2089 }
2090
2091 if (!getDolGlobalInt('PDF_INVOICE_SHOW_VAT_ANALYSIS')) {
2092 // VAT
2093 foreach ($this->tva_array as $tvakey => $tvaval) {
2094 if ($tvakey != 0 || getDolGlobalString('INVOICE_SHOW_ALSO_VAT_LINE_IF_ZERO')) {
2095 $this->atleastoneratenotnull++;
2096
2097 $index++;
2098 $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
2099
2100 $tvacompl = '';
2101 if (preg_match('/\*/', $tvakey)) {
2102 $tvakey = str_replace('*', '', $tvakey);
2103 $tvacompl = " (".$outputlangs->transnoentities("NonPercuRecuperable").")";
2104 }
2105 $totalvat = $outputlangs->transcountrynoentities("TotalVAT", $mysoc->country_code).(is_object($outputlangsbis) ? ' / '.$outputlangsbis->transcountrynoentities("TotalVAT", $mysoc->country_code) : '');
2106 $totalvat .= ' ';
2107 if (getDolGlobalString('PDF_VAT_LABEL_IS_CODE_OR_RATE') == 'rateonly') {
2108 $totalvat .= vatrate((string) $tvaval['vatrate'], true).$tvacompl;
2109 } elseif (getDolGlobalString('PDF_VAT_LABEL_IS_CODE_OR_RATE') == 'codeonly') {
2110 $totalvat .= $tvaval['vatcode'].$tvacompl;
2111 } elseif (getDolGlobalString('PDF_VAT_LABEL_IS_CODE_OR_RATE') == 'nocodenorate') {
2112 $totalvat .= $tvacompl;
2113 } else {
2114 $totalvat .= vatrate((string) $tvaval['vatrate'], true).($tvaval['vatcode'] ? ' ('.$tvaval['vatcode'].')' : '').$tvacompl;
2115 }
2116 $pdf->MultiCell($col2x - $col1x, $tab2_hl, $totalvat, 0, 'L', true);
2117
2118 $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
2119
2120 $pdf->MultiCell($largcol2, $tab2_hl, price(price2num($tvaval['amount'], 'MT'), 0, $outputlangs), 0, 'R', true);
2121 }
2122 }
2123 }
2124
2125 //Local tax 1 after VAT
2126 foreach ($this->localtax1 as $localtax_type => $localtax_rate) {
2127 if (in_array((string) $localtax_type, array('2', '4', '6'))) {
2128 continue;
2129 }
2130
2131 foreach ($localtax_rate as $tvakey => $tvaval) {
2132 if ($tvakey != 0 || getDolGlobalString('INVOICE_SHOW_ALSO_LOCALTAX1_LINE_IF_ZERO')) {
2133 //$this->atleastoneratenotnull++;
2134
2135 $index++;
2136 $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
2137
2138 $tvacompl = '';
2139 if (preg_match('/\*/', (string) $tvakey)) {
2140 $tvakey = str_replace('*', '', (string) $tvakey);
2141 $tvacompl = " (".$outputlangs->transnoentities("NonPercuRecuperable").")";
2142 }
2143 $totalvat = $outputlangs->transcountrynoentities("TotalLT1", $mysoc->country_code).(is_object($outputlangsbis) ? ' / '.$outputlangsbis->transcountrynoentities("TotalLT1", $mysoc->country_code) : '');
2144 $totalvat .= ' ';
2145
2146 if (getDolGlobalString('PDF_LOCALTAX1_LABEL_IS_CODE_OR_RATE') == 'nocodenorate') {
2147 $totalvat .= $tvacompl;
2148 } else {
2149 $totalvat .= vatrate((string) abs((float) $tvakey), true).$tvacompl;
2150 }
2151
2152 $pdf->MultiCell($col2x - $col1x, $tab2_hl, $totalvat, 0, 'L', true);
2153
2154 $total_localtax = ((isModEnabled("multicurrency") && isset($object->multicurrency_tx) && $object->multicurrency_tx != 1) ? price2num($tvaval * $object->multicurrency_tx, 'MT') : $tvaval);
2155
2156 $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
2157 $pdf->MultiCell($largcol2, $tab2_hl, price($total_localtax, 0, $outputlangs), 0, 'R', true);
2158 }
2159 }
2160 }
2161
2162 //Local tax 2 after VAT
2163 foreach ($this->localtax2 as $localtax_type => $localtax_rate) {
2164 if (in_array((string) $localtax_type, array('2', '4', '6'))) {
2165 continue;
2166 }
2167
2168 foreach ($localtax_rate as $tvakey => $tvaval) {
2169 // retrieve global local tax
2170 if ($tvakey != 0 || getDolGlobalString('INVOICE_SHOW_ALSO_LOCALTAX2_LINE_IF_ZERO')) {
2171 //$this->atleastoneratenotnull++;
2172
2173 $index++;
2174 $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
2175
2176 $tvacompl = '';
2177 if (preg_match('/\*/', (string) $tvakey)) {
2178 $tvakey = str_replace('*', '', (string) $tvakey);
2179 $tvacompl = " (".$outputlangs->transnoentities("NonPercuRecuperable").")";
2180 }
2181 $totalvat = $outputlangs->transcountrynoentities("TotalLT2", $mysoc->country_code).(is_object($outputlangsbis) ? ' / '.$outputlangsbis->transcountrynoentities("TotalLT2", $mysoc->country_code) : '');
2182 $totalvat .= ' ';
2183
2184 if (getDolGlobalString('PDF_LOCALTAX2_LABEL_IS_CODE_OR_RATE') == 'nocodenorate') {
2185 $totalvat .= $tvacompl;
2186 } else {
2187 $totalvat .= vatrate((string) abs((float) $tvakey), true).$tvacompl;
2188 }
2189
2190 $pdf->MultiCell($col2x - $col1x, $tab2_hl, $totalvat, 0, 'L', true);
2191
2192 $total_localtax = ((isModEnabled("multicurrency") && $object->multicurrency_tx != 1) ? price2num($tvaval * $object->multicurrency_tx, 'MT') : $tvaval);
2193
2194 $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
2195 $pdf->MultiCell($largcol2, $tab2_hl, price($total_localtax, 0, $outputlangs), 0, 'R', true);
2196 }
2197 }
2198 }
2199
2200 // Revenue stamp
2201 if (price2num($object->revenuestamp, 'MT') != 0) {
2202 $index++;
2203 $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
2204 $pdf->MultiCell($col2x - $col1x, $tab2_hl, $outputlangs->transnoentities("RevenueStamp").(is_object($outputlangsbis) ? ' / '.$outputlangsbis->transnoentities("RevenueStamp", $mysoc->country_code) : ''), $useborder, 'L', true);
2205
2206 $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
2207 $pdf->MultiCell($largcol2, $tab2_hl, price($sign * $object->revenuestamp), $useborder, 'R', true);
2208 }
2209
2210 // Total TTC
2211 $index++;
2212 $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
2213 $pdf->SetTextColor(0, 0, 60);
2214 $pdf->SetFillColor(224, 224, 224);
2215 $pdf->MultiCell($col2x - $col1x, $tab2_hl, $outputlangs->transnoentities("TotalTTC").(is_object($outputlangsbis) ? ' / '.$outputlangsbis->transnoentities("TotalTTC") : ''), $useborder, 'L', true);
2216
2217 $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
2218 if (!isModEnabled("multicurrency") || $object->multicurrency_tx == 1 || getDolGlobalInt('MULTICURRENCY_SHOW_ALSO_MAIN_CURRENCY_ON_PDF') == 0) {
2219 $pdf->MultiCell($largcol2, $tab2_hl, price($sign * $total_ttc, 0, $outputlangs), $useborder, 'R', true);
2220 } else {
2221 $pdf->MultiCell($largcol2, $tab2_hl, price($sign * $total_ttc, 0, $outputlangs), $useborder, 'R', true);
2222
2223 //$pdf->writeHTMLCell($largcol2, $tab2_hl, null, null, '<font size="-2">('.price($sign * $object->total_ttc, 0, $outputlangs, 1, -1, 'MT', $mysoc->currency_code).')</font> &nbsp; '.price($sign * $total_ttc, 0, $outputlangs), $useborder, 1, true, true, 'R');
2224 $index++;
2225 $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
2226 $pdf->SetTextColor(0, 0, 60);
2227 $pdf->SetFillColor(224, 224, 224);
2228 $pdf->MultiCell($col2x - $col1x, $tab2_hl, $outputlangs->transnoentities("TotalTTC").(is_object($outputlangsbis) ? ' / '.$outputlangsbis->transnoentities("TotalTTC") : '').' ('.$outputlangs->getCurrencySymbol($mysoc->currency_code).')', $useborder, 'L', true);
2229
2230 $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
2231 $pdf->MultiCell($largcol2, $tab2_hl, price($sign * $total_ttc_origin, 0, $outputlangs, 1, -1, -1, $mysoc->currency_code), $useborder, 'L', true);
2232 }
2233
2234 // Retained warranty
2235 if ($object->displayRetainedWarranty()) {
2236 $pdf->SetTextColor(40, 40, 40);
2237 $pdf->SetFillColor(255, 255, 255);
2238
2239 $retainedWarranty = $object->getRetainedWarrantyAmount();
2240 $billedWithRetainedWarranty = $object->total_ttc - $retainedWarranty;
2241
2242 // Billed - retained warranty
2243 $index++;
2244 $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
2245 $pdf->MultiCell($col2x - $col1x, $tab2_hl, $outputlangs->transnoentities("ToPayOn", dol_print_date($object->date_lim_reglement, 'day')), $useborder, 'L', true);
2246
2247 $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
2248 $pdf->MultiCell($largcol2, $tab2_hl, price($billedWithRetainedWarranty), $useborder, 'R', true);
2249
2250 // retained warranty
2251 $index++;
2252 $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
2253
2254 $retainedWarrantyToPayOn = $outputlangs->transnoentities("RetainedWarranty").(is_object($outputlangsbis) ? ' / '.$outputlangsbis->transnoentities("RetainedWarranty") : '').' ('.$object->retained_warranty.'%)';
2255 $retainedWarrantyToPayOn .= !empty($object->retained_warranty_date_limit) ? ' '.$outputlangs->transnoentities("toPayOn", dol_print_date($object->retained_warranty_date_limit, 'day')) : '';
2256
2257 $pdf->MultiCell($col2x - $col1x, $tab2_hl, $retainedWarrantyToPayOn, $useborder, 'L', true);
2258 $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
2259 $pdf->MultiCell($largcol2, $tab2_hl, price($retainedWarranty), $useborder, 'R', true);
2260 }
2261 }
2262 }
2263
2264 $pdf->SetTextColor(0, 0, 0);
2265
2266 $creditnoteamount = $object->getSumCreditNotesUsed((isModEnabled("multicurrency") && $object->multicurrency_tx != 1) ? 1 : 0); // Warning, this also include excess received
2267 $depositsamount = $object->getSumDepositsUsed((isModEnabled("multicurrency") && $object->multicurrency_tx != 1) ? 1 : 0);
2268
2269 $resteapayer = price2num($total_ttc - $deja_regle - $creditnoteamount - $depositsamount, 'MT');
2270 if (!isModEnabled("multicurrency") || $object->multicurrency_tx == 1 || getDolGlobalInt('MULTICURRENCY_SHOW_ALSO_MAIN_CURRENCY_ON_PDF') == 0) {
2271 // Not used in this case, initialized to avoid CI warnings
2272 $deja_regle_origin = 0;
2273 $creditnoteamount_origin = 0;
2274 $depositsamount_origin = 0;
2275 $resteapayer_origin = 0;
2276 } else {
2277 $deja_regle_origin = $object->getSommePaiement(0);
2278 $creditnoteamount_origin = $object->getSumCreditNotesUsed(0); // Warning, this also include excess received
2279 $depositsamount_origin = $object->getSumDepositsUsed(0);
2280 $resteapayer_origin = price2num($total_ttc_origin - $deja_regle_origin - $creditnoteamount_origin - $depositsamount_origin, 'MT');
2281 }
2282 if (!empty($object->paye)) {
2283 $resteapayer = 0;
2284 $resteapayer_origin = 0;
2285 }
2286
2287 if (($deja_regle > 0 || $creditnoteamount > 0 || $depositsamount > 0) && !getDolGlobalString('INVOICE_NO_PAYMENT_DETAILS')) {
2288 // Already paid + Deposits
2289 $index++;
2290 $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
2291 $pdf->MultiCell($col2x - $col1x, $tab2_hl, $outputlangs->transnoentities("Paid").(is_object($outputlangsbis) ? ' / '.$outputlangsbis->transnoentities("Paid") : ''), 0, 'L', false);
2292 $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
2293 //if (!isModEnabled("multicurrency") || $object->multicurrency_tx == 1 || getDolGlobalInt('MULTICURRENCY_SHOW_ALSO_MAIN_CURRENCY_ON_PDF') == 0) {
2294 $pdf->MultiCell($largcol2, $tab2_hl, price($deja_regle + $depositsamount, 0, $outputlangs), 0, 'R', false);
2295 //} else {
2296 // $pdf->MultiCell($largcol2, $tab2_hl, price($deja_regle + $depositsamount, 0, $outputlangs), 0, 'R', false);
2297 //
2298 // $index++;
2299 // $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
2300 // $pdf->MultiCell($col2x - $col1x, $tab2_hl, $outputlangs->transnoentities("Paid").(is_object($outputlangsbis) ? ' / '.$outputlangsbis->transnoentities("Paid") : '').' ('.$outputlangs->getCurrencySymbol($mysoc->currency_code).')', $useborder, 'L', true);
2301
2302 // $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
2303 // $pdf->MultiCell($largcol2, $tab2_hl, price($deja_regle_origin + $depositsamount_origin, 0, $outputlangs, 1, -1, -1, $mysoc->currency_code), $useborder, 'L', true);
2304 //}
2305
2306 // Credit note
2307 if ($creditnoteamount) {
2308 $labeltouse = ($outputlangs->transnoentities("CreditNotesOrExcessReceived") != "CreditNotesOrExcessReceived") ? $outputlangs->transnoentities("CreditNotesOrExcessReceived") : $outputlangs->transnoentities("CreditNotes");
2309 $labeltouse .= (is_object($outputlangsbis) ? (' / '.(($outputlangsbis->transnoentities("CreditNotesOrExcessReceived") != "CreditNotesOrExcessReceived") ? $outputlangsbis->transnoentities("CreditNotesOrExcessReceived") : $outputlangsbis->transnoentities("CreditNotes"))) : '');
2310 $index++;
2311 $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
2312 $pdf->MultiCell($col2x - $col1x, $tab2_hl, $labeltouse, 0, 'L', false);
2313 $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
2314 $pdf->MultiCell($largcol2, $tab2_hl, price($creditnoteamount, 0, $outputlangs), 0, 'R', false);
2315 }
2316
2317 if ($object->close_code == Facture::CLOSECODE_DISCOUNTVAT) {
2318 $index++;
2319 $pdf->SetFillColor(255, 255, 255);
2320
2321 $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
2322 $pdf->MultiCell($col2x - $col1x, $tab2_hl, $outputlangs->transnoentities("EscompteOfferedShort").(is_object($outputlangsbis) ? ' / '.$outputlangsbis->transnoentities("EscompteOfferedShort") : ''), $useborder, 'L', true);
2323 $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
2324 $pdf->MultiCell($largcol2, $tab2_hl, price(price2num($object->total_ttc - $deja_regle - $creditnoteamount - $depositsamount, 'MT'), 0, $outputlangs), $useborder, 'R', true);
2325
2326 $resteapayer = 0;
2327 $resteapayer_origin = 0;
2328 }
2329
2330 $index++;
2331 $pdf->SetTextColor(0, 0, 60);
2332 $pdf->SetFillColor(224, 224, 224);
2333 $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
2334 $pdf->MultiCell($col2x - $col1x, $tab2_hl, $outputlangs->transnoentities("RemainderToPay").(is_object($outputlangsbis) ? ' / '.$outputlangsbis->transnoentities("RemainderToPay") : ''), $useborder, 'L', true);
2335 $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
2336 if (!isModEnabled("multicurrency") || $object->multicurrency_tx == 1 || getDolGlobalInt('MULTICURRENCY_SHOW_ALSO_MAIN_CURRENCY_ON_PDF') == 0) {
2337 $pdf->MultiCell($largcol2, $tab2_hl, price($resteapayer, 0, $outputlangs), $useborder, 'R', true);
2338 } else {
2339 $pdf->MultiCell($largcol2, $tab2_hl, price($resteapayer, 0, $outputlangs), $useborder, 'R', true);
2340
2341 //$pdf->MultiCell($largcol2, $tab2_hl, '('.price($resteapayer_origin, 0, $outputlangs, 1, -1, 'MT', $mysoc->currency_code).') '.price($resteapayer, 0, $outputlangs), 0, 'R', true);
2342 $index++;
2343 $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
2344 $pdf->SetTextColor(0, 0, 60);
2345 $pdf->SetFillColor(224, 224, 224);
2346 $pdf->MultiCell($col2x - $col1x, $tab2_hl, $outputlangs->transnoentities("RemainderToPay").(is_object($outputlangsbis) ? ' / '.$outputlangsbis->transnoentities("RemainderToPay") : '').' ('.$outputlangs->getCurrencySymbol($mysoc->currency_code).')', $useborder, 'L', true);
2347
2348 $pdf->SetXY($col2x, $tab2_top + $tab2_hl * $index);
2349 $pdf->MultiCell($largcol2, $tab2_hl, price($resteapayer_origin, 0, $outputlangs, 1, -1, -1, $mysoc->currency_code), $useborder, 'L', true);
2350 }
2351
2352 $pdf->SetFont('', '', $default_font_size - 1);
2353 $pdf->SetTextColor(0, 0, 0);
2354 }
2355
2356 $parameters = array('pdf' => &$pdf, 'object' => &$object, 'outputlangs' => $outputlangs, 'index' => &$index, 'posy' => $posy);
2357
2358 $reshook = $hookmanager->executeHooks('afterPDFTotalTable', $parameters, $this); // Note that $action and $object may have been modified by some hooks
2359 if ($reshook < 0) {
2360 $this->error = $hookmanager->error;
2361 $this->errors = $hookmanager->errors;
2362 }
2363
2364 $index++;
2365 return ($tab2_top + ($tab2_hl * $index));
2366 }
2367
2368 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2376 public static function liste_modeles($db, $maxfilenamelength = 0)
2377 {
2378 // phpcs:enable
2379 return parent::liste_modeles($db, $maxfilenamelength); // TODO: Change the autogenerated stub
2380 }
2381
2382 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
2397 protected function _tableau(&$pdf, $tab_top, $tab_height, $nexY, $outputlangs, $hidetop = 0, $hidebottom = 0, $object = '', $outputlangsbis = null)
2398 {
2399 // Force to disable hidetop and hidebottom
2400 $hidebottom = 0;
2401 if ($hidetop) {
2402 $hidetop = -1;
2403 }
2404
2405 if ($object instanceOf Facture) {
2406 $currency = $object->multicurrency_code;
2407 } else {
2408 $currency = $object;
2409 }
2410 if (empty($currency)) {
2411 $currency = getDolCurrency();
2412 }
2413
2414 $default_font_size = pdf_getPDFFontSize($outputlangs);
2415
2416 // Amount in (at tab_top - 1)
2417 $pdf->SetTextColor(0, 0, 0);
2418 $pdf->SetFont('', '', $default_font_size - 2);
2419
2420 if (empty($hidetop)) {
2421 // Show category of operations
2422 if (getDolGlobalInt('INVOICE_CATEGORY_OF_OPERATION') == 1 && $this->categoryOfOperation >= 0) {
2423 $categoryOfOperations = $outputlangs->transnoentities("MentionCategoryOfOperations") . ' : ' . $outputlangs->transnoentities("MentionCategoryOfOperations" . $this->categoryOfOperation);
2424 $pdf->SetXY($this->marge_gauche, $tab_top - 4);
2425 $pdf->MultiCell(($pdf->GetStringWidth($categoryOfOperations)) + 4, 2, $categoryOfOperations);
2426 }
2427
2428 $titre = $outputlangs->transnoentities("AmountInCurrency", $outputlangs->transnoentitiesnoconv("Currency".$currency));
2429 if (getDolGlobalString('PDF_USE_ALSO_LANGUAGE_CODE') && is_object($outputlangsbis)) {
2430 $titre .= ' - '.$outputlangsbis->transnoentities("AmountInCurrency", $outputlangsbis->transnoentitiesnoconv("Currency".$currency));
2431 }
2432 if ($currency != getDolCurrency()) {
2433 // Use nb of digit of the total price of main currency + nb of digit for total price of foreign currency + 1
2434 $maxnbofdec = getDolGlobalInt('MAIN_MAX_DECIMALS_TOT') + getDolGlobalInt('MAIN_MAX_DECIMALS_CURRENCY_TOT', getDolGlobalInt('MAIN_MAX_DECIMALS_TOT')) + 1;
2435 $pricetoshow1 = price($object->multicurrency_tx, 0, $outputlangs, 1, 0, $maxnbofdec, $currency);
2436 $pricetoshow2 = price($object->multicurrency_tx, 0, $outputlangs, 1, 0, -2, $currency);
2437 $pricetoshow = ((strlen($pricetoshow1) < strlen($pricetoshow2)) ? $pricetoshow1 : $pricetoshow2);
2438 $titre .= ' ('.$pricetoshow.' = '.price(1, 0, $outputlangs, 1, 0, 0, getDolCurrency()).')';
2439 }
2440
2441 $pdf->SetXY($this->page_largeur - $this->marge_droite - ($pdf->GetStringWidth($titre) + 3), $tab_top - 4);
2442 $pdf->MultiCell(($pdf->GetStringWidth($titre) + 3), 2, $titre);
2443
2444 //$conf->global->MAIN_PDF_TITLE_BACKGROUND_COLOR='230,230,230';
2445 if (getDolGlobalString('MAIN_PDF_TITLE_BACKGROUND_COLOR')) {
2446 $pdf->RoundedRect($this->marge_gauche, $tab_top, $this->page_largeur - $this->marge_droite - $this->marge_gauche, $this->tabTitleHeight, $this->corner_radius, '1001', 'F', array(), explode(',', getDolGlobalString('MAIN_PDF_TITLE_BACKGROUND_COLOR')));
2447 }
2448 }
2449
2450 $pdf->SetDrawColor(128, 128, 128);
2451 $pdf->SetFont('', '', $default_font_size - 1);
2452
2453 // Output Rect
2454 $this->printRoundedRect($pdf, $this->marge_gauche, $tab_top, $this->page_largeur - $this->marge_gauche - $this->marge_droite, $tab_height, $this->corner_radius, $hidetop, $hidebottom, 'D'); // Rect takes a length in 3rd parameter and 4th parameter
2455
2456
2457 $this->pdfTabTitles($pdf, $tab_top, $tab_height, $outputlangs, $hidetop);
2458
2459 if (empty($hidetop)) {
2460 $pdf->line($this->marge_gauche, $tab_top + $this->tabTitleHeight, $this->page_largeur - $this->marge_droite, $tab_top + $this->tabTitleHeight); // line takes a position y in 2nd parameter and 4th parameter
2461 }
2462 }
2463
2464 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
2475 protected function _pagehead(&$pdf, $object, $showaddress, $outputlangs, $outputlangsbis = null)
2476 {
2477 // phpcs:enable
2478 global $conf, $langs;
2479
2480 $ltrdirection = 'L';
2481 if ($outputlangs->trans("DIRECTION") == 'rtl') {
2482 $ltrdirection = 'R';
2483 }
2484
2485 // Load traductions files required by page
2486 $outputlangs->loadLangs(array("main", "bills", "propal", "companies"));
2487
2488 $default_font_size = pdf_getPDFFontSize($outputlangs);
2489
2490 pdf_pagehead($pdf, $outputlangs, $this->page_hauteur);
2491
2492 $pdf->SetTextColor(0, 0, 60);
2493 $pdf->SetFont('', 'B', $default_font_size + 3);
2494
2495 $w = 110;
2496
2497 $posy = $this->marge_haute;
2498 $posx = $this->page_largeur - $this->marge_droite - $w;
2499
2500 $pdf->SetXY($this->marge_gauche, $posy);
2501
2502 // Logo
2503 if (!getDolGlobalInt('PDF_DISABLE_MYCOMPANY_LOGO')) {
2504 if ($this->emetteur->logo) {
2505 $logodir = $conf->mycompany->dir_output;
2506 if (!empty($conf->mycompany->multidir_output[$object->entity ?? $conf->entity])) {
2507 $logodir = $conf->mycompany->multidir_output[$object->entity ?? $conf->entity];
2508 }
2509 if (!getDolGlobalInt('MAIN_PDF_USE_LARGE_LOGO')) {
2510 $logo = $logodir.'/logos/thumbs/'.$this->emetteur->logo_small;
2511 } else {
2512 $logo = $logodir.'/logos/'.$this->emetteur->logo;
2513 }
2514 if (is_readable($logo)) {
2515 $height = pdf_getHeightForLogo($logo);
2516 $pdf->Image($logo, $this->marge_gauche, $posy, 0, $height); // width=0 (auto)
2517 } else {
2518 $pdf->SetTextColor(200, 0, 0);
2519 $pdf->SetFont('', 'B', $default_font_size - 2);
2520 $pdf->MultiCell($w, 3, $outputlangs->transnoentities("ErrorLogoFileNotFound", $logo), 0, 'L');
2521 $pdf->MultiCell($w, 3, $outputlangs->transnoentities("ErrorGoToGlobalSetup"), 0, 'L');
2522 }
2523 } else {
2524 $text = $this->emetteur->name;
2525 $pdf->MultiCell($w, 4, $outputlangs->convToOutputCharset($text), 0, $ltrdirection);
2526 }
2527 }
2528
2529 $pdf->SetFont('', 'B', $default_font_size + 3);
2530 $pdf->SetXY($posx, $posy);
2531 $pdf->SetTextColor(0, 0, 60);
2532 $subtitle = "";
2533 $title = $outputlangs->transnoentities("PdfInvoiceTitle");
2534 if ($object->type == 1) {
2535 $title = $outputlangs->transnoentities("InvoiceReplacement");
2536 }
2537 if ($object->type == 2) {
2538 $title = $outputlangs->transnoentities("InvoiceAvoir");
2539 }
2540 if ($object->type == 3) {
2541 $title = $outputlangs->transnoentities("InvoiceDeposit");
2542 }
2543 if ($object->type == 4) {
2544 $title = $outputlangs->transnoentities("InvoiceProForma");
2545 }
2546 if ($this->situationinvoice) {
2547 $outputlangs->loadLangs(array("other"));
2548 $title = $outputlangs->transnoentities("PDFInvoiceSituation") . " " . $outputlangs->transnoentities("NumberingShort") . $object->situation_counter . " -";
2549 $subtitle = $outputlangs->transnoentities("PDFSituationTitle", (string) $object->situation_counter);
2550 }
2551 if (getDolGlobalString('PDF_USE_ALSO_LANGUAGE_CODE') && is_object($outputlangsbis)) {
2552 $title .= ' - ';
2553 if ($object->type == 0) {
2554 if ($this->situationinvoice) {
2555 $title .= $outputlangsbis->transnoentities("PDFInvoiceSituation");
2556 }
2557 $title .= $outputlangsbis->transnoentities("PdfInvoiceTitle");
2558 } elseif ($object->type == 1) {
2559 $title .= $outputlangsbis->transnoentities("InvoiceReplacement");
2560 } elseif ($object->type == 2) {
2561 $title .= $outputlangsbis->transnoentities("InvoiceAvoir");
2562 } elseif ($object->type == 3) {
2563 $title .= $outputlangsbis->transnoentities("InvoiceDeposit");
2564 } elseif ($object->type == 4) {
2565 $title .= $outputlangsbis->transnoentities("InvoiceProForma");
2566 }
2567 }
2568 $title .= ' '.$outputlangs->convToOutputCharset($object->ref);
2569 if ($object->status == $object::STATUS_DRAFT) {
2570 $pdf->SetTextColor(128, 0, 0);
2571 $title .= ' - '.$outputlangs->transnoentities("NotValidated");
2572 }
2573
2574 $pdf->MultiCell($w, 3, $title, '', 'R');
2575 if (!empty($subtitle)) {
2576 $pdf->SetFont('', 'B', $default_font_size);
2577 $pdf->SetXY($posx, $posy + 5);
2578 $pdf->MultiCell($w, 6, $subtitle, '', 'R');
2579 $posy += 2;
2580 }
2581
2582 $pdf->SetFont('', '', $default_font_size - 2);
2583
2584 pdfWriteBlockedLogSignature($pdf, $outputlangs, $this->page_hauteur, $object, $w, $posx, $posy);
2585
2586 /*
2587 $posy += 5;
2588 $pdf->SetXY($posx, $posy);
2589 $pdf->SetTextColor(0, 0, 60);
2590 $pdf->SetFont('', 'B', $default_font_size);
2591 $textref = $outputlangs->transnoentities("Ref")." : ".$outputlangs->convToOutputCharset($object->ref);
2592 if ($object->status == $object::STATUS_DRAFT) {
2593 $pdf->SetTextColor(128, 0, 0);
2594 $textref .= ' - '.$outputlangs->transnoentities("NotValidated");
2595 }
2596 $pdf->MultiCell($w, 4, $textref, '', 'R');*/
2597
2598 $posy += 3;
2599 $pdf->SetFont('', '', $default_font_size - 2);
2600
2601 if ($object->ref_customer) {
2602 $posy += 4;
2603 $pdf->SetXY($posx, $posy);
2604 $pdf->SetTextColor(0, 0, 60);
2605 $pdf->MultiCell($w, 3, $outputlangs->transnoentities("RefCustomer")." : ".dol_trunc($outputlangs->convToOutputCharset($object->ref_customer), 65), '', 'R');
2606 }
2607
2608 if (getDolGlobalString('PDF_SHOW_PROJECT_TITLE')) {
2609 $object->fetchProject();
2610 if (!empty($object->project->ref)) {
2611 $posy += 3;
2612 $pdf->SetXY($posx, $posy);
2613 $pdf->SetTextColor(0, 0, 60);
2614 $pdf->MultiCell($w, 3, $outputlangs->transnoentities("Project")." : ".(empty($object->project->title) ? '' : $object->project->title), '', 'R');
2615 }
2616 }
2617
2618 if (getDolGlobalString('PDF_SHOW_PROJECT')) {
2619 $object->fetchProject();
2620 if (!empty($object->project->ref)) {
2621 $outputlangs->load("projects");
2622 $posy += 3;
2623 $pdf->SetXY($posx, $posy);
2624 $pdf->SetTextColor(0, 0, 60);
2625 $pdf->MultiCell($w, 3, $outputlangs->transnoentities("RefProject")." : ".(empty($object->project->ref) ? '' : $object->project->ref), '', 'R');
2626 }
2627 }
2628
2629 $objectidnext = $object->getIdReplacingInvoice('validated');
2630 if ($object->type == 0 && $objectidnext) {
2631 $objectreplacing = new Facture($this->db);
2632 $objectreplacing->fetch($objectidnext);
2633
2634 $posy += 3;
2635 $pdf->SetXY($posx, $posy);
2636 $pdf->SetTextColor(0, 0, 60);
2637 $pdf->MultiCell($w, 3, $outputlangs->transnoentities("ReplacementByInvoice").' : '.$outputlangs->convToOutputCharset($objectreplacing->ref), '', 'R');
2638 }
2639 if ($object->type == 1) {
2640 $objectreplaced = new Facture($this->db);
2641 $objectreplaced->fetch($object->fk_facture_source);
2642
2643 $posy += 4;
2644 $pdf->SetXY($posx, $posy);
2645 $pdf->SetTextColor(0, 0, 60);
2646 $pdf->MultiCell($w, 3, $outputlangs->transnoentities("ReplacementInvoice").' : '.$outputlangs->convToOutputCharset($objectreplaced->ref), '', 'R');
2647 }
2648 if ($object->type == 2 && !empty($object->fk_facture_source)) {
2649 $objectreplaced = new Facture($this->db);
2650 $objectreplaced->fetch($object->fk_facture_source);
2651
2652 $posy += 3;
2653 $pdf->SetXY($posx, $posy);
2654 $pdf->SetTextColor(0, 0, 60);
2655 $pdf->MultiCell($w, 3, $outputlangs->transnoentities("CorrectionInvoice").' : '.$outputlangs->convToOutputCharset($objectreplaced->ref), '', 'R');
2656 }
2657
2658 $posy += 4;
2659 $pdf->SetXY($posx, $posy);
2660 $pdf->SetTextColor(0, 0, 60);
2661
2662 $title = $outputlangs->transnoentities("DateInvoice");
2663 if (getDolGlobalString('PDF_USE_ALSO_LANGUAGE_CODE') && is_object($outputlangsbis)) {
2664 $title .= ' - '.$outputlangsbis->transnoentities("DateInvoice");
2665 }
2666 $pdf->MultiCell($w, 3, $title." : ".dol_print_date($object->date, "day", false, $outputlangs, true), '', 'R');
2667
2668 if (getDolGlobalString('INVOICE_POINTOFTAX_DATE')) {
2669 $posy += 4;
2670 $pdf->SetXY($posx, $posy);
2671 $pdf->SetTextColor(0, 0, 60);
2672 $pdf->MultiCell($w, 3, $outputlangs->transnoentities("DatePointOfTax")." : ".dol_print_date($object->date_pointoftax, "day", false, $outputlangs), '', 'R');
2673 }
2674
2675 if ($object->type != 2) {
2676 $posy += 3;
2677 $pdf->SetXY($posx, $posy);
2678 $pdf->SetTextColor(0, 0, 60);
2679 $title = $outputlangs->transnoentities("DateDue");
2680 if (getDolGlobalString('PDF_USE_ALSO_LANGUAGE_CODE') && is_object($outputlangsbis)) {
2681 $title .= ' - '.$outputlangsbis->transnoentities("DateDue");
2682 }
2683 $pdf->MultiCell($w, 3, $title." : ".dol_print_date($object->date_lim_reglement, "day", false, $outputlangs, true), '', 'R');
2684 }
2685
2686 if (!getDolGlobalString('MAIN_PDF_HIDE_CUSTOMER_CODE') && $object->thirdparty->code_client) {
2687 $posy += 3;
2688 $pdf->SetXY($posx, $posy);
2689 $pdf->SetTextColor(0, 0, 60);
2690 $pdf->MultiCell($w, 3, $outputlangs->transnoentities("CustomerCode")." : ".$outputlangs->transnoentities($object->thirdparty->code_client), '', 'R');
2691 }
2692
2693 if (!getDolGlobalString('MAIN_PDF_HIDE_CUSTOMER_ACCOUNTING_CODE') && $object->thirdparty->code_compta_client) {
2694 $posy += 3;
2695 $pdf->SetXY($posx, $posy);
2696 $pdf->SetTextColor(0, 0, 60);
2697 $pdf->MultiCell($w, 3, $outputlangs->transnoentities("CustomerAccountancyCode")." : ".$outputlangs->transnoentities($object->thirdparty->code_compta_client), '', 'R');
2698 }
2699
2700 // Get contact
2701 if (getDolGlobalString('DOC_SHOW_FIRST_SALES_REP')) {
2702 $arrayidcontact = $object->getIdContact('internal', 'SALESREPFOLL');
2703 if (count($arrayidcontact) > 0) {
2704 $usertmp = new User($this->db);
2705 $usertmp->fetch($arrayidcontact[0]);
2706 $posy += 4;
2707 $pdf->SetXY($posx, $posy);
2708 $pdf->SetTextColor(0, 0, 60);
2709 $pdf->MultiCell($w, 3, $outputlangs->transnoentities("SalesRepresentative")." : ".$usertmp->getFullName($langs), '', 'R');
2710 }
2711 }
2712
2713 $posy += 1;
2714
2715 $top_shift = 0;
2716 $shipp_shift = 0;
2717 // Show list of linked objects
2718 if (!getDolGlobalString('INVOICE_HIDE_LINKED_OBJECT')) {
2719 $current_y = $pdf->getY();
2720 $posy = pdf_writeLinkedObjects($pdf, $object, $outputlangs, $posx, $posy, $w, 3, 'R', $default_font_size);
2721 if ($current_y < $pdf->getY()) {
2722 $top_shift = $pdf->getY() - $current_y;
2723 }
2724 }
2725
2726 if ($showaddress) {
2727 // Sender properties
2728 $carac_emetteur = '';
2729 // Add internal contact of object if defined
2730 $arrayidcontact = $object->getIdContact('internal', 'BILLING');
2731 if (count($arrayidcontact) > 0) {
2732 $object->fetch_user($arrayidcontact[0]);
2733 $labelbeforecontactname = ($outputlangs->transnoentities("FromContactName") != 'FromContactName' ? $outputlangs->transnoentities("FromContactName") : $outputlangs->transnoentities("Name"));
2734 $carac_emetteur .= ($carac_emetteur ? "\n" : '').$labelbeforecontactname." ".$outputlangs->convToOutputCharset($object->user->getFullName($outputlangs));
2735 $carac_emetteur .= "\n";
2736 }
2737
2738 $carac_emetteur .= pdf_build_address($outputlangs, $this->emetteur, $object->thirdparty, '', 0, 'source', $object);
2739
2740 // Show sender
2741 $posy = getDolGlobalString('MAIN_PDF_USE_ISO_LOCATION') ? 40 : 42;
2742 $posy += $top_shift;
2743 $posx = $this->marge_gauche;
2744 if (getDolGlobalString('MAIN_INVERT_SENDER_RECIPIENT')) {
2745 $posx = $this->page_largeur - $this->marge_droite - 80;
2746 }
2747
2748 $hautcadre = getDolGlobalString('MAIN_PDF_USE_ISO_LOCATION') ? 38 : 40;
2749 $widthrecbox = getDolGlobalString('MAIN_PDF_USE_ISO_LOCATION') ? 92 : 82;
2750
2751 // Show sender frame
2752 if (!getDolGlobalString('MAIN_PDF_NO_SENDER_FRAME')) {
2753 $pdf->SetTextColor(0, 0, 0);
2754 $pdf->SetFont('', '', $default_font_size - 2);
2755 $pdf->SetXY($posx, $posy - 5);
2756 $pdf->MultiCell($widthrecbox, 5, $outputlangs->transnoentities("BillFrom"), 0, $ltrdirection);
2757 $pdf->SetXY($posx, $posy);
2758 $pdf->SetFillColor(230, 230, 230);
2759 $pdf->RoundedRect($posx, $posy, $widthrecbox, $hautcadre, $this->corner_radius, '1234', 'F');
2760 $pdf->SetTextColor(0, 0, 60);
2761 }
2762
2763 // Show sender name
2764 if (!getDolGlobalString('MAIN_PDF_HIDE_SENDER_NAME')) {
2765 $pdf->SetXY($posx + 2, $posy + 3);
2766 $pdf->SetFont('', 'B', $default_font_size);
2767 $pdf->MultiCell($widthrecbox - 2, 4, $outputlangs->convToOutputCharset($this->emetteur->name), 0, $ltrdirection);
2768 $posy = $pdf->getY();
2769 }
2770
2771 // Show sender information
2772 $pdf->SetXY($posx + 2, $posy);
2773 $pdf->SetFont('', '', $default_font_size - 1);
2774 $pdf->MultiCell($widthrecbox - 2, 4, $carac_emetteur, 0, $ltrdirection);
2775
2776 // If BILLING contact defined on invoice, we use it
2777 $usecontact = false;
2778 $arrayidcontact = $object->getIdContact('external', 'BILLING');
2779 if (count($arrayidcontact) > 0) {
2780 $usecontact = true;
2781 $result = $object->fetch_contact($arrayidcontact[0]);
2782 }
2783
2784 // Recipient name
2785 if ($usecontact && ($object->contact->socid != $object->thirdparty->id && (!isset($conf->global->MAIN_USE_COMPANY_NAME_OF_CONTACT) || getDolGlobalString('MAIN_USE_COMPANY_NAME_OF_CONTACT')))) {
2786 $thirdparty = $object->contact;
2787 } else {
2788 $thirdparty = $object->thirdparty;
2789 }
2790
2791 $carac_client_name = is_object($thirdparty) ? pdfBuildThirdpartyName($thirdparty, $outputlangs) : '';
2792
2793 $mode = 'target';
2794 $carac_client = pdf_build_address($outputlangs, $this->emetteur, $object->thirdparty, ($usecontact ? $object->contact : ''), ($usecontact ? 1 : 0), $mode, $object);
2795
2796 // Show recipient
2797 $widthrecbox = getDolGlobalString('MAIN_PDF_USE_ISO_LOCATION') ? 92 : 100;
2798 if ($this->page_largeur < 210) {
2799 $widthrecbox = 84; // To work with US executive format
2800 }
2801 $posy = getDolGlobalString('MAIN_PDF_USE_ISO_LOCATION') ? 40 : 42;
2802 $posy += $top_shift;
2803 $posx = $this->page_largeur - $this->marge_droite - $widthrecbox;
2804 if (getDolGlobalString('MAIN_INVERT_SENDER_RECIPIENT')) {
2805 $posx = $this->marge_gauche;
2806 }
2807
2808 // Show recipient frame
2809 if (!getDolGlobalString('MAIN_PDF_NO_RECIPENT_FRAME')) {
2810 $pdf->SetTextColor(0, 0, 0);
2811 $pdf->SetFont('', '', $default_font_size - 2);
2812 $pdf->SetXY($posx + 2, $posy - 5);
2813 $pdf->MultiCell($widthrecbox - 2, 5, $outputlangs->transnoentities("BillTo"), 0, $ltrdirection);
2814 $pdf->RoundedRect($posx, $posy, $widthrecbox, $hautcadre, $this->corner_radius, '1234', 'D');
2815 }
2816
2817 // Show recipient name
2818 $pdf->SetXY($posx + 2, $posy + 3);
2819 $pdf->SetFont('', 'B', $default_font_size);
2820 // @phan-suppress-next-line PhanPluginSuspiciousParamOrder
2821 $pdf->MultiCell($widthrecbox - 2, 2, $carac_client_name, 0, $ltrdirection);
2822
2823 $posy = $pdf->getY();
2824
2825 // Show recipient information
2826 $pdf->SetFont('', '', $default_font_size - 1);
2827 $pdf->SetXY($posx + 2, $posy);
2828 // @phan-suppress-next-line PhanPluginSuspiciousParamOrder
2829 $pdf->MultiCell($widthrecbox - 2, 4, $carac_client, 0, $ltrdirection);
2830
2831 // Show shipping/delivery address
2832 if (getDolGlobalInt('INVOICE_SHOW_SHIPPING_ADDRESS')) {
2833 $idaddressshipping = $object->getIdContact('external', 'SHIPPING');
2834
2835 if (!empty($idaddressshipping)) {
2836 $object->fetch_contact($idaddressshipping[0]); // Load $object->contact
2837 $companystatic = new Societe($this->db);
2838 $companystatic->fetch($object->contact->fk_soc);
2839 $carac_client_name_shipping = pdfBuildThirdpartyName($object->contact, $outputlangs);
2840 $carac_client_shipping = pdf_build_address($outputlangs, $this->emetteur, $companystatic, $object->contact, 1, 'target', $object);
2841 } else {
2842 $carac_client_name_shipping = pdfBuildThirdpartyName($object->thirdparty, $outputlangs);
2843 $carac_client_shipping = pdf_build_address($outputlangs, $this->emetteur, $object->thirdparty, '', 0, 'target', $object);
2844 }
2845 if (!empty($carac_client_shipping)) {
2846 $posy += $hautcadre;
2847
2848 $hautcadre -= 10; // Height for the shipping address does not need to be as high as main box
2849
2850 // Show shipping frame
2851 $pdf->SetXY($posx + 2, $posy - 5);
2852 $pdf->SetFont('', '', $default_font_size - 2);
2853 $pdf->MultiCell($widthrecbox, 0, $outputlangs->transnoentities('ShippingTo'), 0, 'L', false);
2854 $pdf->RoundedRect($posx, $posy, $widthrecbox, $hautcadre, $this->corner_radius, '1234', 'D');
2855
2856 // Show shipping name
2857 $pdf->SetXY($posx + 2, $posy + 3);
2858 $pdf->SetFont('', 'B', $default_font_size);
2859 $pdf->MultiCell($widthrecbox - 2, 2, $carac_client_name_shipping, '', 'L');
2860
2861 $posy = $pdf->getY();
2862
2863 // Show shipping information
2864 $pdf->SetXY($posx + 2, $posy);
2865 $pdf->SetFont('', '', $default_font_size - 1);
2866 $pdf->MultiCell($widthrecbox - 2, 2, $carac_client_shipping, '', 'L');
2867
2868 $shipp_shift += $hautcadre + 10;
2869 }
2870 }
2871 }
2872
2873 $pdf->SetTextColor(0, 0, 0);
2874
2875 $pagehead = array('top_shift' => $top_shift, 'shipp_shift' => $shipp_shift);
2876
2877 return $pagehead;
2878 }
2879
2880 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
2891 protected function _pagefoot(&$pdf, $object, $outputlangs, $hidefreetext = 0, $heightforqrinvoice = 0)
2892 {
2893 $showdetails = getDolGlobalInt('MAIN_GENERATE_DOCUMENTS_SHOW_FOOT_DETAILS', 0);
2894 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);
2895 }
2896
2907 public function defineColumnField($object, $outputlangs, $hidedetails = 0, $hidedesc = 0, $hideref = 0)
2908 {
2909 global $hookmanager;
2910
2911 // Default field style for content
2912 $this->defaultContentsFieldsStyle = array(
2913 'align' => 'R', // R,C,L
2914 'padding' => array(1, 0.5, 1, 0.5), // Like css 0 => top , 1 => right, 2 => bottom, 3 => left
2915 );
2916
2917 // Default field style for content
2918 $this->defaultTitlesFieldsStyle = array(
2919 'align' => 'C', // R,C,L
2920 'padding' => array(0.5, 0, 0.5, 0), // Like css 0 => top , 1 => right, 2 => bottom, 3 => left
2921 );
2922
2923 /*
2924 * For example
2925 $this->cols['theColKey'] = array(
2926 'rank' => $rank, // int : use for ordering columns
2927 'width' => 20, // the column width in mm
2928 'title' => array(
2929 'textkey' => 'yourLangKey', // if there is no label, yourLangKey will be translated to replace label
2930 'label' => ' ', // the final label : used fore final generated text
2931 'align' => 'L', // text alignment : R,C,L
2932 'padding' => array(0.5,0.5,0.5,0.5), // Like css 0 => top , 1 => right, 2 => bottom, 3 => left
2933 ),
2934 'content' => array(
2935 'align' => 'L', // text alignment : R,C,L
2936 'padding' => array(0.5,0.5,0.5,0.5), // Like css 0 => top , 1 => right, 2 => bottom, 3 => left
2937 ),
2938 );
2939 */
2940
2941 $rank = 0; // do not use negative rank
2942 $this->cols['position'] = array(
2943 'rank' => $rank,
2944 'width' => 10,
2945 'status' => getDolGlobalInt('PDF_SPONGE_ADD_POSITION') ? true : (getDolGlobalInt('PDF_ADD_POSITION') ? true : false),
2946 'title' => array(
2947 'textkey' => '#', // use lang key is useful in some case with module
2948 'align' => 'C',
2949 // 'textkey' => 'yourLangKey', // if there is no label, yourLangKey will be translated to replace label
2950 // 'label' => ' ', // the final label
2951 'padding' => array(0.5, 0.5, 0.5, 0.5), // Like css 0 => top , 1 => right, 2 => bottom, 3 => left
2952 ),
2953 'content' => array(
2954 'align' => 'C',
2955 'padding' => array(1, 0.5, 1, 1.5), // Like css 0 => top , 1 => right, 2 => bottom, 3 => left
2956 ),
2957 );
2958
2959 $rank = 5; // do not use negative rank
2960 $this->cols['desc'] = array(
2961 'rank' => $rank,
2962 'width' => false, // only for desc
2963 'status' => true,
2964 'title' => array(
2965 'textkey' => 'Designation', // use lang key is useful in some case with module
2966 'align' => 'L',
2967 // 'textkey' => 'yourLangKey', // if there is no label, yourLangKey will be translated to replace label
2968 // 'label' => ' ', // the final label
2969 'padding' => array(0.5, 0.5, 0.5, 0.5), // Like css 0 => top , 1 => right, 2 => bottom, 3 => left
2970 ),
2971 'content' => array(
2972 'align' => 'L',
2973 'padding' => array(1, 0.5, 1, 1.5), // Like css 0 => top , 1 => right, 2 => bottom, 3 => left
2974 ),
2975 );
2976
2977 // Image of product
2978 $rank += 10;
2979 $this->cols['photo'] = array(
2980 'rank' => $rank,
2981 'width' => getDolGlobalInt('MAIN_DOCUMENTS_WITH_PICTURE_WIDTH', 20), // in mm
2982 'status' => false,
2983 'title' => array(
2984 'textkey' => 'Photo',
2985 'label' => ' '
2986 ),
2987 'content' => array(
2988 'padding' => array(0, 0, 0, 0), // Like css 0 => top , 1 => right, 2 => bottom, 3 => left
2989 ),
2990 'border-left' => false, // remove left line separator
2991 );
2992
2993 if (getDolGlobalString('MAIN_GENERATE_INVOICES_WITH_PICTURE') && !empty($this->atleastonephoto)) {
2994 $this->cols['photo']['status'] = true;
2995 }
2996
2997
2998 $rank += 10;
2999 $this->cols['vat'] = array(
3000 'rank' => $rank,
3001 'status' => false,
3002 'width' => 16, // in mm
3003 'title' => array(
3004 'textkey' => 'VAT'
3005 ),
3006 'border-left' => true, // add left line separator
3007 );
3008
3009 if (!getDolGlobalString('MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT') && !getDolGlobalString('MAIN_GENERATE_DOCUMENTS_WITHOUT_VAT_COLUMN') && !getDolGlobalBool('PDF_PURCHASE_INVOICE_HIDE_VAT')) {
3010 $this->cols['vat']['status'] = true;
3011 }
3012
3013 $rank += 10;
3014 $this->cols['subprice'] = array(
3015 'rank' => $rank,
3016 'width' => 19, // in mm
3017 'status' => true,
3018 'title' => array(
3019 'textkey' => 'PriceUHT'
3020 ),
3021 'border-left' => true, // add left line separator
3022 );
3023
3024 // Adapt dynamically the width of subprice, if text is too long.
3025 $tmpwidth = 0;
3026 $nblines = count($object->lines);
3027 for ($i = 0; $i < $nblines; $i++) {
3028 $tmpwidth2 = dol_strlen(dol_string_nohtmltag(pdf_getlineupexcltax($object, $i, $outputlangs, $hidedetails)));
3029 $tmpwidth = max($tmpwidth, $tmpwidth2);
3030 }
3031 if ($tmpwidth > 10) {
3032 $this->cols['subprice']['width'] += (2 * ($tmpwidth - 10));
3033 }
3034
3035 $rank += 10;
3036 $this->cols['qty'] = array(
3037 'rank' => $rank,
3038 'width' => 16, // in mm
3039 'status' => true,
3040 'title' => array(
3041 'textkey' => 'Qty'
3042 ),
3043 'border-left' => true, // add left line separator
3044 );
3045
3046 $rank += 10;
3047 $this->cols['progress'] = array(
3048 'rank' => $rank,
3049 'width' => 19, // in mm
3050 'status' => false,
3051 'title' => array(
3052 'textkey' => 'ProgressShort'
3053 ),
3054 'border-left' => true, // add left line separator
3055 );
3056
3057 if ($this->situationinvoice) {
3058 $this->cols['progress']['status'] = true;
3059 }
3060
3061 $rank += 10;
3062 $this->cols['unit'] = array(
3063 'rank' => $rank,
3064 'width' => 11, // in mm
3065 'status' => false,
3066 'title' => array(
3067 'textkey' => 'Unit'
3068 ),
3069 'border-left' => true, // add left line separator
3070 );
3071 if (getDolGlobalInt('PRODUCT_USE_UNITS')) {
3072 $this->cols['unit']['status'] = true;
3073 }
3074
3075 $rank += 10;
3076 $this->cols['discount'] = array(
3077 'rank' => $rank,
3078 'width' => 13, // in mm
3079 'status' => false,
3080 'title' => array(
3081 'textkey' => 'ReductionShort'
3082 ),
3083 'border-left' => true, // add left line separator
3084 );
3085 if ($this->atleastonediscount) {
3086 $this->cols['discount']['status'] = true;
3087 }
3088
3089 $rank += 1000; // add a big offset to be sure is the last col because default extrafield rank is 100
3090 $this->cols['totalexcltax'] = array(
3091 'rank' => $rank,
3092 'width' => 26, // in mm
3093 'status' => !getDolGlobalBool('PDF_INVOICE_HIDE_PRICE_EXCL_TAX') && !getDolGlobalBool('PDF_PURCHASE_INVOICE_HIDE_PRICE_EXCL_TAX'),
3094 'title' => array(
3095 'textkey' => 'TotalHTShort'
3096 ),
3097 'border-left' => true, // add left line separator
3098 );
3099
3100 $rank += 1010; // add a big offset to be sure is the last col because default extrafield rank is 100
3101 $this->cols['totalincltax'] = array(
3102 'rank' => $rank,
3103 'width' => 26, // in mm
3104 'status' => getDolGlobalBool('PDF_INVOICE_SHOW_PRICE_INCL_TAX') && !getDolGlobalBool('PDF_PURCHASE_INVOICE_SHOW_PRICE_INCL_TAX'),
3105 'title' => array(
3106 'textkey' => 'TotalTTCShort'
3107 ),
3108 'border-left' => true, // add left line separator
3109 );
3110
3111 // Add extrafields cols
3112 if (!empty($object->lines)) {
3113 $line = reset($object->lines);
3114 $this->defineColumnExtrafield($line, $outputlangs, $hidedetails);
3115 }
3116
3117 $parameters = array(
3118 'object' => $object,
3119 'outputlangs' => $outputlangs,
3120 'hidedetails' => $hidedetails,
3121 'hidedesc' => $hidedesc,
3122 'hideref' => $hideref
3123 );
3124
3125 $reshook = $hookmanager->executeHooks('defineColumnField', $parameters, $this); // Note that $object may have been modified by hook
3126 if ($reshook < 0) {
3127 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
3128 } elseif (empty($reshook)) {
3129 // @phan-suppress-next-line PhanPluginSuspiciousParamOrderInternal
3130 $this->cols = array_replace($this->cols, $hookmanager->resArray); // array_replace is used to preserve keys
3131 } else {
3132 $this->cols = $hookmanager->resArray;
3133 }
3134 }
3135}
if(! $sortfield) if(! $sortorder) $object
Definition account.php:100
Class to manage bank accounts.
prepareArrayColumnField($object, $outputlangs, $hidedetails=0, $hidedesc=0, $hideref=0)
Prepare Array Column Field.
getColumnStatus($colKey)
get column status from column key
printStdColumnContent($pdf, &$curY, $colKey, $columnText='')
print standard column content
pdfTabTitles(&$pdf, $tab_top, $tab_height, $outputlangs, $hidetop=0)
Print standard column content.
printColDescContent($pdf, &$curY, $colKey, $object, $i, $outputlangs, $hideref=0, $hidedesc=0, $issupplierline=0)
print description column content
getMaxAfterColsLinePositionsData()
Get position in PDF after col display.
getColumnContentXStart($colKey)
get column content X (abscissa) left position from column key
setAfterColsLinePositionsData(string $colId, float $y, int $pageNumb)
Used for to set afterColsLinePositions var in a pdf draw line loop.
getExtrafieldContent($object, $extrafieldKey, $outputlangs=null)
get extrafield content for pdf writeHtmlCell compatibility usage for PDF line columns and object note...
printRoundedRect($pdf, $x, $y, $w, $h, $r, $hidetop=0, $hidebottom=0, $style='D')
Print a rounded rectangle on the PDF.
resetAfterColsLinePositionsData(float $y, int $pageNumb)
Used for reset afterColsLinePositions var in start of a new pdf draw line loop.
defineColumnExtrafield($object, $outputlangs, $hidedetails=0)
Define Array Column Field for extrafields.
Class to manage bank accounts description of third parties.
Class to manage invoices.
const STATUS_DRAFT
Draft status.
const TYPE_CREDIT_NOTE
Credit note invoice.
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 manage PDF invoice template sponge.
write_file($object, $outputlangs, $srctemplatepath='', $hidedetails=0, $hidedesc=0, $hideref=0)
Function to build pdf onto disk.
__construct($db)
Constructor.
defineColumnField($object, $outputlangs, $hidedetails=0, $hidedesc=0, $hideref=0)
Define Array Column Field.
static liste_modeles($db, $maxfilenamelength=0)
Return list of active generation modules.
drawTotalTable(&$pdf, $object, $deja_regle, $posy, $outputlangs, $outputlangsbis)
Show total to pay.
drawPaymentsTable(&$pdf, $object, $posy, $outputlangs)
Show payments table.
_tableau(&$pdf, $tab_top, $tab_height, $nexY, $outputlangs, $hidetop=0, $hidebottom=0, $object='', $outputlangsbis=null)
Show table for lines.
_pagehead(&$pdf, $object, $showaddress, $outputlangs, $outputlangsbis=null)
Show top header of page.
_pagefoot(&$pdf, $object, $outputlangs, $hidefreetext=0, $heightforqrinvoice=0)
Show footer of page.
drawInfoTable(&$pdf, $object, $posy, $outputlangs, $outputlangsbis)
Show miscellaneous information (payment mode, payment term, ...)
getCountry($searchkey, $withcode='', $dbtouse=null, $outputlangs=null, $entconv=1, $searchlabel='')
Return country label, code or id from an id, code or label.
global $mysoc
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...
colorStringToArray($stringcolor, $colorifnotfound=array(88, 88, 88))
Convert a string RGB value ('FFFFFF', '255,255,255') into an array RGB array(255,255,...
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
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.
dol_string_nohtmltag($stringtoclean, $removelinefeed=1, $pagecodeto='UTF-8', $strip_tags=0, $removedoublespaces=1)
Clean a string from all HTML tags and entities.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
getCallerInfoString()
Get caller info as a string that can be appended to a log message.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1, $includequotes=0, $allowdash=0)
Clean a string to use it as a file name.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
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_concatdesc($text1, $text2, $forxml=false, $invert=false)
Concat 2 descriptions with a new line between them (second operand after first one with appropriate n...
getDolCurrency()
Return the main currency ('EUR', 'USD', ...)
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_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false, $decorate=0)
Output date in a string format according to outputlangs (or langs if not defined).
getDolGlobalBool($key, $default=false)
Return a Dolibarr global constant boolean value.
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 a Dolibarr global constant string value.
isModEnabled($module)
Is Dolibarr module enabled.
get_exdir($num, $level, $alpha, $withoutslash, $object, $modulepart='')
Return a path to have a the directory according to object where files are stored.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
getEntity($element, $shared=1, $currentobject=null)
Get list of entity id to use.
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
dolBECalculateStructuredCommunication($invoice_number, $invoice_type)
Calculate Structured Communication / BE Bank payment reference number.
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:2863
pdf_getlinetotalexcltax($object, $i, $outputlangs, $hidedetails=0)
Return line total excluding tax.
Definition pdf.lib.php:2564
pdf_getFormat($outputlangs=null, $mode='setup')
Return array with format properties of default PDF format.
Definition pdf.lib.php:87
pdfGetLineTotalDiscountAmount($object, $i, $outputlangs, $hidedetails=0, $multicurrency=0)
Return line total amount discount.
Definition pdf.lib.php:2895
pdf_getPDFFontSize($outputlangs)
Return font size to use for PDF generation.
Definition pdf.lib.php:289
pdfCertifMention(&$pdf, $outputlangs, $seller, $default_font_size, &$posy, $pdftemplate)
Add legal certificate mention.
Definition pdf.lib.php:908
pdfWriteBlockedLogSignature(&$pdf, $outputlangs, $page_height, $object, &$w, &$posx, &$posy)
Show header of page for PDF generation.
Definition pdf.lib.php:780
pdf_getHeightForLogo($logo, $url=false)
Return height to use for Logo onto PDF.
Definition pdf.lib.php:312
pdf_getlinetotalwithtax($object, $i, $outputlangs, $hidedetails=0)
Return line total including tax.
Definition pdf.lib.php:2614
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:1110
pdf_getlineupexcltax($object, $i, $outputlangs, $hidedetails=0)
Return line unit price excluding tax.
Definition pdf.lib.php:2153
pdf_getlineprogress($object, $i, $outputlangs, $hidedetails=0, $hookmanager=null)
Return line percent.
Definition pdf.lib.php:2484
pdf_getlinevatrate($object, $i, $outputlangs, $hidedetails=0)
Return line vat rate.
Definition pdf.lib.php:2091
pdf_pagehead(&$pdf, $outputlangs, $page_height)
Show header of page for PDF generation.
Definition pdf.lib.php:742
pdf_writeLinkedObjects(&$pdf, $object, $outputlangs, $posx, $posy, $w, $h, $align, $default_font_size)
Show linked objects for PDF generation.
Definition pdf.lib.php:1497
pdf_bank(&$pdf, $outputlangs, $curx, $cury, $account, $onlynumber=0, $default_font_size=10)
Show bank information for PDF generation.
Definition pdf.lib.php:928
pdf_getPDFFont($outputlangs)
Return font name to use for PDF generation.
Definition pdf.lib.php:268
pdf_render_subtotals(TCPDF $pdf, CommonDocGenerator $generator, float $curY, CommonObject $object, int $i, Translate $outputlangs, int $hideref, int $hidedesc, array $bgColor, bool $isSubtotal=false, bool $applySubtotalLogic=true)
Render subtotals line with a colored background and adapted text color .
Definition pdf.lib.php:2993
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:433
pdf_getlineunit($object, $i, $outputlangs, $hidedetails=0)
Return line unit.
Definition pdf.lib.php:2398
pdf_getlineremisepercent($object, $i, $outputlangs, $hidedetails=0)
Return line remise percent.
Definition pdf.lib.php:2441
pdf_getlineqty($object, $i, $outputlangs, $hidedetails=0)
Return line quantity.
Definition pdf.lib.php:2238
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:824
pdf_getInstance($format='', $metric='mm', $pagetype='P')
Return a PDF instance object.
Definition pdf.lib.php:129
pdfBuildThirdpartyName($thirdparty, Translate $outputlangs, $includealias=0)
Returns the name of the thirdparty.
Definition pdf.lib.php:388
if(preg_match('/(crypted|dolcrypt):/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
'integer', 'integer:ObjectClass:PathToClass[:AddCreateButtonOrNot[:Filter[:Sortfield]]]',...
Definition repair.php:125
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition repair.php:128