dolibarr 22.0.5
pdf_eagle.modules.php
Go to the documentation of this file.
1<?php
2
3/* Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
4 * Copyright (C) 2005-2012 Laurent Destailleur <eldy@users.sourceforge.net>
5 * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
6 * Copyright (C) 2014-2015 Marcos García <marcosgdf@gmail.com>
7 * Copyright (C) 2018-2025 Frédéric France <frederic.france@free.fr>
8 * Copyright (C) 2021 Gauthier VERDOL <gauthier.verdol@atm-consulting.fr>
9 * Copyright (C) 2024-2025 MDW <mdeweerd@users.noreply.github.com>
10 * Copyright (C) 2024 Nick Fragoulis
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 3 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program. If not, see <https://www.gnu.org/licenses/>.
24 * or see https://www.gnu.org/
25 */
26
33require_once DOL_DOCUMENT_ROOT.'/core/modules/stocktransfer/modules_stocktransfer.php';
34require_once DOL_DOCUMENT_ROOT.'/product/stock/class/entrepot.class.php';
35require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
36require_once DOL_DOCUMENT_ROOT.'/core/lib/pdf.lib.php';
37require_once DOL_DOCUMENT_ROOT.'/core/lib/product.lib.php';
38
39
44{
48 public $db;
49
53 public $name;
54
58 public $description;
59
63 public $type;
64
69 public $version = 'dolibarr';
70
74 public $posxlot;
75
79 public $posxweightvol;
80
84 public $posxwarehousesource;
85
89 public $posxwarehousedestination;
90
96 public $atLeastOneBatch;
97
103 public function __construct(DoliDB $db)
104 {
105 global $langs, $mysoc;
106
107 $this->db = $db;
108 $this->name = $langs->trans("StockTransferSheet");
109 $this->description = $langs->trans("DocumentModelStandardPDF");
110
111 $this->type = 'pdf';
112 $formatarray = pdf_getFormat();
113 $this->page_largeur = $formatarray['width'];
114 $this->page_hauteur = $formatarray['height'];
115 $this->format = array($this->page_largeur, $this->page_hauteur);
116 $this->marge_gauche = getDolGlobalInt('MAIN_PDF_MARGIN_LEFT', 10);
117 $this->marge_droite = getDolGlobalInt('MAIN_PDF_MARGIN_RIGHT', 10);
118 $this->marge_haute = getDolGlobalInt('MAIN_PDF_MARGIN_TOP', 10);
119 $this->marge_basse = getDolGlobalInt('MAIN_PDF_MARGIN_BOTTOM', 10);
120 $this->corner_radius = getDolGlobalInt('MAIN_PDF_FRAME_CORNER_RADIUS', 0);
121 $this->option_logo = 1; // Display logo
122
123 // Define position of columns
124 $this->posxdesc = $this->marge_gauche + 1;
125 $this->posxlot = $this->page_largeur - $this->marge_droite - 135;
126 $this->posxweightvol = $this->page_largeur - $this->marge_droite - 115;
127 $this->posxqty = $this->page_largeur - $this->marge_droite - 95;
128 $this->posxwarehousesource = $this->page_largeur - $this->marge_droite - 70;
129 $this->posxwarehousedestination = $this->page_largeur - $this->marge_droite - 35;
130 $this->posxpuht = $this->page_largeur - $this->marge_droite;
131
132 /*if (getDolGlobalString('STOCKTRANSFER_PDF_DISPLAY_AMOUNT_HT')) { // Show also the prices
133 $this->posxqty = $this->page_largeur - $this->marge_droite - 118;
134 $this->posxwarehousesource = $this->page_largeur - $this->marge_droite - 96;
135 $this->posxwarehousedestination = $this->page_largeur - $this->marge_droite - 68;
136 $this->posxpuht = $this->page_largeur - $this->marge_droite - 40;
137 $this->posxtotalht = $this->page_largeur - $this->marge_droite - 20;
138 }*/
139
140 if (getDolGlobalString('STOCKTRANSFER_PDF_HIDE_WEIGHT_AND_VOLUME')) {
141 $this->posxweightvol = $this->posxqty;
142 }
143
144 $this->posxpicture = $this->posxweightvol - getDolGlobalInt('MAIN_DOCUMENTS_WITH_PICTURE_WIDTH', 20); // width of images
145 //var_dump($this->posxpicture, $this->posxweightvol);exit;
146
147 // To work with US executive format
148 if ($this->page_largeur < 210) {
149 $this->posxqty -= 20;
150 $this->posxpicture -= 20;
151 $this->posxwarehousesource -= 20;
152 $this->posxwarehousedestination -= 20;
153 }
154
155 /*if (getDolGlobalString('STOCKTRANSFER_PDF_HIDE_ORDERED')) {
156 $this->posxqty += ($this->posxwarehousedestination - $this->posxwarehousesource);
157 $this->posxpicture += ($this->posxwarehousedestination - $this->posxwarehousesource);
158 $this->posxwarehousesource = $this->posxwarehousedestination;
159 }*/
160
161 if ($mysoc === null) {
162 dol_syslog(get_class($this).'::__construct() Global $mysoc should not be null.'. getCallerInfoString(), LOG_ERR);
163 return;
164 }
165
166 // Get source company
167 $this->emetteur = $mysoc;
168 if (empty($this->emetteur->country_code)) {
169 $this->emetteur->country_code = substr($langs->defaultlang, -2);
170 }
171 }
172
173
174 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
186 public function write_file($object, $outputlangs, $srctemplatepath = '', $hidedetails = 0, $hidedesc = 0, $hideref = 0)
187 {
188 // phpcs:enable
189 global $user, $conf, $langs, $hookmanager;
190
191 $object->fetch_thirdparty();
192
193 $this->atLeastOneBatch = $this->atLeastOneBatch($object);
194
195 if (!is_object($outputlangs)) {
196 $outputlangs = $langs;
197 }
198 // For backward compatibility with FPDF, force output charset to ISO, because FPDF expect text to be encoded in ISO
199 if (getDolGlobalString('MAIN_USE_FPDF')) {
200 $outputlangs->charset_output = 'ISO-8859-1';
201 }
202
203 // Load translation files required by page
204 $outputlangs->loadLangs(array("main", "bills", "products", "dict", "companies", "propal", "deliveries", "sendings", "productbatch", "stocks", "stocktransfer@stocktransfer"));
205
206 global $outputlangsbis;
207 $outputlangsbis = null;
208 if (getDolGlobalString('PDF_USE_ALSO_LANGUAGE_CODE') && $outputlangs->defaultlang != getDolGlobalString('PDF_USE_ALSO_LANGUAGE_CODE')) {
209 $outputlangsbis = new Translate('', $conf);
210 $outputlangsbis->setDefaultLang(getDolGlobalString('PDF_USE_ALSO_LANGUAGE_CODE'));
211 $outputlangsbis->loadLangs(array("main", "bills", "orders", "products", "dict", "companies", "propal", "deliveries", "sendings", "productbatch"));
212 }
213
214 $nblines = is_array($object->lines) ? count($object->lines) : 0;
215
216 // Loop on each lines to detect if there is at least one image to show
217 $realpatharray = array();
218 $this->atleastonephoto = false;
219 if (getDolGlobalString('MAIN_GENERATE_STOCKTRANSFER_WITH_PICTURE')) {
220 $objphoto = new Product($this->db);
221
222 for ($i = 0; $i < $nblines; $i++) {
223 if (empty($object->lines[$i]->fk_product)) {
224 continue;
225 }
226
227 $objphoto = new Product($this->db);
228 $objphoto->fetch($object->lines[$i]->fk_product);
229 if (getDolGlobalInt('PRODUCT_USE_OLD_PATH_FOR_PHOTO')) {
230 $pdir = get_exdir($object->lines[$i]->fk_product, 2, 0, 0, $objphoto, 'product').$object->lines[$i]->fk_product."/photos/";
231 $dir = $conf->product->dir_output.'/'.$pdir;
232 } else {
233 $pdir = get_exdir(0, 2, 0, 0, $objphoto, 'product').dol_sanitizeFileName($objphoto->ref).'/';
234 $dir = $conf->product->dir_output.'/'.$pdir;
235 }
236
237 $realpath = '';
238
239 foreach ($objphoto->liste_photos($dir, 1) as $key => $obj) {
240 if (!getDolGlobalInt('CAT_HIGH_QUALITY_IMAGES')) {
241 // If CAT_HIGH_QUALITY_IMAGES not defined, we use thumb if defined and then original photo
242 if ($obj['photo_vignette']) {
243 $filename = $obj['photo_vignette'];
244 } else {
245 $filename = $obj['photo'];
246 }
247 } else {
248 $filename = $obj['photo'];
249 }
250
251 $realpath = $dir.$filename;
252 $this->atleastonephoto = true;
253 break;
254 }
255
256 if ($realpath) {
257 $realpatharray[$i] = $realpath;
258 }
259 }
260 }
261
262 if (count($realpatharray) == 0) {
263 $this->posxpicture = $this->posxweightvol;
264 }
265
266
267 if (!empty($this->atLeastOneBatch)) {
268 $this->posxpicture = $this->posxlot;
269 if (getDolGlobalString('MAIN_GENERATE_STOCKTRANSFER_WITH_PICTURE')) {
270 $this->posxpicture -= getDolGlobalInt('MAIN_DOCUMENTS_WITH_PICTURE_WIDTH', 20);
271 } // width of images
272 }
273
274 if ($conf->stocktransfer->dir_output) {
275 // Definition of $dir and $file
276 if ($object->specimen) {
277 $dir = $conf->stocktransfer->dir_output;
278 $file = $dir."/SPECIMEN.pdf";
279 } else {
280 $stocktransferref = dol_sanitizeFileName($object->ref);
281 $dir = $conf->stocktransfer->dir_output.'/'.$object->element."/".$stocktransferref;
282 $file = $dir."/".$stocktransferref.".pdf";
283 }
284
285 if (!file_exists($dir)) {
286 if (dol_mkdir($dir) < 0) {
287 $this->error = $langs->transnoentities("ErrorCanNotCreateDir", $dir);
288 return 0;
289 }
290 }
291
292 if (file_exists($dir)) {
293 // Add pdfgeneration hook
294 if (!is_object($hookmanager)) {
295 include_once DOL_DOCUMENT_ROOT.'/core/class/hookmanager.class.php';
296 $hookmanager = new HookManager($this->db);
297 }
298 $hookmanager->initHooks(array('pdfgeneration'));
299 $parameters = array('file' => $file, 'object' => $object, 'outputlangs' => $outputlangs);
300 global $action;
301 $reshook = $hookmanager->executeHooks('beforePDFCreation', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
302
303 // Set nblines with the new facture lines content after hook
304 $nblines = is_array($object->lines) ? count($object->lines) : 0;
305
306 $pdf = pdf_getInstance($this->format);
307 $default_font_size = pdf_getPDFFontSize($outputlangs);
308 $heightforinfotot = 8; // Height reserved to output the info and total part
309 $heightforfreetext = getDolGlobalInt('MAIN_PDF_FREETEXT_HEIGHT', 5); // Height reserved to output the free text on last page
310 $heightforfooter = $this->marge_basse + 8; // Height reserved to output the footer (value include bottom margin)
311 if (getDolGlobalString('MAIN_GENERATE_DOCUMENTS_SHOW_FOOT_DETAILS')) {
312 $heightforfooter += 6;
313 }
314 $pdf->setAutoPageBreak(true, 0);
315
316 if (class_exists('TCPDF')) {
317 $pdf->setPrintHeader(false);
318 $pdf->setPrintFooter(false);
319 }
320 $pdf->SetFont(pdf_getPDFFont($outputlangs));
321 // Set path to the background PDF File
322 if (!getDolGlobalString('MAIN_DISABLE_FPDI') && getDolGlobalString('MAIN_ADD_PDF_BACKGROUND')) {
323 $pagecount = $pdf->setSourceFile($conf->mycompany->dir_output.'/' . getDolGlobalString('MAIN_ADD_PDF_BACKGROUND'));
324 $tplidx = $pdf->importPage(1);
325 }
326
327 $pdf->Open();
328 $pagenb = 0;
329 $pdf->SetDrawColor(128, 128, 128);
330
331 if (method_exists($pdf, 'AliasNbPages')) {
332 $pdf->AliasNbPages(); // @phan-suppress-current-line PhanUndeclaredMethod
333 }
334
335 $pdf->SetTitle($outputlangs->convToOutputCharset($object->ref));
336 $pdf->SetSubject($outputlangs->transnoentities("StockTransfer"));
337 $pdf->SetCreator("Dolibarr ".DOL_VERSION);
338 $pdf->SetAuthor($outputlangs->convToOutputCharset($user->getFullName($outputlangs)));
339 $pdf->SetKeyWords($outputlangs->convToOutputCharset($object->ref)." ".$outputlangs->transnoentities("StockTransfer"));
340 if (getDolGlobalString('MAIN_DISABLE_PDF_COMPRESSION')) {
341 $pdf->SetCompression(false);
342 }
343
344 // @phan-suppress-next-line PhanPluginSuspiciousParamOrder
345 $pdf->SetMargins($this->marge_gauche, $this->marge_haute, $this->marge_droite); // Left, Top, Right
346
347 // New page
348 $pdf->AddPage();
349 if (!empty($tplidx)) {
350 $pdf->useTemplate($tplidx);
351 }
352 $pagenb++;
353 $top_shift = $this->_pagehead($pdf, $object, 1, $outputlangs);
354 $pdf->SetFont('', '', $default_font_size - 1);
355 $pdf->MultiCell(0, 3, ''); // Set interline to 3
356 $pdf->SetTextColor(0, 0, 0);
357
358 $tab_top = 90; // position of top tab
359 $tab_top_newpage = (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD') ? 42 + $top_shift : 10);
360
361 $tab_height = $this->page_hauteur - $tab_top - $heightforfooter - $heightforfreetext;
362
363 $tab_height_newpage = 150;
364
365 // Incoterm
366 $height_incoterms = 0;
367 if (isModEnabled('incoterm')) {
368 $desc_incoterms = $object->getIncotermsForPDF();
369 if ($desc_incoterms) {
370 $tab_top -= 2;
371
372 $pdf->SetFont('', '', $default_font_size - 1);
373 $pdf->writeHTMLCell(190, 3, $this->posxdesc - 1, $tab_top - 1, dol_htmlentitiesbr($desc_incoterms), 0, 1);
374 $nexY = $pdf->GetY();
375 $height_incoterms = $nexY - $tab_top;
376
377 // Rect takes a length in 3rd parameter
378 $pdf->SetDrawColor(192, 192, 192);
379 $pdf->RoundedRect($this->marge_gauche, $tab_top - 1, $this->page_largeur - $this->marge_gauche - $this->marge_droite, $height_incoterms + 3, $this->corner_radius, '1234', 'D');
380
381 $tab_top = $nexY + 6;
382 $height_incoterms += 4;
383 }
384 }
385
386 // Public note and Tracking code
387 if (!empty($object->note_public) || !empty($object->tracking_number)) {
388 $tab_top_alt = $tab_top;
389
390 //$tab_top_alt += 1;
391
392 // Tracking number
393 if (!empty($object->tracking_number)) {
394 $height_trackingnumber = 4;
395
396 $pdf->SetFont('', 'B', $default_font_size - 2);
397 $pdf->writeHTMLCell(60, $height_trackingnumber, $this->posxdesc - 1, $tab_top - 1, $outputlangs->transnoentities("TrackingNumber")." : ".$object->tracking_number, 0, 1, false, true, 'L');
398 $tab_top_alt = $pdf->GetY();
399
400 $object->getUrlTrackingStatus($object->tracking_number);
401 if (!empty($object->tracking_url)) {
402 if ($object->shipping_method_id > 0) {
403 // Get code using getLabelFromKey
404 $code = $outputlangs->getLabelFromKey($this->db, (string) $object->shipping_method_id, 'c_shipment_mode', 'rowid', 'code');
405 $label = '';
406 if ($object->tracking_url != $object->tracking_number) {
407 $label .= $outputlangs->trans("LinkToTrackYourPackage")."<br>";
408 }
409 $label .= $outputlangs->trans("SendingMethod").": ".$outputlangs->trans("SendingMethod".strtoupper($code));
410 //var_dump($object->tracking_url != $object->tracking_number);exit;
411 if ($object->tracking_url != $object->tracking_number) {
412 $label .= " : ";
413 $label .= $object->tracking_url;
414 }
415
416 $height_trackingnumber += 4;
417 $pdf->SetFont('', 'B', $default_font_size - 2);
418 $pdf->writeHTMLCell(60, $height_trackingnumber, $this->posxdesc - 1, $tab_top_alt, $label, 0, 1, false, true, 'L');
419 }
420 }
421 $tab_top = $pdf->GetY();
422 }
423
424 // Notes
425 if (!empty($object->note_public)) {
426 $pdf->SetFont('', '', $default_font_size - 1); // Dans boucle pour gerer multi-page
427 $pdf->writeHTMLCell(190, 3, $this->posxdesc - 1, $tab_top_alt, dol_htmlentitiesbr($object->note_public), 0, 1);
428 }
429
430 $nexY = $pdf->GetY();
431 $height_note = $nexY - $tab_top;
432
433 // Rect takes a length in 3rd parameter
434 $pdf->SetDrawColor(192, 192, 192);
435 $pdf->RoundedRect($this->marge_gauche, $tab_top - 1, $this->page_largeur - $this->marge_gauche - $this->marge_droite, $height_note + 2, $this->corner_radius, '1234', 'D');
436
437 $tab_height -= $height_note;
438 $tab_top = $nexY + 6;
439 } else {
440 $height_note = 0;
441 }
442
443 // Show barcode
444 $height_barcode = 0;
445 //$pdf->Rect($this->marge_gauche, $this->marge_haute, $this->page_largeur-$this->marge_gauche-$this->marge_droite, 30);
446 if (isModEnabled('barcode') && getDolGlobalString('BARCODE_ON_STOCKTRANSFER_PDF')) {
447 require_once DOL_DOCUMENT_ROOT.'/core/modules/barcode/doc/tcpdfbarcode.modules.php';
448
449 $encoding = 'QRCODE';
450 $module = new modTcpdfbarcode();
451 $barcode_path = '';
452 $result = 0;
453 if ($module->encodingIsSupported($encoding)) {
454 $result = $module->writeBarCode($object->ref, $encoding);
455
456 // get path of qrcode image
457 $newcode = $object->ref;
458 if (!preg_match('/^\w+$/', $newcode) || dol_strlen($newcode) > 32) {
459 $newcode = dol_hash($newcode, 'md5');
460 }
461 $barcode_path = $conf->barcode->dir_temp . '/barcode_' . $newcode . '_' . $encoding . '.png';
462 }
463
464 if ($result > 0) {
465 $tab_top -= 2;
466
467 $pdf->Image($barcode_path, $this->marge_gauche, $tab_top, 20, 20);
468
469 $nexY = $pdf->GetY();
470 $height_barcode = 20;
471
472 $tab_top += 22;
473 } else {
474 $this->error = 'Failed to generate barcode';
475 }
476 }
477
478 $iniY = $tab_top + 7;
479 $curY = $tab_top + 7;
480 $nexY = $tab_top + 7;
481
482 $TCacheEntrepots = array();
483 // Loop on each lines
484 for ($i = 0; $i < $nblines; $i++) {
485 $curY = $nexY;
486 $pdf->SetFont('', '', $default_font_size - 1); // Into loop to work with multipage
487 $pdf->SetTextColor(0, 0, 0);
488
489 // Define size of image if we need it
490 $imglinesize = array();
491 if (!empty($realpatharray[$i])) {
492 $imglinesize = pdf_getSizeForImage($realpatharray[$i]);
493 }
494
495 $pdf->setTopMargin($tab_top_newpage);
496 $pdf->setPageOrientation('', true, $heightforfooter + $heightforfreetext + $heightforinfotot); // The only function to edit the bottom margin of current page to set it.
497 $pageposbefore = $pdf->getPage();
498
499 $showpricebeforepagebreak = 1;
500 $posYAfterImage = 0;
501 $posYAfterDescription = 0;
502 $heightforsignature = 0;
503
504 // We start with Photo of product line
505 if (isset($imglinesize['width']) && isset($imglinesize['height']) && ($curY + $imglinesize['height']) > ($this->page_hauteur - ($heightforfooter + $heightforfreetext + $heightforinfotot))) { // If photo too high, we moved completely on new page
506 $pdf->AddPage('', '', true);
507 if (!empty($tplidx)) {
508 $pdf->useTemplate($tplidx);
509 }
510 if (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD')) {
511 $this->_pagehead($pdf, $object, 0, $outputlangs);
512 }
513 $pdf->setPage($pageposbefore + 1);
514
515 $curY = $tab_top_newpage;
516
517 // Allows data in the first page if description is long enough to break in multiples pages
518 if (getDolGlobalString('MAIN_PDF_DATA_ON_FIRST_PAGE')) {
519 $showpricebeforepagebreak = 1;
520 } else {
521 $showpricebeforepagebreak = 0;
522 }
523 }
524
525 if (isset($imglinesize['width']) && isset($imglinesize['height'])) {
526 $curX = $this->posxpicture - 1;
527 $pdf->Image($realpatharray[$i], $curX + (($this->posxqty - $this->posxweightvol - $imglinesize['width']
528 + (getDolGlobalString('STOCKTRANSFER_PDF_HIDE_WEIGHT_AND_VOLUME') ? getDolGlobalInt('MAIN_DOCUMENTS_WITH_PICTURE_WIDTH', 20) : 0)) / 2), $curY, $imglinesize['width'], $imglinesize['height'], '', '', '', 2, 300); // Use 300 dpi
529 // $pdf->Image does not increase value return by getY, so we save it manually
530 $posYAfterImage = $curY + $imglinesize['height'];
531 }
532
533 // Description of product line
534 $curX = $this->posxdesc - 1;
535
536 $pdf->startTransaction();
537 if (method_exists($object->lines[$i], 'fetch_product')) {
538 $object->lines[$i]->fetch_product();
539 $object->lines[$i]->label = $object->lines[$i]->product->label;
540 $object->lines[$i]->description = $object->lines[$i]->product->description;
541 $object->lines[$i]->weight = $object->lines[$i]->product->weight;
542 $object->lines[$i]->weight_units = $object->lines[$i]->product->weight_units;
543 $object->lines[$i]->length = $object->lines[$i]->product->length;
544 $object->lines[$i]->length_units = $object->lines[$i]->product->length_units;
545 $object->lines[$i]->surface = $object->lines[$i]->product->surface;
546 $object->lines[$i]->surface_units = $object->lines[$i]->product->surface_units;
547 $object->lines[$i]->volume = $object->lines[$i]->product->volume;
548 $object->lines[$i]->volume_units = $object->lines[$i]->product->volume_units;
549 $object->lines[$i]->fk_unit = $object->lines[$i]->product->fk_unit;
550 //var_dump($object->lines[$i]);exit;
551 }
552
553 pdf_writelinedesc($pdf, $object, $i, $outputlangs, $this->posxpicture - $curX, 3, $curX, $curY, $hideref, $hidedesc);
554
555 $pageposafter = $pdf->getPage();
556 if ($pageposafter > $pageposbefore) { // There is a pagebreak
557 $pdf->rollbackTransaction(true);
558 $pageposafter = $pageposbefore;
559 //print $pageposafter.'-'.$pageposbefore;exit;
560 $pdf->setPageOrientation('', true, $heightforfooter); // The only function to edit the bottom margin of current page to set it.
561 pdf_writelinedesc($pdf, $object, $i, $outputlangs, $this->posxpicture - $curX, 3, $curX, $curY, $hideref, $hidedesc);
562
563 $pageposafter = $pdf->getPage();
564 $posyafter = $pdf->GetY();
565 //var_dump($posyafter); var_dump(($this->page_hauteur - ($heightforfooter+$heightforfreetext+$heightforinfotot))); exit;
566 if ($posyafter > ($this->page_hauteur - ($heightforfooter + $heightforfreetext + $heightforinfotot))) { // There is no space left for total+free text
567 if ($i == ($nblines - 1)) { // No more lines, and no space left to show total, so we create a new page
568 $pdf->AddPage('', '', true);
569 if (!empty($tplidx)) {
570 $pdf->useTemplate($tplidx);
571 }
572 if (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD')) {
573 $this->_pagehead($pdf, $object, 0, $outputlangs);
574 }
575 $pdf->setPage($pageposafter + 1);
576 }
577 } else {
578 // We found a page break
579
580 // Allows data in the first page if description is long enough to break in multiples pages
581 if (getDolGlobalString('MAIN_PDF_DATA_ON_FIRST_PAGE')) {
582 $showpricebeforepagebreak = 1;
583 } else {
584 $showpricebeforepagebreak = 0;
585 }
586 }
587 } else { // No pagebreak
588 $pdf->commitTransaction();
589 }
590 $posYAfterDescription = $pdf->GetY();
591
592 $nexY = max($pdf->GetY(), $posYAfterImage);
593 $pageposafter = $pdf->getPage();
594
595 $pdf->setPage($pageposbefore);
596 $pdf->setTopMargin($this->marge_haute);
597 $pdf->setPageOrientation('', true, 0); // The only function to edit the bottom margin of current page to set it.
598
599 // We suppose that a too long description or photo were moved completely on next page
600 if ($pageposafter > $pageposbefore && empty($showpricebeforepagebreak)) {
601 $pdf->setPage($pageposafter);
602 $curY = $tab_top_newpage;
603 }
604
605 // We suppose that a too long description is moved completely on next page
606 if ($pageposafter > $pageposbefore) {
607 $pdf->setPage($pageposafter);
608 $curY = $tab_top_newpage;
609 }
610
611 $pdf->SetFont('', '', $default_font_size - 1); // We reposition the default font
612
613 // Lot / série
614 if (isModEnabled('productbatch')) {
615 $pdf->SetXY($this->posxlot, $curY);
616 $pdf->MultiCell(($this->posxweightvol - $this->posxlot), 3, $object->lines[$i]->batch, '', 'C');
617 }
618
619 // weight
620
621 $pdf->SetXY($this->posxweightvol, $curY);
622 $weighttxt = '';
623 if (empty($object->lines[$i]->fk_product_type) && $object->lines[$i]->weight) {
624 $weighttxt = round($object->lines[$i]->weight * $object->lines[$i]->qty, 5).' '.measuringUnitString(0, "weight", $object->lines[$i]->weight_units, 1);
625 }
626 $voltxt = '';
627 if (empty($object->lines[$i]->fk_product_type) && $object->lines[$i]->volume) {
628 $voltxt = round($object->lines[$i]->volume * $object->lines[$i]->qty, 5).' '.measuringUnitString(0, "volume", $object->lines[$i]->volume_units ? $object->lines[$i]->volume_units : 0, 1);
629 }
630
631 // Weight
632 if (!getDolGlobalString('STOCKTRANSFER_PDF_HIDE_WEIGHT_AND_VOLUME')) {
633 $pdf->writeHTMLCell($this->posxqty - $this->posxweightvol + 2, 3, $this->posxweightvol - 1, $curY, $weighttxt.(($weighttxt && $voltxt) ? '<br>' : '').$voltxt, 0, 0, false, true, 'C');
634 //$pdf->MultiCell(($this->posxqtyordered - $this->posxweightvol), 3, $weighttxt.(($weighttxt && $voltxt)?'<br>':'').$voltxt,'','C');
635 }
636
637 // Qty
638 $pdf->SetXY($this->posxqty, $curY);
639 $pdf->writeHTMLCell($this->posxwarehousesource - $this->posxqty + 2, 3, $this->posxqty - 1, $curY, (string) $object->lines[$i]->qty, 0, 0, false, true, 'C');
640 //$pdf->MultiCell(($this->posxwarehousesource - $this->posxqty), 3, $weighttxt.(($weighttxt && $voltxt)?'<br>':'').$voltxt,'','C');
641
642 // Warehouse source
643 $wh_source = new Entrepot($this->db);
644 if (!empty($TCacheEntrepots[$object->lines[$i]->fk_warehouse_source])) {
645 $wh_source = $TCacheEntrepots[$object->lines[$i]->fk_warehouse_source];
646 } else {
647 $wh_source->fetch($object->lines[$i]->fk_warehouse_source);
648 $TCacheEntrepots[$object->lines[$i]->fk_warehouse_source] = $wh_source;
649 }
650 $pdf->SetXY($this->posxwarehousesource, $curY);
651 $pdf->MultiCell(($this->posxwarehousedestination - $this->posxwarehousesource), 3, $wh_source->ref.(!empty($wh_source->lieu) ? ' - '.$wh_source->lieu : ''), '', 'C');
652
653 // Warehouse destination
654 $wh_destination = new Entrepot($this->db);
655 if (!empty($TCacheEntrepots[$object->lines[$i]->fk_warehouse_destination])) {
656 $wh_destination = $TCacheEntrepots[$object->lines[$i]->fk_warehouse_destination];
657 } else {
658 $wh_destination->fetch($object->lines[$i]->fk_warehouse_destination);
659 $TCacheEntrepots[$object->lines[$i]->fk_warehouse_destination] = $wh_destination;
660 }
661 $pdf->SetXY($this->posxwarehousedestination, $curY);
662 $pdf->MultiCell(($this->posxpuht - $this->posxwarehousedestination), 3, $wh_destination->ref.(!empty($wh_destination->lieu) ? ' - '.$wh_destination->lieu : ''), '', 'C');
663
664 if (getDolGlobalString('STOCKTRANSFER_PDF_DISPLAY_AMOUNT_HT')) {
665 $pdf->SetXY($this->posxpuht, $curY);
666 $pdf->MultiCell(($this->posxtotalht - $this->posxpuht - 1), 3, price($object->lines[$i]->subprice, 0, $outputlangs), '', 'R');
667
668 $pdf->SetXY($this->posxtotalht, $curY);
669 $pdf->MultiCell(($this->page_largeur - $this->marge_droite - $this->posxtotalht), 3, price($object->lines[$i]->total_ht, 0, $outputlangs), '', 'R');
670 }
671
672 $nexY += 3;
673 if ($weighttxt && $voltxt) {
674 $nexY += 2;
675 }
676
677 // Add line
678 if (getDolGlobalString('MAIN_PDF_DASH_BETWEEN_LINES') && $i < ($nblines - 1)) {
679 $pdf->setPage($pageposafter);
680 $pdf->SetLineStyle(array('dash' => '1,1', 'color' => array(80, 80, 80)));
681 //$pdf->SetDrawColor(190,190,200);
682 $pdf->line($this->marge_gauche, $nexY - 1, $this->page_largeur - $this->marge_droite, $nexY - 1);
683 $pdf->SetLineStyle(array('dash' => 0));
684 }
685
686 // Detect if some page were added automatically and output _tableau for past pages
687 while ($pagenb < $pageposafter) {
688 $pdf->setPage($pagenb);
689 if ($pagenb == 1) {
690 $this->_tableau($pdf, $tab_top, $this->page_hauteur - $tab_top - $heightforfooter, 0, $outputlangs, 0, 1);
691 } else {
692 $this->_tableau($pdf, $tab_top_newpage, $this->page_hauteur - $tab_top_newpage - $heightforfooter, 0, $outputlangs, 1, 1);
693 }
694 $this->_pagefoot($pdf, $object, $outputlangs, 1);
695 $pagenb++;
696 $pdf->setPage($pagenb);
697 $pdf->setPageOrientation('', true, 0); // The only function to edit the bottom margin of current page to set it.
698 if (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD')) {
699 $this->_pagehead($pdf, $object, 0, $outputlangs);
700 }
701 if (!empty($tplidx)) {
702 $pdf->useTemplate($tplidx);
703 }
704 }
705 if (isset($object->lines[$i + 1]->pagebreak) && $object->lines[$i + 1]->pagebreak) { // @phan-suppress-current-line PhanUndeclaredProperty
706 if ($pagenb == 1) {
707 $this->_tableau($pdf, $tab_top, $this->page_hauteur - $tab_top - $heightforfooter, 0, $outputlangs, 0, 1);
708 } else {
709 $this->_tableau($pdf, $tab_top_newpage, $this->page_hauteur - $tab_top_newpage - $heightforfooter, 0, $outputlangs, 1, 1);
710 }
711 $this->_pagefoot($pdf, $object, $outputlangs, 1);
712 // New page
713 $pdf->AddPage();
714 if (!empty($tplidx)) {
715 $pdf->useTemplate($tplidx);
716 }
717 $pagenb++;
718 if (!getDolGlobalInt('MAIN_PDF_DONOTREPEAT_HEAD')) {
719 $this->_pagehead($pdf, $object, 0, $outputlangs);
720 }
721 }
722 }
723
724 // Show square
725 if ($pagenb == 1) {
726 $this->_tableau($pdf, $tab_top, $this->page_hauteur - $tab_top - $heightforinfotot - $heightforfreetext - $heightforfooter, 0, $outputlangs, 0, 0);
727 $bottomlasttab = $this->page_hauteur - $heightforinfotot - $heightforfreetext - $heightforfooter + 1;
728 } else {
729 $this->_tableau($pdf, $tab_top_newpage, $this->page_hauteur - $tab_top_newpage - $heightforinfotot - $heightforfreetext - $heightforfooter, 0, $outputlangs, 1, 0);
730 $bottomlasttab = $this->page_hauteur - $heightforinfotot - $heightforfreetext - $heightforfooter + 1;
731 }
732
733 // Display total area
734 $posy = $this->_tableau_tot($pdf, $object, 0, $bottomlasttab, $outputlangs);
735
736 // Pagefoot
737 $this->_pagefoot($pdf, $object, $outputlangs);
738 if (method_exists($pdf, 'AliasNbPages')) {
739 $pdf->AliasNbPages(); // @phan-suppress-current-line PhanUndeclaredMethod
740 }
741
742 $pdf->Close();
743
744 $pdf->Output($file, 'F');
745
746 // Add pdfgeneration hook
747 $hookmanager->initHooks(array('pdfgeneration'));
748 $parameters = array('file' => $file, 'object' => $object, 'outputlangs' => $outputlangs);
749 global $action;
750 $reshook = $hookmanager->executeHooks('afterPDFCreation', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
751 if ($reshook < 0) {
752 $this->error = $hookmanager->error;
753 $this->errors = $hookmanager->errors;
754 }
755
756 dolChmod($file);
757
758 $this->result = array('fullpath' => $file);
759
760 return 1; // No error
761 } else {
762 $this->error = $langs->transnoentities("ErrorCanNotCreateDir", $dir);
763 return 0;
764 }
765 } else {
766 $this->error = $langs->transnoentities("ErrorConstantNotDefined", "STOCKTRANSFER_OUTPUTDIR");
767 return 0;
768 }
769 }
770
771 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
772 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
783 protected function _tableau_tot(&$pdf, $object, $already_paid, $posy, $outputlangs)
784 {
785 // phpcs:enable
786 $default_font_size = pdf_getPDFFontSize($outputlangs);
787
788 $tab2_top = $posy;
789 $tab2_hl = 4;
790 $pdf->SetFont('', 'B', $default_font_size - 1);
791
792 // Total table
793 $col1x = $this->posxqty - 50;
794 $col2x = $this->posxqty;
795 /*if ($this->page_largeur < 210) // To work with US executive format
796 {
797 $col2x-=20;
798 }*/
799 if (!getDolGlobalString('STOCKTRANSFER_PDF_HIDE_ORDERED')) {
800 $largcol2 = ($this->posxwarehousesource - $this->posxqty);
801 } else {
802 $largcol2 = ($this->posxwarehousedestination - $this->posxqty);
803 }
804
805 $useborder = 0;
806 $index = 0;
807
808 $totalWeight = '';
809 $totalVolume = '';
810 $totalWeighttoshow = '';
811 $totalVolumetoshow = '';
812
813 // Load dim data
814 $tmparray = $object->getTotalWeightVolume();
815 if (!empty($tmparray)) {
816 $totalWeight = $tmparray['weight'];
817 $totalVolume = $tmparray['volume'];
818 }
819 $totalQty = 0;
820 if (!empty($object->lines)) {
821 foreach ($object->lines as $line) {
822 $totalQty += $line->qty;
823 }
824 }
825 // Set trueVolume and volume_units not currently stored into database
826 if ($object->trueWidth && $object->trueHeight && $object->trueDepth) {
827 $object->trueVolume = price(($object->trueWidth * $object->trueHeight * $object->trueDepth), 0, $outputlangs, 0, 0);
828 $object->volume_units = $object->size_units * 3;
829 }
830
831 if ($totalWeight != '') {
832 $totalWeighttoshow = showDimensionInBestUnit($totalWeight, 0, "weight", $outputlangs);
833 }
834 if ($totalVolume != '') {
835 $totalVolumetoshow = showDimensionInBestUnit($totalVolume, 0, "volume", $outputlangs);
836 }
837 if (!empty($object->trueWeight)) {
838 $totalWeighttoshow = showDimensionInBestUnit($object->trueWeight, $object->weight_units, "weight", $outputlangs);
839 }
840 if (!empty($object->trueVolume)) {
841 $totalVolumetoshow = showDimensionInBestUnit($object->trueVolume, $object->volume_units, "volume", $outputlangs);
842 }
843
844 $pdf->SetFillColor(255, 255, 255);
845 $pdf->SetXY($col1x, $tab2_top + $tab2_hl * $index);
846 $pdf->MultiCell($col2x - $col1x, $tab2_hl, $outputlangs->transnoentities("Total"), 0, 'L', true);
847
848 if (!getDolGlobalString('STOCKTRANSFER_PDF_HIDE_ORDERED')) {
849 $pdf->SetXY($this->posxqty, $tab2_top + $tab2_hl * $index);
850 $pdf->MultiCell($this->posxwarehousesource - $this->posxqty, $tab2_hl, (string) $totalQty, 0, 'C', true);
851 }
852
853 if (getDolGlobalString('STOCKTRANSFER_PDF_DISPLAY_AMOUNT_HT')) {
854 $pdf->SetXY($this->posxpuht, $tab2_top + $tab2_hl * $index);
855 $pdf->MultiCell($this->posxtotalht - $this->posxpuht, $tab2_hl, '', 0, 'C', true);
856
857 $pdf->SetXY($this->posxtotalht, $tab2_top + $tab2_hl * $index);
858 $pdf->MultiCell($this->page_largeur - $this->marge_droite - $this->posxtotalht, $tab2_hl, price($object->total_ht, 0, $outputlangs), 0, 'C', true);
859 }
860
861 if (!getDolGlobalString('STOCKTRANSFER_PDF_HIDE_WEIGHT_AND_VOLUME')) {
862 // Total Weight
863 if ($totalWeighttoshow) {
864 $pdf->SetXY($this->posxweightvol, $tab2_top + $tab2_hl * $index);
865 $pdf->MultiCell(($this->posxqty - $this->posxweightvol), $tab2_hl, $totalWeighttoshow, 0, 'C', true);
866
867 $index++;
868 }
869 if ($totalVolumetoshow) {
870 $pdf->SetXY($this->posxweightvol, $tab2_top + $tab2_hl * $index);
871 $pdf->MultiCell(($this->posxqty - $this->posxweightvol), $tab2_hl, $totalVolumetoshow, 0, 'C', true);
872
873 $index++;
874 }
875 if (!$totalWeighttoshow && !$totalVolumetoshow) {
876 $index++;
877 }
878 }
879
880 $pdf->SetTextColor(0, 0, 0);
881
882 return ($tab2_top + ($tab2_hl * $index));
883 }
884
885 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
898 protected function _tableau(&$pdf, $tab_top, $tab_height, $nexY, $outputlangs, $hidetop = 0, $hidebottom = 0)
899 {
900 // phpcs:enable
901 global $conf;
902
903 // Force to disable hidetop and hidebottom
904 $hidebottom = 0;
905 if ($hidetop) {
906 $hidetop = -1;
907 }
908
909 $default_font_size = pdf_getPDFFontSize($outputlangs);
910
911 // Amount in (at tab_top - 1)
912 $pdf->SetTextColor(0, 0, 0);
913 $pdf->SetFont('', '', $default_font_size - 2);
914
915 // Output Rect
916 $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
917
918 $pdf->SetDrawColor(128, 128, 128);
919 $pdf->SetFont('', '', $default_font_size - 1);
920
921 // Description
922 if (empty($hidetop)) {
923 $pdf->line($this->marge_gauche, $tab_top + 5, $this->page_largeur - $this->marge_droite, $tab_top + 5);
924
925 $pdf->SetXY($this->posxdesc - 1, $tab_top + 1);
926 $pdf->MultiCell($this->posxlot - $this->posxdesc, 2, $outputlangs->transnoentities("Description"), '', 'L');
927 }
928
929 if (isModEnabled('productbatch') && $this->atLeastOneBatch) {
930 $pdf->line($this->posxlot - 1, $tab_top, $this->posxlot - 1, $tab_top + $tab_height);
931 if (empty($hidetop)) {
932 $pdf->SetXY($this->posxlot, $tab_top + 1);
933 $pdf->MultiCell(($this->posxweightvol - $this->posxlot), 2, $outputlangs->transnoentities("Batch"), '', 'C');
934 }
935 }
936
937 if (!getDolGlobalString('STOCKTRANSFER_PDF_HIDE_WEIGHT_AND_VOLUME')) {
938 $pdf->line($this->posxweightvol - 1, $tab_top, $this->posxweightvol - 1, $tab_top + $tab_height);
939 if (empty($hidetop)) {
940 $pdf->SetXY($this->posxweightvol - 1, $tab_top + 1);
941 $pdf->MultiCell(($this->posxqty - $this->posxweightvol), 2, $outputlangs->transnoentities("WeightVolShort"), '', 'C');
942 }
943 }
944
945 $pdf->line($this->posxqty - 1, $tab_top, $this->posxqty - 1, $tab_top + $tab_height);
946 if (empty($hidetop)) {
947 $pdf->SetXY($this->posxqty - 1, $tab_top + 1);
948 $pdf->MultiCell(($this->posxwarehousesource - $this->posxqty), 2, $outputlangs->transnoentities("Qty"), '', 'C');
949 }
950
951 $pdf->line($this->posxwarehousesource - 1, $tab_top, $this->posxwarehousesource - 1, $tab_top + $tab_height);
952 if (empty($hidetop)) {
953 $pdf->SetXY($this->posxwarehousesource - 1, $tab_top + 1);
954 $pdf->MultiCell(($this->posxwarehousedestination - $this->posxwarehousesource), 2, $outputlangs->transnoentities("WarehouseSource"), '', 'C');
955 }
956
957
958 $pdf->line($this->posxwarehousedestination - 1, $tab_top, $this->posxwarehousedestination - 1, $tab_top + $tab_height);
959 if (empty($hidetop)) {
960 $pdf->SetXY($this->posxwarehousedestination - 2.5, $tab_top + 1);
961 $pdf->MultiCell(($this->posxpuht - $this->posxwarehousedestination + 4), 2, $outputlangs->transnoentities("WarehouseTarget"), '', 'C');
962 }
963
964 /*if (getDolGlobalString('STOCKTRANSFER_PDF_DISPLAY_AMOUNT_HT')) {
965 $pdf->line($this->posxpuht - 1, $tab_top, $this->posxpuht - 1, $tab_top + $tab_height);
966 if (empty($hidetop))
967 {
968 $pdf->SetXY($this->posxpuht - 1, $tab_top + 1);
969 $pdf->MultiCell(($this->posxtotalht - $this->posxpuht), 2, $outputlangs->transnoentities("PriceUHT"), '', 'C');
970 }
971
972 $pdf->line($this->posxtotalht - 1, $tab_top, $this->posxtotalht - 1, $tab_top + $tab_height);
973 if (empty($hidetop))
974 {
975 $pdf->SetXY($this->posxtotalht - 1, $tab_top + 1);
976 $pdf->MultiCell(($this->page_largeur - $this->marge_droite - $this->posxtotalht), 2, $outputlangs->transnoentities("TotalHT"), '', 'C');
977 }
978 }*/
979 }
980
987 public function atLeastOneBatch($object)
988 {
989 //$atLeastOneBatch = false;
990
991 if (!isModEnabled('productbatch')) {
992 return false;
993 }
994
995 if (!empty($object->lines)) {
996 foreach ($object->lines as $line) {
997 if (!empty($line->batch)) {
998 return true;
999 }
1000 }
1001 }
1002
1003 return false;
1004 }
1005
1006 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
1016 protected function _pagehead(&$pdf, $object, $showaddress, $outputlangs)
1017 {
1018 // phpcs:enable
1019 global $conf, $langs;
1020
1021 // Load traductions files required by page
1022 $outputlangs->loadLangs(array("main", "bills", "propal", "orders", "companies"));
1023
1024 $default_font_size = pdf_getPDFFontSize($outputlangs);
1025
1026 pdf_pagehead($pdf, $outputlangs, $this->page_hauteur);
1027
1028 // Show Draft Watermark
1029 if ($object->statut == 0 && (getDolGlobalString('STOCKTRANSFER_DRAFT_WATERMARK'))) {
1030 pdf_watermark($pdf, $outputlangs, $this->page_hauteur, $this->page_largeur, 'mm', $conf->global->SHIPPING_DRAFT_WATERMARK);
1031 }
1032
1033 //Prepare next
1034 $pdf->SetTextColor(0, 0, 60);
1035 $pdf->SetFont('', 'B', $default_font_size + 3);
1036
1037 $w = 110;
1038
1039 $posy = $this->marge_haute;
1040 $posx = $this->page_largeur - $this->marge_droite - $w;
1041
1042 $pdf->SetXY($this->marge_gauche, $posy);
1043
1044 // Logo
1045 $logo = $conf->mycompany->dir_output.'/logos/'.$this->emetteur->logo;
1046 if ($this->emetteur->logo) {
1047 if (is_readable($logo)) {
1048 $height = pdf_getHeightForLogo($logo);
1049 $pdf->Image($logo, $this->marge_gauche, $posy, 0, $height); // width=0 (auto)
1050 } else {
1051 $pdf->SetTextColor(200, 0, 0);
1052 $pdf->SetFont('', 'B', $default_font_size - 2);
1053 $pdf->MultiCell($w, 3, $outputlangs->transnoentities("ErrorLogoFileNotFound", $logo), 0, 'L');
1054 $pdf->MultiCell($w, 3, $outputlangs->transnoentities("ErrorGoToGlobalSetup"), 0, 'L');
1055 }
1056 } else {
1057 $text = $this->emetteur->name;
1058 $pdf->MultiCell($w, 4, $outputlangs->convToOutputCharset($text), 0, 'L');
1059 }
1060
1061 $pdf->SetDrawColor(128, 128, 128);
1062
1063 $posx = $this->page_largeur - $w - $this->marge_droite;
1064 $posy = $this->marge_haute;
1065
1066 $pdf->SetFont('', 'B', $default_font_size + 2);
1067 $pdf->SetXY($posx, $posy);
1068 $pdf->SetTextColor(0, 0, 60);
1069 $title = $outputlangs->transnoentities("StockTransferSheet").' '.$object->ref;
1070 $pdf->MultiCell($w, 4, $title, '', 'R');
1071
1072 $pdf->SetFont('', '', $default_font_size + 1);
1073
1074 // Date prévue depart
1075 if (!empty($object->date_prevue_depart)) {
1076 $posy += 4;
1077 $pdf->SetXY($posx, $posy);
1078 $pdf->SetTextColor(0, 0, 60);
1079 $pdf->MultiCell($w, 4, $outputlangs->transnoentities("DatePrevueDepart")." : ".dol_print_date($object->date_prevue_depart, "day", false, $outputlangs, true), '', 'R');
1080 }
1081
1082 // Date prévue arrivée
1083 if (!empty($object->date_prevue_arrivee)) {
1084 $posy += 4;
1085 $pdf->SetXY($posx, $posy);
1086 $pdf->SetTextColor(0, 0, 60);
1087 $pdf->MultiCell($w, 4, $outputlangs->transnoentities("DatePrevueArrivee")." : ".dol_print_date($object->date_prevue_arrivee, "day", false, $outputlangs, true), '', 'R');
1088 }
1089
1090 // Date reelle depart
1091 if (!empty($object->date_reelle_depart)) {
1092 $posy += 4;
1093 $pdf->SetXY($posx, $posy);
1094 $pdf->SetTextColor(0, 0, 60);
1095 $pdf->MultiCell($w, 4, $outputlangs->transnoentities("DateReelleDepart")." : ".dol_print_date($object->date_reelle_depart, "day", false, $outputlangs, true), '', 'R');
1096 }
1097
1098 // Date reelle arrivée
1099 if (!empty($object->date_reelle_arrivee)) {
1100 $posy += 4;
1101 $pdf->SetXY($posx, $posy);
1102 $pdf->SetTextColor(0, 0, 60);
1103 $pdf->MultiCell($w, 4, $outputlangs->transnoentities("DateReelleArrivee")." : ".dol_print_date($object->date_reelle_arrivee, "day", false, $outputlangs, true), '', 'R');
1104 }
1105
1106 if (!empty($object->thirdparty->code_client)) {
1107 $posy += 4;
1108 $pdf->SetXY($posx, $posy);
1109 $pdf->SetTextColor(0, 0, 60);
1110 $pdf->MultiCell($w, 3, $outputlangs->transnoentities("CustomerCode")." : ".$outputlangs->transnoentities($object->thirdparty->code_client), '', 'R');
1111 }
1112
1113
1114 $pdf->SetFont('', '', $default_font_size + 3);
1115 $Yoff = 25;
1116
1117 // Add list of linked orders
1118 $origin = $object->origin;
1119 $origin_id = $object->origin_id;
1120
1121 // TODO move to external function
1122 if (isModEnabled($origin)) { // commonly $origin='commande'
1123 $outputlangs->load('orders');
1124
1125 $classname = ucfirst($origin);
1126 $linkedobject = new $classname($this->db);
1127 '@phan-var-force CommonObject $linkedobject';
1128 $result = $linkedobject->fetch($origin_id);
1129 if ($result >= 0) {
1130 //$linkedobject->fetchObjectLinked() Get all linked object to the $linkedobject (commonly order) into $linkedobject->linkedObjects
1131
1132 $pdf->SetFont('', '', $default_font_size - 2);
1133 $text = $linkedobject->ref;
1134 if (isset($linkedobject->ref_client) && !empty($linkedobject->ref_client)) {
1135 $text .= ' ('.$linkedobject->ref_client.')';
1136 }
1137 $Yoff += 8;
1138 $pdf->SetXY($this->page_largeur - $this->marge_droite - $w, $Yoff);
1139 $pdf->MultiCell($w, 2, $outputlangs->transnoentities("RefOrder")." : ".$outputlangs->transnoentities($text), 0, 'R');
1140 $Yoff += 3;
1141 $pdf->SetXY($this->page_largeur - $this->marge_droite - $w, $Yoff);
1142 $pdf->MultiCell($w, 2, $outputlangs->transnoentities("OrderDate")." : ".dol_print_date($linkedobject->date, "day", false, $outputlangs, true), 0, 'R');
1143 }
1144 }
1145
1146 $top_shift = 0;
1147
1148 if ($showaddress) {
1149 // Sender properties
1150 $carac_emetteur = '';
1151 // Add internal contact of origin element if defined
1152 $arrayidcontact = array();
1153 $arrayidcontact = $object->getIdContact('external', 'STFROM');
1154
1155 $usecontact = false;
1156 if (count($arrayidcontact) > 0) {
1157 /*$object->fetch_user(reset($arrayidcontact));
1158 $carac_emetteur .= ($carac_emetteur ? "\n" : '').$outputlangs->transnoentities("Name").": ".$outputlangs->convToOutputCharset($object->user->getFullName($outputlangs))."\n";*/
1159 $usecontact = true;
1160 $result = $object->fetch_contact($arrayidcontact[0]);
1161 }
1162
1163 if ($usecontact) {
1164 $thirdparty = $object->contact;
1165 } else {
1166 $thirdparty = $this->emetteur;
1167 }
1168
1169 if (!empty($thirdparty)) {
1170 $carac_emetteur_name = pdfBuildThirdpartyName($thirdparty, $outputlangs);
1171 } else {
1172 $carac_emetteur_name = '';
1173 }
1174
1175 if ($usecontact) {
1176 $carac_emetteur .= pdf_build_address($outputlangs, $this->emetteur, $object->thirdparty, $object->contact, 1, 'targetwithdetails', $object);
1177 } else {
1178 $carac_emetteur .= pdf_build_address($outputlangs, $this->emetteur, $object->thirdparty, '', 0, 'source', $object);
1179 }
1180
1181 // Show sender
1182 $posy = getDolGlobalString('MAIN_PDF_USE_ISO_LOCATION') ? 40 : 42;
1183 $posx = $this->marge_gauche;
1184 if (getDolGlobalString('MAIN_INVERT_SENDER_RECIPIENT')) {
1185 $posx = $this->page_largeur - $this->marge_droite - 80;
1186 }
1187
1188 $hautcadre = getDolGlobalString('MAIN_PDF_USE_ISO_LOCATION') ? 38 : 40;
1189 $widthrecbox = getDolGlobalString('MAIN_PDF_USE_ISO_LOCATION') ? 92 : 82;
1190
1191 // Show sender frame
1192 $pdf->SetTextColor(0, 0, 0);
1193 $pdf->SetFont('', '', $default_font_size - 2);
1194 $pdf->SetXY($posx, $posy - 5);
1195 $pdf->MultiCell($widthrecbox, 5, $outputlangs->transnoentities("Sender").":", 0, 'L');
1196 $pdf->SetXY($posx, $posy);
1197 $pdf->SetFillColor(230, 230, 230);
1198 $pdf->RoundedRect($posx, $posy, $widthrecbox, $hautcadre, $this->corner_radius, '1234', 'F');
1199 $pdf->SetTextColor(0, 0, 60);
1200 $pdf->SetFillColor(255, 255, 255);
1201
1202 // Show sender name
1203 $pdf->SetXY($posx + 2, $posy + 3);
1204 $pdf->SetFont('', 'B', $default_font_size);
1205 $pdf->MultiCell($widthrecbox - 2, 4, $outputlangs->convToOutputCharset($carac_emetteur_name), 0, 'L');
1206 $posy = $pdf->getY();
1207
1208 // Show sender information
1209 $pdf->SetXY($posx + 2, $posy);
1210 $pdf->SetFont('', '', $default_font_size - 1);
1211 $pdf->MultiCell($widthrecbox - 2, 4, $carac_emetteur, 0, 'L');
1212
1213
1214 // If SHIPPING contact defined, we use it
1215 $usecontact = false;
1216 $arrayidcontact = $object->getIdContact('external', 'STDEST');
1217 if (count($arrayidcontact) > 0) {
1218 $usecontact = true;
1219 $result = $object->fetch_contact($arrayidcontact[0]);
1220 }
1221
1222 //Recipient name
1223 // On peut utiliser le nom de la societe du contact
1224 if ($usecontact/* && !empty($conf->global->MAIN_USE_COMPANY_NAME_OF_CONTACT)*/) {
1225 $thirdparty = $object->contact;
1226 } else {
1227 $thirdparty = $object->thirdparty;
1228 }
1229
1230 $carac_client_name = '';
1231 if (!empty($thirdparty)) {
1232 $carac_client_name = pdfBuildThirdpartyName($thirdparty, $outputlangs);
1233 }
1234
1235 $carac_client = pdf_build_address($outputlangs, $this->emetteur, $object->thirdparty, (!empty($object->contact) ? $object->contact : null), ($usecontact ? 1 : 0), 'targetwithdetails', $object);
1236
1237 // Show recipient
1238 $widthrecbox = getDolGlobalString('MAIN_PDF_USE_ISO_LOCATION') ? 92 : 100;
1239 if ($this->page_largeur < 210) {
1240 $widthrecbox = 84; // To work with US executive format
1241 }
1242 $posy = getDolGlobalString('MAIN_PDF_USE_ISO_LOCATION') ? 40 : 42;
1243 $posx = $this->page_largeur - $this->marge_droite - $widthrecbox;
1244 if (getDolGlobalString('MAIN_INVERT_SENDER_RECIPIENT')) {
1245 $posx = $this->marge_gauche;
1246 }
1247
1248 // Show recipient frame
1249 $pdf->SetTextColor(0, 0, 0);
1250 $pdf->SetFont('', '', $default_font_size - 2);
1251 $pdf->SetXY($posx + 2, $posy - 5);
1252 $pdf->MultiCell($widthrecbox, 5, $outputlangs->transnoentities("Recipient").":", 0, 'L');
1253 $pdf->RoundedRect($posx, $posy, $widthrecbox, $hautcadre, $this->corner_radius, '1234', 'D');
1254
1255 // Show recipient name
1256 $pdf->SetXY($posx + 2, $posy + 3);
1257 $pdf->SetFont('', 'B', $default_font_size);
1258 $pdf->MultiCell($widthrecbox, 2, $carac_client_name, 0, 'L');
1259
1260 $posy = $pdf->getY();
1261
1262 // Show recipient information
1263 $pdf->SetXY($posx + 2, $posy);
1264 $pdf->SetFont('', '', $default_font_size - 1);
1265 $pdf->MultiCell($widthrecbox, 4, $carac_client, 0, 'L');
1266 }
1267
1268 $pdf->SetTextColor(0, 0, 0);
1269
1270 return $top_shift;
1271 }
1272
1273 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.PublicUnderscore
1283 protected function _pagefoot(&$pdf, $object, $outputlangs, $hidefreetext = 0)
1284 {
1285 // phpcs:enable
1286 $showdetails = getDolGlobalInt('MAIN_GENERATE_DOCUMENTS_SHOW_FOOT_DETAILS', 0);
1287 return pdf_pagefoot($pdf, $outputlangs, 'STOCKTRANSFER_FREE_TEXT', $this->emetteur, $this->marge_basse, $this->marge_gauche, $this->page_hauteur, $object, $showdetails, $hidefreetext);
1288 }
1289}
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:67
printRoundedRect($pdf, $x, $y, $w, $h, $r, $hidetop=0, $hidebottom=0, $style='D')
Print a rounded rectangle on the PDF.
Class to manage Dolibarr database access.
Class to manage warehouses.
Class to manage hooks.
Parent class for documents models.
Class to manage products or services.
Class to manage translations.
Class to generate barcode images using tcpdf barcode generator.
Class to build sending documents with model Eagle.
__construct(DoliDB $db)
Constructor.
write_file($object, $outputlangs, $srctemplatepath='', $hidedetails=0, $hidedesc=0, $hideref=0)
Function to build pdf onto disk.
_pagefoot(&$pdf, $object, $outputlangs, $hidefreetext=0)
Show footer of page.
_tableau(&$pdf, $tab_top, $tab_height, $nexY, $outputlangs, $hidetop=0, $hidebottom=0)
Show table for lines.
atLeastOneBatch($object)
Used to know if at least one line of Stock Transfer object has a batch set.
_tableau_tot(&$pdf, $object, $already_paid, $posy, $outputlangs)
Show total to pay.
_pagehead(&$pdf, $object, $showaddress, $outputlangs)
Show top header of page.
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.
getCallerInfoString()
Get caller info as a string that can be appended to a log message.
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.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
showDimensionInBestUnit($dimension, $unit, $type, $outputlangs, $round=-1, $forceunitoutput='no', $use_short_label=0)
Output a dimension with best unit.
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...
dol_sanitizeFileName($str, $newstr='_', $unaccent=1, $includequotes=0)
Clean a string to use it as a file name.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
get_exdir($num, $level, $alpha, $withoutslash, $object, $modulepart='')
Return a path to have a the directory according to object where files are stored.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
Definition member.php:79
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:2731
pdf_writelinedesc(&$pdf, $object, $i, $outputlangs, $w, $h, $posx, $posy, $hideref=0, $hidedesc=0, $issupplierline=0, $align='J')
Output line description into PDF.
Definition pdf.lib.php:1463
pdf_getFormat($outputlangs=null, $mode='setup')
Return array with format properties of default PDF format.
Definition pdf.lib.php:87
pdf_getPDFFontSize($outputlangs)
Return font size to use for PDF generation.
Definition pdf.lib.php:289
pdf_getHeightForLogo($logo, $url=false)
Return height to use for Logo onto PDF.
Definition pdf.lib.php:314
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:1047
pdf_pagehead(&$pdf, $outputlangs, $page_height)
Show header of page for PDF generation.
Definition pdf.lib.php:742
pdf_getPDFFont($outputlangs)
Return font name to use for PDF generation.
Definition pdf.lib.php:266
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:439
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:391
pdf_watermark(&$pdf, $outputlangs, $h, $w, $unit, $text)
Add a draft watermark on PDF files.
Definition pdf.lib.php:798
measuringUnitString($unitid, $measuring_style='', $unitscale=null, $use_short_label=0, $outputlangs=null)
Return translation label of a unit key.
if(preg_match('/(crypted|dolcrypt):/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
Definition repair.php:158
$conf db name
Only used if Module[ID]Name translation string is not found.
Definition repair.php:161
dol_hash($chain, $type='0', $nosalt=0, $mode=0)
Returns a hash (non reversible encryption) of a string.