dolibarr 20.0.0
contrat.class.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2012 Destailleur Laurent <eldy@users.sourceforge.net>
4 * Copyright (C) 2005-2014 Regis Houssin <regis.houssin@inodbox.com>
5 * Copyright (C) 2006 Andre Cianfarani <acianfa@free.fr>
6 * Copyright (C) 2008 Raphael Bertrand <raphael.bertrand@resultic.fr>
7 * Copyright (C) 2010-2016 Juanjo Menent <jmenent@2byte.es>
8 * Copyright (C) 2013 Christophe Battarel <christophe.battarel@altairis.fr>
9 * Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
10 * Copyright (C) 2014-2015 Marcos García <marcosgdf@gmail.com>
11 * Copyright (C) 2018 Nicolas ZABOURI <info@inovea-conseil.com>
12 * Copyright (C) 2018-2024 Frédéric France <frederic.france@free.fr>
13 * Copyright (C) 2015-2018 Ferran Marcet <fmarcet@2byte.es>
14 * Copyright (C) 2024 William Mead <william.mead@manchenumerique.fr>
15 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
16 *
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 3 of the License, or
20 * (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License
28 * along with this program. If not, see <https://www.gnu.org/licenses/>.
29 */
30
37require_once DOL_DOCUMENT_ROOT.'/core/class/commonobject.class.php';
38require_once DOL_DOCUMENT_ROOT."/core/class/commonobjectline.class.php";
39require_once DOL_DOCUMENT_ROOT.'/core/lib/price.lib.php';
40require_once DOL_DOCUMENT_ROOT.'/margin/lib/margins.lib.php';
41
45class Contrat extends CommonObject
46{
50 public $element = 'contrat';
51
55 public $table_element = 'contrat';
56
60 public $table_element_line = 'contratdet';
61
65 public $fk_element = 'fk_contrat';
66
70 public $picto = 'contract';
71
76 public $restrictiononfksoc = 1;
77
81 protected $table_ref_field = 'ref';
82
87 public $ref_customer;
88 public $from;
89
94 public $ref_supplier;
95
100 public $entity;
101
106 public $socid;
107
113 public $fk_soc;
114
115
116 public $societe; // Object societe
117
123 public $statut = 0;
128 public $status = 0;
129
130 public $product;
131
135 public $fk_user_author;
136
142 public $user_author_id;
143
144
149 public $user_creation;
150
154 public $user_cloture;
155
159 public $date_creation;
160
164 public $date_modification;
165
169 public $date_validation;
170
174 public $date_contrat;
175
180 public $signed_status = 0;
181
182 public $commercial_signature_id;
183 public $fk_commercial_signature;
184 public $commercial_suivi_id;
185 public $fk_commercial_suivi;
186
192
193 public $extraparams = array();
194
198 public $lines = array();
199
200 public $nbofservices;
201 public $nbofserviceswait;
202 public $nbofservicesopened;
203 public $nbofservicesexpired;
204 public $nbofservicesclosed;
205 //public $lower_planned_end_date;
206 //public $higher_planner_end_date;
207
212 protected $lines_id_index_mapper = array();
213
214
239 // BEGIN MODULEBUILDER PROPERTIES
243 public $fields = array(
244 'rowid' => array('type' => 'integer', 'label' => 'TechnicalID', 'enabled' => 1, 'visible' => -1, 'notnull' => 1, 'position' => 10),
245 'ref' => array('type' => 'varchar(50)', 'label' => 'Ref', 'enabled' => 1, 'visible' => -1, 'showoncombobox' => 1, 'position' => 15, 'searchall' => 1),
246 'ref_ext' => array('type' => 'varchar(255)', 'label' => 'Ref ext', 'enabled' => 1, 'visible' => 0, 'position' => 20),
247 'ref_customer' => array('type' => 'varchar(50)', 'label' => 'RefCustomer', 'enabled' => 1, 'visible' => -1, 'position' => 25, 'searchall' => 1),
248 'ref_supplier' => array('type' => 'varchar(50)', 'label' => 'RefSupplier', 'enabled' => 1, 'visible' => -1, 'position' => 26, 'searchall' => 1),
249 'entity' => array('type' => 'integer', 'label' => 'Entity', 'default' => '1', 'enabled' => 1, 'visible' => -2, 'notnull' => 1, 'position' => 30, 'index' => 1),
250 'tms' => array('type' => 'timestamp', 'label' => 'DateModification', 'enabled' => 1, 'visible' => -1, 'notnull' => 1, 'position' => 35),
251 'datec' => array('type' => 'datetime', 'label' => 'DateCreation', 'enabled' => 1, 'visible' => -1, 'position' => 40),
252 'date_contrat' => array('type' => 'datetime', 'label' => 'Date contrat', 'enabled' => 1, 'visible' => -1, 'position' => 45),
253 'signed_status' => array('type' => 'smallint(6)', 'label' => 'SignedStatus', 'enabled' => 1, 'visible' => -1, 'position' => 50, 'arrayofkeyval' => array(0 => 'NoSignature', 1 => 'SignedSender', 2 => 'SignedReceiver', 9 => 'SignedAll')),
254 'fk_soc' => array('type' => 'integer:Societe:societe/class/societe.class.php', 'label' => 'ThirdParty', 'enabled' => 'isModEnabled("societe")', 'visible' => -1, 'notnull' => 1, 'position' => 70),
255 'fk_projet' => array('type' => 'integer:Project:projet/class/project.class.php:1:(fk_statut:=:1)', 'label' => 'Project', 'enabled' => "isModEnabled('project')", 'visible' => -1, 'position' => 75),
256 'fk_commercial_signature' => array('type' => 'integer:User:user/class/user.class.php', 'label' => 'SaleRepresentative Signature', 'enabled' => 1, 'visible' => -1, 'position' => 80),
257 'fk_commercial_suivi' => array('type' => 'integer:User:user/class/user.class.php', 'label' => 'SaleRepresentative follower', 'enabled' => 1, 'visible' => -1, 'position' => 85),
258 'fk_user_author' => array('type' => 'integer:User:user/class/user.class.php', 'label' => 'UserAuthor', 'enabled' => 1, 'visible' => -1, 'notnull' => 1, 'position' => 90),
259 'note_public' => array('type' => 'html', 'label' => 'NotePublic', 'enabled' => 1, 'visible' => 0, 'position' => 105, 'searchall' => 1),
260 'note_private' => array('type' => 'html', 'label' => 'NotePrivate', 'enabled' => 1, 'visible' => 0, 'position' => 110, 'searchall' => 1),
261 'model_pdf' => array('type' => 'varchar(255)', 'label' => 'Model pdf', 'enabled' => 1, 'visible' => 0, 'position' => 115),
262 'import_key' => array('type' => 'varchar(14)', 'label' => 'ImportId', 'enabled' => 1, 'visible' => -2, 'position' => 120),
263 'extraparams' => array('type' => 'varchar(255)', 'label' => 'Extraparams', 'enabled' => 1, 'visible' => -1, 'position' => 125),
264 'fk_user_modif' => array('type' => 'integer:User:user/class/user.class.php', 'label' => 'UserModif', 'enabled' => 1, 'visible' => -2, 'notnull' => -1, 'position' => 135),
265 'last_main_doc' => array('type' => 'varchar(255)', 'label' => 'Last main doc', 'enabled' => 1, 'visible' => -1, 'position' => 140),
266 'statut' => array('type' => 'smallint(6)', 'label' => 'Statut', 'enabled' => 1, 'visible' => -1, 'position' => 500, 'notnull' => 1, 'arrayofkeyval' => array(0 => 'Draft', 1 => 'Validated', 2 => 'Closed'))
267 );
268 // END MODULEBUILDER PROPERTIES
269
270 const STATUS_DRAFT = 0;
271 const STATUS_VALIDATED = 1;
272 const STATUS_CLOSED = 2;
273
274 /*
275 * No signature
276 */
277 const STATUS_NO_SIGNATURE = 0;
278
279 /*
280 * Signed by sender
281 */
282 const STATUS_SIGNED_SENDER = 1;
283
284 /*
285 * Signed by receiver
286 */
287 const STATUS_SIGNED_RECEIVER = 2;
288
289 /*
290 * Signed by all
291 */
292 const STATUS_SIGNED_ALL = 9; // To handle future kind of signature (ex: tripartite contract)
293
294
300 public function __construct($db)
301 {
302 $this->db = $db;
303
304 $this->ismultientitymanaged = 1;
305 $this->isextrafieldmanaged = 1;
306 }
307
314 public function getNextNumRef($soc)
315 {
316 global $db, $langs, $conf;
317 $langs->load("contracts");
318
319 if (getDolGlobalString('CONTRACT_ADDON')) {
320 $mybool = false;
321
322 $file = getDolGlobalString('CONTRACT_ADDON') . ".php";
323 $classname = getDolGlobalString('CONTRACT_ADDON');
324
325 // Include file with class
326 $dirmodels = array_merge(array('/'), (array) $conf->modules_parts['models']);
327
328 foreach ($dirmodels as $reldir) {
329 $dir = dol_buildpath($reldir."core/modules/contract/");
330
331 // Load file with numbering class (if found)
332 $mybool = ((bool) @include_once $dir.$file) || $mybool;
333 }
334
335 if (!$mybool) {
336 dol_print_error(null, "Failed to include file ".$file);
337 return '';
338 }
339
340 $obj = new $classname();
341 '@phan-var-force CommonNumRefGenerator $obj';
342 $numref = $obj->getNextValue($soc, $this);
343
344 if ($numref != "") {
345 return $numref;
346 } else {
347 $this->error = $obj->error;
348 dol_print_error($db, get_class($this)."::getNextValue ".$obj->error);
349 return "";
350 }
351 } else {
352 $langs->load("errors");
353 print $langs->trans("Error")." ".$langs->trans("ErrorModuleSetupNotComplete", $langs->transnoentitiesnoconv("Contract"));
354 return "";
355 }
356 }
357
358 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
369 public function active_line($user, $line_id, $date_start, $date_end = '', $comment = '')
370 {
371 // phpcs:enable
372 $result = $this->lines[$this->lines_id_index_mapper[$line_id]]->active_line($user, $date_start, $date_end, $comment);
373 if ($result < 0) {
374 $this->error = $this->lines[$this->lines_id_index_mapper[$line_id]]->error;
375 $this->errors = $this->lines[$this->lines_id_index_mapper[$line_id]]->errors;
376 }
377 return $result;
378 }
379
380
381 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
391 public function close_line($user, $line_id, $date_end, $comment = '')
392 {
393 // phpcs:enable
394 $result = $this->lines[$this->lines_id_index_mapper[$line_id]]->close_line($user, $date_end, $comment);
395 if ($result < 0) {
396 $this->error = $this->lines[$this->lines_id_index_mapper[$line_id]]->error;
397 $this->errors = $this->lines[$this->lines_id_index_mapper[$line_id]]->errors;
398 }
399 return $result;
400 }
401
402
414 public function activateAll($user, $date_start = '', $notrigger = 0, $comment = '', $date_end = '')
415 {
416 if (empty($date_start)) {
417 $date_start = dol_now();
418 }
419
420 $this->db->begin();
421
422 $error = 0;
423
424 // Load lines
425 $this->fetch_lines();
426
427 foreach ($this->lines as $contratline) {
428 // Open lines not already open
429 if ($contratline->statut != ContratLigne::STATUS_OPEN) {
430 $contratline->context = $this->context;
431
432 $result = $contratline->active_line($user, $date_start, !empty($date_end) ? $date_end : -1, $comment); // This call trigger LINECONTRACT_ACTIVATE
433 if ($result < 0) {
434 $error++;
435 $this->error = $contratline->error;
436 $this->errors = $contratline->errors;
437 break;
438 }
439 }
440 }
441
442 if (!$error && $this->statut == 0) {
443 $result = $this->validate($user, '', $notrigger);
444 if ($result < 0) {
445 $error++;
446 }
447 }
448
449 if (!$error) {
450 $this->db->commit();
451 return 1;
452 } else {
453 $this->db->rollback();
454 return -1;
455 }
456 }
457
467 public function closeAll(User $user, $notrigger = 0, $comment = '')
468 {
469 $this->db->begin();
470
471 // Load lines
472 $this->fetch_lines();
473
474 $now = dol_now();
475
476 $error = 0;
477
478 foreach ($this->lines as $contratline) {
479 // Close lines not already closed
480 if ($contratline->statut != ContratLigne::STATUS_CLOSED) {
481 $contratline->date_end_real = $now;
482 $contratline->date_cloture = $now; // For backward compatibility
483 $contratline->user_closing_id = $user->id;
484 $contratline->statut = ContratLigne::STATUS_CLOSED;
485 $result = $contratline->close_line($user, $now, $comment, $notrigger);
486 if ($result < 0) {
487 $error++;
488 $this->error = $contratline->error;
489 $this->errors = $contratline->errors;
490 break;
491 }
492 }
493 }
494
495 if (!$error && $this->statut == 0) {
496 $result = $this->validate($user, '', $notrigger);
497 if ($result < 0) {
498 $error++;
499 }
500 }
501
502 if (!$error) {
503 $this->db->commit();
504 return 1;
505 } else {
506 $this->db->rollback();
507 return -1;
508 }
509 }
510
519 public function validate(User $user, $force_number = '', $notrigger = 0)
520 {
521 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
522 global $conf;
523
524 $now = dol_now();
525
526 $error = 0;
527 dol_syslog(get_class($this).'::validate user='.$user->id.', force_number='.$force_number);
528
529
530 $this->db->begin();
531
532 $this->fetch_thirdparty();
533
534 // A contract is validated so we can move thirdparty to status customer
535 if (!getDolGlobalString('CONTRACT_DISABLE_AUTOSET_AS_CLIENT_ON_CONTRACT_VALIDATION') && $this->thirdparty->fournisseur == 0) {
536 $result = $this->thirdparty->setAsCustomer();
537 }
538
539 // Define new ref
540 if ($force_number) {
541 $num = $force_number;
542 } elseif (!$error && (preg_match('/^[\‍(]?PROV/i', $this->ref) || empty($this->ref))) { // empty should not happened, but when it occurs, the test save life
543 $num = $this->getNextNumRef($this->thirdparty);
544 } else {
545 $num = $this->ref;
546 }
547 $this->newref = dol_sanitizeFileName($num);
548
549 if ($num) {
550 $sql = "UPDATE ".MAIN_DB_PREFIX."contrat SET ref = '".$this->db->escape($num)."', statut = 1";
551 //$sql.= ", fk_user_valid = ".$user->id.", date_valid = '".$this->db->idate($now)."'";
552 $sql .= " WHERE rowid = ".((int) $this->id)." AND statut = 0";
553
554 dol_syslog(get_class($this)."::validate", LOG_DEBUG);
555 $resql = $this->db->query($sql);
556 if (!$resql) {
557 dol_print_error($this->db);
558 $error++;
559 $this->error = $this->db->lasterror();
560 }
561
562 // Trigger calls
563 if (!$error && !$notrigger) {
564 // Call trigger
565 $result = $this->call_trigger('CONTRACT_VALIDATE', $user);
566 if ($result < 0) {
567 $error++;
568 }
569 // End call triggers
570 }
571
572 if (!$error) {
573 $this->oldref = $this->ref;
574
575 // Rename directory if dir was a temporary ref
576 if (preg_match('/^[\‍(]?PROV/i', $this->ref)) {
577 // Now we rename also files into index
578 $sql = 'UPDATE '.MAIN_DB_PREFIX."ecm_files set filename = CONCAT('".$this->db->escape($this->newref)."', SUBSTR(filename, ".(strlen($this->ref) + 1).")), filepath = 'contract/".$this->db->escape($this->newref)."'";
579 $sql .= " WHERE filename LIKE '".$this->db->escape($this->ref)."%' AND filepath = 'contract/".$this->db->escape($this->ref)."' and entity = ".$conf->entity;
580 $resql = $this->db->query($sql);
581 if (!$resql) {
582 $error++;
583 $this->error = $this->db->lasterror();
584 }
585 $sql = 'UPDATE '.MAIN_DB_PREFIX."ecm_files set filepath = 'contract/".$this->db->escape($this->newref)."'";
586 $sql .= " WHERE filepath = 'contract/".$this->db->escape($this->ref)."' and entity = ".$conf->entity;
587 $resql = $this->db->query($sql);
588 if (!$resql) {
589 $error++;
590 $this->error = $this->db->lasterror();
591 }
592
593 // We rename directory ($this->ref = old ref, $num = new ref) in order not to lose the attachments
594 $oldref = dol_sanitizeFileName($this->ref);
595 $newref = dol_sanitizeFileName($num);
596 $dirsource = $conf->contract->dir_output.'/'.$oldref;
597 $dirdest = $conf->contract->dir_output.'/'.$newref;
598 if (!$error && file_exists($dirsource)) {
599 dol_syslog(get_class($this)."::validate rename dir ".$dirsource." into ".$dirdest);
600
601 if (@rename($dirsource, $dirdest)) {
602 dol_syslog("Rename ok");
603 // Rename docs starting with $oldref with $newref
604 $listoffiles = dol_dir_list($conf->contract->dir_output.'/'.$newref, 'files', 1, '^'.preg_quote($oldref, '/'));
605 foreach ($listoffiles as $fileentry) {
606 $dirsource = $fileentry['name'];
607 $dirdest = preg_replace('/^'.preg_quote($oldref, '/').'/', $newref, $dirsource);
608 $dirsource = $fileentry['path'].'/'.$dirsource;
609 $dirdest = $fileentry['path'].'/'.$dirdest;
610 @rename($dirsource, $dirdest);
611 }
612 }
613 }
614 }
615 }
616
617 // Set new ref and define current statut
618 if (!$error) {
619 $this->ref = $num;
620 $this->status = self::STATUS_VALIDATED;
621 $this->statut = self::STATUS_VALIDATED; // deprecated
622 $this->date_validation = $now;
623 }
624 } else {
625 $error++;
626 }
627
628 if (!$error) {
629 $this->db->commit();
630 return 1;
631 } else {
632 $this->db->rollback();
633 return -1;
634 }
635 }
636
644 public function reopen($user, $notrigger = 0)
645 {
646 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
647
648 $now = dol_now();
649
650 $error = 0;
651 dol_syslog(get_class($this).'::reopen user='.$user->id);
652
653 $this->db->begin();
654
655 $this->fetch_thirdparty();
656
657 $sql = "UPDATE ".MAIN_DB_PREFIX."contrat SET statut = 0";
658 //$sql.= ", fk_user_valid = null, date_valid = null";
659 $sql .= " WHERE rowid = ".((int) $this->id)." AND statut = 1";
660
661 dol_syslog(get_class($this)."::validate", LOG_DEBUG);
662 $resql = $this->db->query($sql);
663 if (!$resql) {
664 dol_print_error($this->db);
665 $error++;
666 $this->error = $this->db->lasterror();
667 }
668
669 // Trigger calls
670 if (!$error && !$notrigger) {
671 // Call trigger
672 $result = $this->call_trigger('CONTRACT_REOPEN', $user);
673 if ($result < 0) {
674 $error++;
675 }
676 // End call triggers
677 }
678
679 // Set new ref and define current status
680 if (!$error) {
681 $this->statut = self::STATUS_DRAFT;
682 $this->status = self::STATUS_DRAFT;
683 $this->date_validation = $now;
684 }
685
686 if (!$error) {
687 $this->db->commit();
688 return 1;
689 } else {
690 $this->db->rollback();
691 return -1;
692 }
693 }
694
706 public function fetch($id, $ref = '', $ref_customer = '', $ref_supplier = '', $noextrafields = 0, $nolines = 0)
707 {
708 $sql = "SELECT rowid, statut as status, ref, fk_soc as thirdpartyid,";
709 $sql .= " ref_supplier, ref_customer,";
710 $sql .= " ref_ext,";
711 $sql .= " entity,";
712 $sql .= " date_contrat as datecontrat,";
713 $sql .= " fk_user_author,";
714 $sql .= " fk_projet as fk_project,";
715 $sql .= " fk_commercial_signature, fk_commercial_suivi,";
716 $sql .= " note_private, note_public, model_pdf, last_main_doc, extraparams";
717 $sql .= " FROM ".MAIN_DB_PREFIX."contrat";
718 if (!$id) {
719 $sql .= " WHERE entity IN (".getEntity('contract').")";
720 } else {
721 $sql .= " WHERE rowid = ".(int) $id;
722 }
723 if ($ref_customer) {
724 $sql .= " AND ref_customer = '".$this->db->escape($ref_customer)."'";
725 }
726 if ($ref_supplier) {
727 $sql .= " AND ref_supplier = '".$this->db->escape($ref_supplier)."'";
728 }
729 if ($ref) {
730 $sql .= " AND ref = '".$this->db->escape($ref)."'";
731 }
732
733 dol_syslog(get_class($this)."::fetch", LOG_DEBUG);
734 $resql = $this->db->query($sql);
735 if ($resql) {
736 $num = $this->db->num_rows($resql);
737 if ($num > 1) {
738 $this->error = 'Fetch found several records.';
739 dol_syslog($this->error, LOG_ERR);
740 $result = -2;
741 return 0;
742 } elseif ($num) { // $num = 1
743 $obj = $this->db->fetch_object($resql);
744 if ($obj) {
745 $this->id = $obj->rowid;
746 $this->ref = (!isset($obj->ref) || !$obj->ref) ? $obj->rowid : $obj->ref;
747 $this->ref_customer = $obj->ref_customer;
748 $this->ref_supplier = $obj->ref_supplier;
749 $this->ref_ext = $obj->ref_ext;
750 $this->entity = $obj->entity;
751 $this->statut = $obj->status;
752 $this->status = $obj->status;
753
754 $this->date_contrat = $this->db->jdate($obj->datecontrat);
755 $this->date_creation = $this->db->jdate($obj->datecontrat);
756
757 $this->user_author_id = $obj->fk_user_author;
758
759 $this->commercial_signature_id = $obj->fk_commercial_signature;
760 $this->commercial_suivi_id = $obj->fk_commercial_suivi;
761
762 $this->note_private = $obj->note_private;
763 $this->note_public = $obj->note_public;
764 $this->model_pdf = $obj->model_pdf;
765
766 $this->fk_projet = $obj->fk_project; // deprecated
767 $this->fk_project = $obj->fk_project;
768
769 $this->socid = $obj->thirdpartyid;
770 $this->fk_soc = $obj->thirdpartyid;
771 $this->last_main_doc = $obj->last_main_doc;
772 $this->extraparams = (isset($obj->extraparams) ? (array) json_decode($obj->extraparams, true) : null);
773
774 $this->db->free($resql);
775
776 // Retrieve all extrafields
777 // fetch optionals attributes and labels
778 if (empty($noextrafields)) {
779 $result = $this->fetch_optionals();
780 if ($result < 0) {
781 $this->error = $this->db->lasterror();
782 return -4;
783 }
784 }
785
786 // Lines
787 if (empty($nolines)) {
788 if ($result >= 0 && !empty($this->table_element_line)) {
789 $result = $this->fetch_lines();
790 if ($result < 0) {
791 $this->error = $this->db->lasterror();
792 return -3;
793 }
794 }
795 }
796
797 return $this->id;
798 } else {
799 dol_syslog(get_class($this)."::fetch Contract failed");
800 $this->error = "Fetch contract failed";
801 return -1;
802 }
803 } else {
804 dol_syslog(get_class($this)."::fetch Contract not found");
805 $this->error = "Contract not found";
806 return 0;
807 }
808 } else {
809 dol_syslog(get_class($this)."::fetch Error searching contract");
810 $this->error = $this->db->error();
811 return -1;
812 }
813 }
814
815 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
825 public function fetch_lines($only_services = 0, $loadalsotranslation = 0, $noextrafields = 0)
826 {
827 // phpcs:enable
828 $this->nbofservices = 0;
829 $this->nbofserviceswait = 0;
830 $this->nbofservicesopened = 0;
831 $this->nbofservicesexpired = 0;
832 $this->nbofservicesclosed = 0;
833
834 $total_ttc = 0;
835 $total_vat = 0;
836 $total_ht = 0;
837
838 $now = dol_now();
839
840 $this->lines = array();
841 $pos = 0;
842
843 // Selects contract lines related to a product
844 $sql = "SELECT p.label as product_label, p.description as product_desc, p.ref as product_ref, p.fk_product_type as product_type,";
845 $sql .= " d.rowid, d.fk_contrat, d.statut as status, d.description, d.price_ht, d.vat_src_code, d.tva_tx, d.localtax1_tx, d.localtax2_tx, d.localtax1_type, d.localtax2_type, d.qty, d.remise_percent, d.subprice, d.fk_product_fournisseur_price as fk_fournprice, d.buy_price_ht as pa_ht,";
846 $sql .= " d.total_ht,";
847 $sql .= " d.total_tva,";
848 $sql .= " d.total_localtax1,";
849 $sql .= " d.total_localtax2,";
850 $sql .= " d.total_ttc,";
851 $sql .= " d.info_bits, d.fk_product,";
852 $sql .= " d.date_ouverture_prevue as date_start,";
853 $sql .= " d.date_ouverture as date_start_real,";
854 $sql .= " d.date_fin_validite as date_end,";
855 $sql .= " d.date_cloture as date_end_real,";
856 $sql .= " d.fk_user_author,";
857 $sql .= " d.fk_user_ouverture,";
858 $sql .= " d.fk_user_cloture,";
859 $sql .= " d.fk_unit,";
860 $sql .= " d.product_type as type,";
861 $sql .= " d.rang";
862 $sql .= " FROM ".MAIN_DB_PREFIX."contratdet as d LEFT JOIN ".MAIN_DB_PREFIX."product as p ON d.fk_product = p.rowid";
863 $sql .= " WHERE d.fk_contrat = ".((int) $this->id);
864 if ($only_services == 1) {
865 $sql .= " AND d.product_type = 1";
866 }
867 $sql .= " ORDER by d.rang ASC";
868
869 dol_syslog(get_class($this)."::fetch_lines", LOG_DEBUG);
870 $result = $this->db->query($sql);
871 if ($result) {
872 $num = $this->db->num_rows($result);
873 $i = 0;
874
875 while ($i < $num) {
876 $objp = $this->db->fetch_object($result);
877
878 $line = new ContratLigne($this->db);
879
880 $line->id = $objp->rowid;
881 $line->ref = $objp->rowid;
882 $line->fk_contrat = $objp->fk_contrat;
883 $line->desc = $objp->description; // Description line
884 $line->qty = $objp->qty;
885 $line->vat_src_code = $objp->vat_src_code;
886 $line->tva_tx = $objp->tva_tx;
887 $line->localtax1_tx = $objp->localtax1_tx;
888 $line->localtax2_tx = $objp->localtax2_tx;
889 $line->localtax1_type = $objp->localtax1_type;
890 $line->localtax2_type = $objp->localtax2_type;
891 $line->subprice = $objp->subprice;
892 $line->statut = $objp->status;
893 $line->status = $objp->status;
894 $line->remise_percent = $objp->remise_percent;
895 $line->price_ht = $objp->price_ht;
896 $line->price = $objp->price_ht; // For backward compatibility
897 $line->total_ht = $objp->total_ht;
898 $line->total_tva = $objp->total_tva;
899 $line->total_localtax1 = $objp->total_localtax1;
900 $line->total_localtax2 = $objp->total_localtax2;
901 $line->total_ttc = $objp->total_ttc;
902 $line->fk_product = (($objp->fk_product > 0) ? $objp->fk_product : 0);
903 $line->info_bits = $objp->info_bits;
904 $line->type = $objp->type;
905
906 $line->fk_fournprice = $objp->fk_fournprice;
907 $marginInfos = getMarginInfos($objp->subprice, $objp->remise_percent, $objp->tva_tx, $objp->localtax1_tx, $objp->localtax2_tx, $objp->fk_fournprice, $objp->pa_ht);
908 $line->pa_ht = $marginInfos[0];
909
910 $line->fk_user_author = $objp->fk_user_author;
911 $line->fk_user_ouverture = $objp->fk_user_ouverture;
912 $line->fk_user_cloture = $objp->fk_user_cloture;
913 $line->fk_unit = $objp->fk_unit;
914
915 $line->ref = $objp->product_ref; // deprecated
916 $line->product_ref = $objp->product_ref; // Product Ref
917 $line->product_type = $objp->product_type; // Product Type
918 $line->product_desc = $objp->product_desc; // Product Description
919 $line->product_label = $objp->product_label; // Product Label
920
921 $line->description = $objp->description;
922
923 $line->date_start = $this->db->jdate($objp->date_start);
924 $line->date_start_real = $this->db->jdate($objp->date_start_real);
925 $line->date_end = $this->db->jdate($objp->date_end);
926 $line->date_end_real = $this->db->jdate($objp->date_end_real);
927 // For backward compatibility
928 //$line->date_ouverture_prevue = $this->db->jdate($objp->date_ouverture_prevue);
929 //$line->date_ouverture = $this->db->jdate($objp->date_ouverture);
930 //$line->date_fin_validite = $this->db->jdate($objp->date_fin_validite);
931 //$line->date_cloture = $this->db->jdate($objp->date_cloture);
932 //$line->date_debut_prevue = $this->db->jdate($objp->date_ouverture_prevue);
933 //$line->date_debut_reel = $this->db->jdate($objp->date_ouverture);
934 //$line->date_fin_prevue = $this->db->jdate($objp->date_fin_validite);
935 //$line->date_fin_reel = $this->db->jdate($objp->date_cloture);
936
937 $line->rang = $objp->rang;
938
939 // Retrieve all extrafields for contract line
940 // fetch optionals attributes and labels
941 if (empty($noextrafields)) {
942 $line->fetch_optionals();
943 }
944
945 // multilangs
946 if (getDolGlobalInt('MAIN_MULTILANGS') && !empty($objp->fk_product) && !empty($loadalsotranslation)) {
947 $tmpproduct = new Product($this->db);
948 $tmpproduct->fetch($objp->fk_product);
949 $tmpproduct->getMultiLangs();
950
951 $line->multilangs = $tmpproduct->multilangs;
952 }
953
954 $this->lines[$pos] = $line;
955
956 $this->lines_id_index_mapper[$line->id] = $pos;
957
958 //dol_syslog("1 ".$line->desc);
959 //dol_syslog("2 ".$line->product_desc);
960
961 if ($line->statut == ContratLigne::STATUS_INITIAL) {
962 $this->nbofserviceswait++;
963 }
964 if ($line->statut == ContratLigne::STATUS_OPEN && (empty($line->date_end) || $line->date_end >= $now)) {
965 $this->nbofservicesopened++;
966 }
967 if ($line->statut == ContratLigne::STATUS_OPEN && (!empty($line->date_end) && $line->date_end < $now)) {
968 $this->nbofservicesexpired++;
969 }
970 if ($line->statut == ContratLigne::STATUS_CLOSED) {
971 $this->nbofservicesclosed++;
972 }
973
974 $total_ttc += $objp->total_ttc; // TODO Not saved into database
975 $total_vat += $objp->total_tva;
976 $total_ht += $objp->total_ht;
977
978 $i++;
979 $pos++;
980 }
981 $this->db->free($result);
982 } else {
983 dol_syslog(get_class($this)."::Fetch Error when reading lines of contracts linked to products");
984 return -3;
985 }
986
987 // Now set the global properties on contract not stored into database.
988 $this->nbofservices = count($this->lines);
989 $this->total_ttc = (float) price2num($total_ttc);
990 $this->total_tva = (float) price2num($total_vat);
991 $this->total_ht = (float) price2num($total_ht);
992
993 return $this->lines;
994 }
995
1002 public function create($user)
1003 {
1004 global $conf, $langs, $mysoc;
1005
1006 // Check parameters
1007 $paramsok = 1;
1008 if ($this->commercial_signature_id <= 0) {
1009 $langs->load("commercial");
1010 $this->error .= $langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("SalesRepresentativeSignature"));
1011 $paramsok = 0;
1012 }
1013 if ($this->commercial_suivi_id <= 0) {
1014 $langs->load("commercial");
1015 $this->error .= ($this->error ? "<br>" : '');
1016 $this->error .= $langs->trans("ErrorFieldRequired", $langs->transnoentitiesnoconv("SalesRepresentativeFollowUp"));
1017 $paramsok = 0;
1018 }
1019 if (!$paramsok) {
1020 return -1;
1021 }
1022
1023
1024 $this->db->begin();
1025
1026 $now = dol_now();
1027
1028 // Insert contract
1029 $sql = "INSERT INTO ".MAIN_DB_PREFIX."contrat (datec, fk_soc, fk_user_author, date_contrat,";
1030 $sql .= " fk_commercial_signature, fk_commercial_suivi, fk_projet,";
1031 $sql .= " ref, entity, note_private, note_public, ref_customer, ref_supplier, ref_ext)";
1032 $sql .= " VALUES ('".$this->db->idate($now)."', ".((int) $this->socid).", ".((int) $user->id);
1033 $sql .= ", ".(dol_strlen($this->date_contrat) != 0 ? "'".$this->db->idate($this->date_contrat)."'" : "NULL");
1034 $sql .= ",".($this->commercial_signature_id > 0 ? ((int) $this->commercial_signature_id) : "NULL");
1035 $sql .= ",".($this->commercial_suivi_id > 0 ? ((int) $this->commercial_suivi_id) : "NULL");
1036 $sql .= ",".($this->fk_project > 0 ? ((int) $this->fk_project) : "NULL");
1037 $sql .= ", ".(dol_strlen($this->ref) <= 0 ? "null" : "'".$this->db->escape($this->ref)."'");
1038 $sql .= ", ".((int) $conf->entity);
1039 $sql .= ", ".(!empty($this->note_private) ? ("'".$this->db->escape($this->note_private)."'") : "NULL");
1040 $sql .= ", ".(!empty($this->note_public) ? ("'".$this->db->escape($this->note_public)."'") : "NULL");
1041 $sql .= ", ".(!empty($this->ref_customer) ? ("'".$this->db->escape($this->ref_customer)."'") : "NULL");
1042 $sql .= ", ".(!empty($this->ref_supplier) ? ("'".$this->db->escape($this->ref_supplier)."'") : "NULL");
1043 $sql .= ", ".(!empty($this->ref_ext) ? ("'".$this->db->escape($this->ref_ext)."'") : "NULL");
1044 $sql .= ")";
1045 $resql = $this->db->query($sql);
1046
1047 if ($resql) {
1048 $error = 0;
1049
1050 $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX."contrat");
1051
1052 // Load object modContract
1053 $module = (getDolGlobalString('CONTRACT_ADDON') ? $conf->global->CONTRACT_ADDON : 'mod_contract_serpis');
1054 if (substr($module, 0, 13) == 'mod_contract_' && substr($module, -3) == 'php') {
1055 $module = substr($module, 0, dol_strlen($module) - 4);
1056 }
1057 $result = dol_include_once('/core/modules/contract/'.$module.'.php');
1058 if ($result > 0) {
1059 $modCodeContract = new $module();
1060 '@phan-var-force CommonNumRefGenerator $modCodeContrat';
1061
1062 if (!empty($modCodeContract->code_auto)) {
1063 // Force the ref to a draft value if numbering module is an automatic numbering
1064 $sql = 'UPDATE '.MAIN_DB_PREFIX."contrat SET ref='(PROV".$this->id.")' WHERE rowid=".((int) $this->id);
1065 if ($this->db->query($sql)) {
1066 if ($this->id) {
1067 $this->ref = "(PROV".$this->id.")";
1068 }
1069 }
1070 }
1071 }
1072
1073 if (!$error) {
1074 $result = $this->insertExtraFields();
1075 if ($result < 0) {
1076 $error++;
1077 }
1078 }
1079
1080 // Insert business contacts ('SALESREPSIGN','contrat')
1081 if (!$error) {
1082 $result = $this->add_contact($this->commercial_signature_id, 'SALESREPSIGN', 'internal');
1083 if ($result < 0) {
1084 $error++;
1085 }
1086 }
1087
1088 // Insert business contacts ('SALESREPFOLL','contrat')
1089 if (!$error) {
1090 $result = $this->add_contact($this->commercial_suivi_id, 'SALESREPFOLL', 'internal');
1091 if ($result < 0) {
1092 $error++;
1093 }
1094 }
1095
1096 if (!$error) {
1097 if (!empty($this->linkedObjectsIds) && empty($this->linked_objects)) { // To use new linkedObjectsIds instead of old linked_objects
1098 $this->linked_objects = $this->linkedObjectsIds; // TODO Replace linked_objects with linkedObjectsIds
1099 }
1100
1101 // Add object linked
1102 if (!$error && $this->id && !empty($this->linked_objects) && is_array($this->linked_objects)) {
1103 foreach ($this->linked_objects as $origin => $tmp_origin_id) {
1104 if (is_array($tmp_origin_id)) { // New behaviour, if linked_object can have several links per type, so is something like array('contract'=>array(id1, id2, ...))
1105 foreach ($tmp_origin_id as $origin_id) {
1106 $ret = $this->add_object_linked($origin, $origin_id);
1107 if (!$ret) {
1108 $this->error = $this->db->lasterror();
1109 $error++;
1110 }
1111 }
1112 } else { // Old behaviour, if linked_object has only one link per type, so is something like array('contract'=>id1))
1113 $origin_id = $tmp_origin_id;
1114 $ret = $this->add_object_linked($origin, $origin_id);
1115 if (!$ret) {
1116 $this->error = $this->db->lasterror();
1117 $error++;
1118 }
1119 }
1120 }
1121 }
1122
1123 if (!$error && $this->id && getDolGlobalString('MAIN_PROPAGATE_CONTACTS_FROM_ORIGIN') && !empty($this->origin) && !empty($this->origin_id)) { // Get contact from origin object
1124 $originforcontact = $this->origin;
1125 $originidforcontact = $this->origin_id;
1126 if ($originforcontact == 'shipping') { // shipment and order share the same contacts. If creating from shipment we take data of order
1127 require_once DOL_DOCUMENT_ROOT.'/expedition/class/expedition.class.php';
1128 $exp = new Expedition($this->db);
1129 $exp->fetch($this->origin_id);
1130 $exp->fetchObjectLinked();
1131 if (count($exp->linkedObjectsIds['commande']) > 0) {
1132 foreach ($exp->linkedObjectsIds['commande'] as $key => $value) {
1133 $originforcontact = 'commande';
1134 $originidforcontact = $value;
1135 break; // We take first one
1136 }
1137 }
1138 }
1139
1140 $sqlcontact = "SELECT ctc.code, ctc.source, ec.fk_socpeople FROM ".MAIN_DB_PREFIX."element_contact as ec, ".MAIN_DB_PREFIX."c_type_contact as ctc";
1141 $sqlcontact .= " WHERE element_id = ".((int) $originidforcontact)." AND ec.fk_c_type_contact = ctc.rowid AND ctc.element = '".$this->db->escape($originforcontact)."'";
1142
1143 $resqlcontact = $this->db->query($sqlcontact);
1144 if ($resqlcontact) {
1145 while ($objcontact = $this->db->fetch_object($resqlcontact)) {
1146 if ($objcontact->source == 'internal' && in_array($objcontact->code, array('SALESREPSIGN', 'SALESREPFOLL'))) {
1147 continue; // ignore this, already forced previously
1148 }
1149
1150 $this->add_contact($objcontact->fk_socpeople, $objcontact->code, $objcontact->source); // May failed because of duplicate key or because code of contact type does not exists for new object
1151 }
1152 } else {
1153 dol_print_error($resqlcontact);
1154 }
1155 }
1156 }
1157
1158 if (!$error) {
1159 // Call trigger
1160 $result = $this->call_trigger('CONTRACT_CREATE', $user);
1161 if ($result < 0) {
1162 $error++;
1163 }
1164 // End call triggers
1165
1166 if (!$error) {
1167 $this->db->commit();
1168 return $this->id;
1169 } else {
1170 dol_syslog(get_class($this)."::create - 30 - ".$this->error, LOG_ERR);
1171 $this->db->rollback();
1172 return -3;
1173 }
1174 } else {
1175 $this->error = "Failed to add contract";
1176 dol_syslog(get_class($this)."::create - 20 - ".$this->error, LOG_ERR);
1177 $this->db->rollback();
1178 return -2;
1179 }
1180 } else {
1181 $this->error = $langs->trans("UnknownError").": ".$this->db->error();
1182 dol_syslog(get_class($this)."::create - 10 - ".$this->error, LOG_ERR);
1183
1184 $this->db->rollback();
1185 return -1;
1186 }
1187 }
1188
1189
1196 public function delete($user)
1197 {
1198 global $conf;
1199
1200 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
1201
1202 $error = 0;
1203
1204 $this->db->begin();
1205
1206 // Call trigger
1207 $result = $this->call_trigger('CONTRACT_DELETE', $user);
1208 if ($result < 0) {
1209 $error++;
1210 }
1211 // End call triggers
1212
1213 if (!$error) {
1214 // Delete linked contacts
1215 $res = $this->delete_linked_contact();
1216 if ($res < 0) {
1217 dol_syslog(get_class($this)."::delete error", LOG_ERR);
1218 $error++;
1219 }
1220 }
1221
1222 if (!$error) {
1223 // Delete linked object
1224 $res = $this->deleteObjectLinked();
1225 if ($res < 0) {
1226 $error++;
1227 }
1228 }
1229
1230 // Delete lines
1231 if (!$error) {
1232 // Delete contratdet extrafields
1233 $main = MAIN_DB_PREFIX.'contratdet';
1234 $ef = $main."_extrafields";
1235 $sql = "DELETE FROM ".$ef." WHERE fk_object IN (SELECT rowid FROM ".$main." WHERE fk_contrat = ".((int) $this->id).")";
1236
1237 dol_syslog(get_class($this)."::delete contratdet_extrafields", LOG_DEBUG);
1238 $resql = $this->db->query($sql);
1239 if (!$resql) {
1240 $this->error = $this->db->error();
1241 $error++;
1242 }
1243 }
1244
1245 if (!$error) {
1246 // Delete contratdet
1247 $sql = "DELETE FROM ".MAIN_DB_PREFIX."contratdet";
1248 $sql .= " WHERE fk_contrat=".((int) $this->id);
1249
1250 dol_syslog(get_class($this)."::delete contratdet", LOG_DEBUG);
1251 $resql = $this->db->query($sql);
1252 if (!$resql) {
1253 $this->error = $this->db->error();
1254 $error++;
1255 }
1256 }
1257
1258 // Delete llx_ecm_files
1259 if (!$error) {
1260 $sql = 'DELETE FROM '.MAIN_DB_PREFIX."ecm_files WHERE src_object_type = '".$this->db->escape($this->table_element.(empty($this->module) ? "" : "@".$this->module))."' AND src_object_id = ".((int) $this->id);
1261 $resql = $this->db->query($sql);
1262 if (!$resql) {
1263 $this->error = $this->db->lasterror();
1264 $this->errors[] = $this->error;
1265 $error++;
1266 }
1267 }
1268
1269 // Delete contract
1270 if (!$error) {
1271 $sql = "DELETE FROM ".MAIN_DB_PREFIX."contrat";
1272 $sql .= " WHERE rowid=".((int) $this->id);
1273
1274 dol_syslog(get_class($this)."::delete contrat", LOG_DEBUG);
1275 $resql = $this->db->query($sql);
1276 if (!$resql) {
1277 $this->error = $this->db->error();
1278 $error++;
1279 }
1280 }
1281
1282 // Removed extrafields
1283 if (!$error) {
1284 $result = $this->deleteExtraFields();
1285 if ($result < 0) {
1286 $error++;
1287 dol_syslog(get_class($this)."::delete error -3 ".$this->error, LOG_ERR);
1288 }
1289 }
1290
1291 if (!$error) {
1292 // We remove directory
1293 $ref = dol_sanitizeFileName($this->ref);
1294 if ($conf->contrat->dir_output) {
1295 $dir = $conf->contrat->multidir_output[$this->entity]."/".$ref;
1296 if (file_exists($dir)) {
1297 $res = @dol_delete_dir_recursive($dir);
1298 if (!$res) {
1299 $this->error = 'ErrorFailToDeleteDir';
1300 $error++;
1301 }
1302 }
1303 }
1304 }
1305
1306 if (!$error) {
1307 $this->db->commit();
1308 return 1;
1309 } else {
1310 $this->error = $this->db->lasterror();
1311 $this->db->rollback();
1312 return -1;
1313 }
1314 }
1315
1323 public function update($user, $notrigger = 0)
1324 {
1325 global $conf;
1326 $error = 0;
1327
1328 // Clean parameters
1329 if (empty($this->fk_commercial_signature) && $this->commercial_signature_id > 0) {
1330 $this->fk_commercial_signature = $this->commercial_signature_id;
1331 }
1332 if (empty($this->fk_commercial_suivi) && $this->commercial_suivi_id > 0) {
1333 $this->fk_commercial_suivi = $this->commercial_suivi_id;
1334 }
1335 if (empty($this->socid) && $this->fk_soc > 0) {
1336 $this->socid = (int) $this->fk_soc;
1337 }
1338 if (empty($this->fk_project) && $this->projet > 0) {
1339 $this->fk_project = (int) $this->projet;
1340 }
1341
1342 if (isset($this->ref)) {
1343 $this->ref = trim($this->ref);
1344 }
1345 if (isset($this->ref_customer)) {
1346 $this->ref_customer = trim($this->ref_customer);
1347 }
1348 if (isset($this->ref_supplier)) {
1349 $this->ref_supplier = trim($this->ref_supplier);
1350 }
1351 if (isset($this->ref_ext)) {
1352 $this->ref_ext = trim($this->ref_ext);
1353 }
1354 if (isset($this->entity)) {
1355 $this->entity = (int) $this->entity;
1356 }
1357 if (isset($this->statut)) {
1358 $this->statut = (int) $this->statut;
1359 }
1360 if (isset($this->status)) {
1361 $this->status = (int) $this->status;
1362 }
1363 if (isset($this->socid)) {
1364 $this->socid = (int) $this->socid;
1365 }
1366 if (isset($this->fk_commercial_signature)) {
1367 $this->fk_commercial_signature = trim($this->fk_commercial_signature);
1368 }
1369 if (isset($this->fk_commercial_suivi)) {
1370 $this->fk_commercial_suivi = trim($this->fk_commercial_suivi);
1371 }
1372 if (isset($this->note_private)) {
1373 $this->note_private = trim($this->note_private);
1374 }
1375 if (isset($this->note_public)) {
1376 $this->note_public = trim($this->note_public);
1377 }
1378 if (isset($this->import_key)) {
1379 $this->import_key = trim($this->import_key);
1380 }
1381 //if (isset($this->extraparams)) $this->extraparams=trim($this->extraparams);
1382
1383 // $this->oldcopy must have been set by the caller of update
1384
1385 // Update request
1386 $sql = "UPDATE ".MAIN_DB_PREFIX."contrat SET";
1387 $sql .= " ref=".(isset($this->ref) ? "'".$this->db->escape($this->ref)."'" : "null").",";
1388 $sql .= " ref_customer=".(isset($this->ref_customer) ? "'".$this->db->escape($this->ref_customer)."'" : "null").",";
1389 $sql .= " ref_supplier=".(isset($this->ref_supplier) ? "'".$this->db->escape($this->ref_supplier)."'" : "null").",";
1390 $sql .= " ref_ext=".(isset($this->ref_ext) ? "'".$this->db->escape($this->ref_ext)."'" : "null").",";
1391 $sql .= " entity=".$conf->entity.",";
1392 $sql .= " date_contrat=".(dol_strlen($this->date_contrat) != 0 ? "'".$this->db->idate($this->date_contrat)."'" : 'null').",";
1393 $sql .= " statut=".(isset($this->statut) ? $this->statut : (isset($this->status) ? $this->status : "null")).",";
1394 $sql .= " fk_soc=".($this->socid > 0 ? $this->socid : "null").",";
1395 $sql .= " fk_projet=".($this->fk_project > 0 ? $this->fk_project : "null").",";
1396 $sql .= " fk_commercial_signature=".(isset($this->fk_commercial_signature) ? $this->fk_commercial_signature : "null").",";
1397 $sql .= " fk_commercial_suivi=".(isset($this->fk_commercial_suivi) ? $this->fk_commercial_suivi : "null").",";
1398 $sql .= " note_private=".(isset($this->note_private) ? "'".$this->db->escape($this->note_private)."'" : "null").",";
1399 $sql .= " note_public=".(isset($this->note_public) ? "'".$this->db->escape($this->note_public)."'" : "null").",";
1400 $sql .= " import_key=".(isset($this->import_key) ? "'".$this->db->escape($this->import_key)."'" : "null");
1401 //$sql.= " extraparams=".(isset($this->extraparams)?"'".$this->db->escape($this->extraparams)."'":"null");
1402 $sql .= " WHERE rowid=".((int) $this->id);
1403
1404 $this->db->begin();
1405
1406 $resql = $this->db->query($sql);
1407 if (!$resql) {
1408 $error++;
1409 $this->errors[] = "Error ".$this->db->lasterror();
1410 }
1411
1412 if (!$error) {
1413 $result = $this->insertExtraFields(); // This delete and reinsert extrafields
1414 if ($result < 0) {
1415 $error++;
1416 }
1417 }
1418
1419 if (!$error && !$notrigger) {
1420 // Call triggers
1421 $result = $this->call_trigger('CONTRACT_MODIFY', $user);
1422 if ($result < 0) {
1423 $error++;
1424 }
1425 // End call triggers
1426 }
1427
1428 // Commit or rollback
1429 if ($error) {
1430 foreach ($this->errors as $errmsg) {
1431 dol_syslog(get_class($this)."::update ".$errmsg, LOG_ERR);
1432 $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
1433 }
1434 $this->db->rollback();
1435 return -1 * $error;
1436 } else {
1437 $this->db->commit();
1438 return 1;
1439 }
1440 }
1441
1442
1466 public function addline($desc, $pu_ht, $qty, $txtva, $txlocaltax1, $txlocaltax2, $fk_product, $remise_percent, $date_start, $date_end, $price_base_type = 'HT', $pu_ttc = 0.0, $info_bits = 0, $fk_fournprice = null, $pa_ht = 0, $array_options = array(), $fk_unit = null, $rang = 0)
1467 {
1468 global $user, $langs, $conf, $mysoc;
1469 $error = 0;
1470
1471 dol_syslog(get_class($this)."::addline $desc, $pu_ht, $qty, $txtva, $txlocaltax1, $txlocaltax2, $fk_product, $remise_percent, $date_start, $date_end, $price_base_type, $pu_ttc, $info_bits, $rang");
1472
1473 // Check parameters
1474 if ($fk_product <= 0 && empty($desc)) {
1475 $this->error = "ErrorDescRequiredForFreeProductLines";
1476 return -1;
1477 }
1478
1479 if ($this->statut >= 0) {
1480 // Clean parameters
1481 $pu_ht = price2num($pu_ht);
1482 $pu_ttc = price2num($pu_ttc);
1483 $pa_ht = price2num($pa_ht);
1484
1485 // Clean vat code
1486 $reg = array();
1487 $vat_src_code = '';
1488 if (preg_match('/\‍((.*)\‍)/', (string) $txtva, $reg)) {
1489 $vat_src_code = $reg[1];
1490 $txtva = preg_replace('/\s*\‍(.*\‍)/', '', (string) $txtva); // Remove code into vatrate.
1491 }
1492 $txtva = price2num($txtva);
1493 $txlocaltax1 = price2num($txlocaltax1);
1494 $txlocaltax2 = price2num($txlocaltax2);
1495
1496 $remise_percent = price2num($remise_percent);
1497 $qty = price2num($qty);
1498 if (empty($qty)) {
1499 $qty = 1;
1500 }
1501 if (empty($info_bits)) {
1502 $info_bits = 0;
1503 }
1504 if (empty($pu_ht) || !is_numeric($pu_ht)) {
1505 $pu_ht = 0;
1506 }
1507 if (empty($pu_ttc)) {
1508 $pu_ttc = 0;
1509 }
1510 if (empty($txtva) || !is_numeric($txtva)) {
1511 $txtva = 0;
1512 }
1513 if (empty($txlocaltax1) || !is_numeric($txlocaltax1)) {
1514 $txlocaltax1 = 0;
1515 }
1516 if (empty($txlocaltax2) || !is_numeric($txlocaltax2)) {
1517 $txlocaltax2 = 0;
1518 }
1519
1520 if ($price_base_type == 'HT') {
1521 $pu = $pu_ht;
1522 } else {
1523 $pu = $pu_ttc;
1524 }
1525
1526 // Check parameters
1527 if (empty($remise_percent)) {
1528 $remise_percent = 0;
1529 }
1530 if (empty($rang)) {
1531 $rang = 0;
1532 }
1533
1534 if ($date_start && $date_end && $date_start > $date_end) {
1535 $langs->load("errors");
1536 $this->error = $langs->trans('ErrorStartDateGreaterEnd');
1537 return -1;
1538 }
1539
1540 $this->db->begin();
1541
1542 $localtaxes_type = getLocalTaxesFromRate($txtva.($vat_src_code ? ' ('.$vat_src_code.')' : ''), 0, $this->societe, $mysoc);
1543
1544 // Calcul du total TTC et de la TVA pour la ligne a partir de
1545 // qty, pu, remise_percent et txtva
1546 // TRES IMPORTANT: C'est au moment de l'insertion ligne qu'on doit stocker
1547 // la part ht, tva et ttc, et ce au niveau de la ligne qui a son propre taux tva.
1548
1549 $tabprice = calcul_price_total($qty, $pu, $remise_percent, $txtva, $txlocaltax1, $txlocaltax2, 0, $price_base_type, $info_bits, 1, $mysoc, $localtaxes_type);
1550 $total_ht = $tabprice[0];
1551 $total_tva = $tabprice[1];
1552 $total_ttc = $tabprice[2];
1553 $total_localtax1 = $tabprice[9];
1554 $total_localtax2 = $tabprice[10];
1555
1556 $localtax1_type = $localtaxes_type[0];
1557 $localtax2_type = $localtaxes_type[2];
1558
1559 // TODO A virer
1560 // Anciens indicateurs: $price, $remise (a ne plus utiliser)
1561 $remise = 0;
1562 $price = price2num(round($pu_ht, 2));
1563 if (dol_strlen($remise_percent) > 0) {
1564 $remise = round(($pu_ht * $remise_percent / 100), 2);
1565 $price = $pu_ht - $remise;
1566 }
1567
1568 if (empty($pa_ht)) {
1569 $pa_ht = 0;
1570 }
1571
1572
1573 // if buy price not defined, define buyprice as configured in margin admin
1574 if ($pa_ht == 0) {
1575 $result = $this->defineBuyPrice($pu_ht, $remise_percent, $fk_product);
1576 if ($result < 0) {
1577 return -1;
1578 } else {
1579 $pa_ht = $result;
1580 }
1581 }
1582
1583 // Insertion dans la base
1584 $sql = "INSERT INTO ".MAIN_DB_PREFIX."contratdet";
1585 $sql .= " (fk_contrat, label, description, fk_product, qty, tva_tx, vat_src_code,";
1586 $sql .= " localtax1_tx, localtax2_tx, localtax1_type, localtax2_type, remise_percent, subprice,";
1587 $sql .= " total_ht, total_tva, total_localtax1, total_localtax2, total_ttc,";
1588 $sql .= " info_bits,";
1589 $sql .= " price_ht, remise, fk_product_fournisseur_price, buy_price_ht";
1590 if ($date_start > 0) {
1591 $sql .= ",date_ouverture_prevue";
1592 }
1593 if ($date_end > 0) {
1594 $sql .= ",date_fin_validite";
1595 }
1596 $sql .= ", fk_unit";
1597 $sql .= ", rang";
1598 $sql .= ") VALUES (";
1599 $sql .= $this->id.", '', '".$this->db->escape($desc)."',";
1600 $sql .= ($fk_product > 0 ? $fk_product : "null").",";
1601 $sql .= " ".((float) $qty).",";
1602 $sql .= " ".((float) $txtva).",";
1603 $sql .= " ".($vat_src_code ? "'".$this->db->escape($vat_src_code)."'" : "null").",";
1604 $sql .= " ".((float) $txlocaltax1).",";
1605 $sql .= " ".((float) $txlocaltax2).",";
1606 $sql .= " '".$this->db->escape($localtax1_type)."',";
1607 $sql .= " '".$this->db->escape($localtax2_type)."',";
1608 $sql .= " ".price2num($remise_percent).",";
1609 $sql .= " ".price2num($pu_ht).",";
1610 $sql .= " ".price2num($total_ht).",".price2num($total_tva).",".price2num($total_localtax1).",".price2num($total_localtax2).",".price2num($total_ttc).",";
1611 $sql .= " ".((int) $info_bits).",";
1612 $sql .= " ".price2num($price).",".price2num($remise).",";
1613 if (isset($fk_fournprice)) {
1614 $sql .= ' '.((int) $fk_fournprice).',';
1615 } else {
1616 $sql .= ' null,';
1617 }
1618 if (isset($pa_ht)) {
1619 $sql .= ' '.price2num($pa_ht);
1620 } else {
1621 $sql .= ' null';
1622 }
1623 if ($date_start > 0) {
1624 $sql .= ",'".$this->db->idate($date_start)."'";
1625 }
1626 if ($date_end > 0) {
1627 $sql .= ",'".$this->db->idate($date_end)."'";
1628 }
1629 $sql .= ", ".($fk_unit ? "'".$this->db->escape($fk_unit)."'" : "null");
1630 $sql .= ", ".(!empty($rang) ? (int) $rang : "0");
1631 $sql .= ")";
1632
1633 $resql = $this->db->query($sql);
1634 if ($resql) {
1635 $contractlineid = $this->db->last_insert_id(MAIN_DB_PREFIX."contratdet");
1636
1637 if (!$error) {
1638 $contractline = new ContratLigne($this->db);
1639 $contractline->array_options = $array_options;
1640 $contractline->id = $contractlineid;
1641 $result = $contractline->insertExtraFields();
1642 if ($result < 0) {
1643 $this->errors = array_merge($this->errors, $contractline->errors);
1644 $this->error = $contractline->error;
1645 $error++;
1646 }
1647 }
1648
1649 if (empty($error)) {
1650 // Call trigger
1651 $result = $this->call_trigger('LINECONTRACT_INSERT', $user);
1652 if ($result < 0) {
1653 $error++;
1654 }
1655 // End call triggers
1656 }
1657
1658 if ($error) {
1659 $this->db->rollback();
1660 return -1;
1661 } else {
1662 $this->db->commit();
1663 return $contractlineid;
1664 }
1665 } else {
1666 $this->db->rollback();
1667 $this->error = $this->db->error()." sql=".$sql;
1668 return -1;
1669 }
1670 } else {
1671 dol_syslog(get_class($this)."::addline ErrorTryToAddLineOnValidatedContract", LOG_ERR);
1672 return -2;
1673 }
1674 }
1675
1700 public function updateline($rowid, $desc, $pu, $qty, $remise_percent, $date_start, $date_end, $tvatx, $localtax1tx = 0.0, $localtax2tx = 0.0, $date_start_real = '', $date_end_real = '', $price_base_type = 'HT', $info_bits = 0, $fk_fournprice = null, $pa_ht = 0, $array_options = array(), $fk_unit = null, $rang = 0)
1701 {
1702 global $user, $conf, $langs, $mysoc;
1703
1704 $error = 0;
1705
1706 // Clean parameters
1707 $qty = trim((string) $qty);
1708 $desc = trim($desc);
1709 $desc = trim($desc);
1710 $price = price2num($pu);
1711 $tvatx = price2num($tvatx);
1712 $localtax1tx = price2num($localtax1tx);
1713 $localtax2tx = price2num($localtax2tx);
1714 $pa_ht = price2num($pa_ht);
1715 if (empty($fk_fournprice)) {
1716 $fk_fournprice = 0;
1717 }
1718 if (empty($rang)) {
1719 $rang = 0;
1720 }
1721
1722 $subprice = $price;
1723 $remise = 0;
1724 if (dol_strlen($remise_percent) > 0) {
1725 $remise = round(($pu * $remise_percent / 100), 2);
1726 $price = $pu - $remise;
1727 } else {
1728 $remise_percent = 0;
1729 }
1730
1731 if ($date_start && $date_end && $date_start > $date_end) {
1732 $langs->load("errors");
1733 $this->error = $langs->trans('ErrorStartDateGreaterEnd');
1734 return -1;
1735 }
1736
1737 dol_syslog(get_class($this)."::updateline $rowid, $desc, $pu, $qty, $remise_percent, $date_start, $date_end, $date_start_real, $date_end_real, $tvatx, $localtax1tx, $localtax2tx, $price_base_type, $info_bits, $rang");
1738
1739 $this->db->begin();
1740
1741 // Calcul du total TTC et de la TVA pour la ligne a partir de
1742 // qty, pu, remise_percent et tvatx
1743 // TRES IMPORTANT: C'est au moment de l'insertion ligne qu'on doit stocker
1744 // la part ht, tva et ttc, et ce au niveau de la ligne qui a son propre taux tva.
1745
1746 $localtaxes_type = getLocalTaxesFromRate($tvatx, 0, $this->societe, $mysoc);
1747 $tvatx = preg_replace('/\s*\‍(.*\‍)/', '', $tvatx); // Remove code into vatrate.
1748
1749 $tabprice = calcul_price_total($qty, $pu, $remise_percent, $tvatx, $localtax1tx, $localtax2tx, 0, $price_base_type, $info_bits, 1, $mysoc, $localtaxes_type);
1750 $total_ht = $tabprice[0];
1751 $total_tva = $tabprice[1];
1752 $total_ttc = $tabprice[2];
1753 $total_localtax1 = $tabprice[9];
1754 $total_localtax2 = $tabprice[10];
1755
1756 $localtax1_type = (empty($localtaxes_type[0]) ? '' : $localtaxes_type[0]);
1757 $localtax2_type = (empty($localtaxes_type[2]) ? '' : $localtaxes_type[2]);
1758
1759 // TODO A virer
1760 // Anciens indicateurs: $price, $remise (a ne plus utiliser)
1761 $remise = 0;
1762 $price = price2num(round($pu, 2));
1763 if (dol_strlen($remise_percent) > 0) {
1764 $remise = round(($pu * $remise_percent / 100), 2);
1765 $price = $pu - $remise;
1766 }
1767
1768 if (empty($pa_ht)) {
1769 $pa_ht = 0;
1770 }
1771
1772 // if buy price not defined, define buyprice as configured in margin admin
1773 if ($pa_ht == 0) {
1774 $result = $this->defineBuyPrice($pu, $remise_percent);
1775 if ($result < 0) {
1776 return -1;
1777 } else {
1778 $pa_ht = $result;
1779 }
1780 }
1781
1782 $sql = "UPDATE ".MAIN_DB_PREFIX."contratdet set description = '".$this->db->escape($desc)."'";
1783 $sql .= ",price_ht = ".((float) price2num($price));
1784 $sql .= ",subprice = ".((float) price2num($subprice));
1785 $sql .= ",remise = ".((float) price2num($remise));
1786 $sql .= ",remise_percent = ".((float) price2num($remise_percent));
1787 $sql .= ",qty = ".((float) $qty);
1788 $sql .= ",tva_tx = ".((float) price2num($tvatx));
1789 $sql .= ",localtax1_tx = ".((float) price2num($localtax1tx));
1790 $sql .= ",localtax2_tx = ".((float) price2num($localtax2tx));
1791 $sql .= ",localtax1_type='".$this->db->escape($localtax1_type)."'";
1792 $sql .= ",localtax2_type='".$this->db->escape($localtax2_type)."'";
1793 $sql .= ", total_ht = ".((float) price2num($total_ht));
1794 $sql .= ", total_tva = ".((float) price2num($total_tva));
1795 $sql .= ", total_localtax1 = ".((float) price2num($total_localtax1));
1796 $sql .= ", total_localtax2 = ".((float) price2num($total_localtax2));
1797 $sql .= ", total_ttc = ".((float) price2num($total_ttc));
1798 $sql .= ", fk_product_fournisseur_price=".($fk_fournprice > 0 ? $fk_fournprice : "null");
1799 $sql .= ", buy_price_ht = ".((float) price2num($pa_ht));
1800 if ($date_start > 0) {
1801 $sql .= ",date_ouverture_prevue = '".$this->db->idate($date_start)."'";
1802 } else {
1803 $sql .= ",date_ouverture_prevue = null";
1804 }
1805 if ($date_end > 0) {
1806 $sql .= ",date_fin_validite = '".$this->db->idate($date_end)."'";
1807 } else {
1808 $sql .= ",date_fin_validite = null";
1809 }
1810 if ($date_start_real > 0) {
1811 $sql .= ",date_ouverture = '".$this->db->idate($date_start_real)."'";
1812 } else {
1813 $sql .= ",date_ouverture = null";
1814 }
1815 if ($date_end_real > 0) {
1816 $sql .= ",date_cloture = '".$this->db->idate($date_end_real)."'";
1817 } else {
1818 $sql .= ",date_cloture = null";
1819 }
1820 $sql .= ", fk_unit = ".($fk_unit > 0 ? ((int) $fk_unit) : "null");
1821 $sql .= ", rang = ".(!empty($rang) ? ((int) $rang) : "0");
1822 $sql .= " WHERE rowid = ".((int) $rowid);
1823
1824 dol_syslog(get_class($this)."::updateline", LOG_DEBUG);
1825 $result = $this->db->query($sql);
1826 if ($result) {
1827 if (is_array($array_options) && count($array_options) > 0) { // For avoid conflicts if trigger used
1828 $contractline = new ContratLigne($this->db);
1829 $contractline->fetch($rowid);
1830
1831 // We replace values in $contractline->array_options only for entries defined into $array_options
1832 foreach ($array_options as $key => $value) {
1833 $contractline->array_options[$key] = $array_options[$key];
1834 }
1835
1836 $result = $contractline->insertExtraFields();
1837 if ($result < 0) {
1838 $this->errors[] = $contractline->error;
1839 $error++;
1840 }
1841 }
1842
1843 if (empty($error)) {
1844 // Call trigger
1845 $result = $this->call_trigger('LINECONTRACT_MODIFY', $user);
1846 if ($result < 0) {
1847 $this->db->rollback();
1848 return -3;
1849 }
1850 // End call triggers
1851
1852 $this->db->commit();
1853 return 1;
1854 } else {
1855 $this->db->rollback();
1856 return -1;
1857 }
1858 } else {
1859 $this->db->rollback();
1860 $this->error = $this->db->error();
1861 dol_syslog(get_class($this)."::updateline Erreur -1");
1862 return -1;
1863 }
1864 }
1865
1873 public function deleteLine($idline, User $user)
1874 {
1875 $error = 0;
1876
1877 if ($this->statut >= 0) {
1878 // Call trigger
1879 $result = $this->call_trigger('LINECONTRACT_DELETE', $user);
1880 if ($result < 0) {
1881 return -1;
1882 }
1883 // End call triggers
1884
1885 $this->db->begin();
1886
1887 $sql = "DELETE FROM ".MAIN_DB_PREFIX.$this->table_element_line;
1888 $sql .= " WHERE rowid = ".((int) $idline);
1889
1890 dol_syslog(get_class($this)."::deleteline", LOG_DEBUG);
1891 $resql = $this->db->query($sql);
1892 if (!$resql) {
1893 $this->error = "Error ".$this->db->lasterror();
1894 $error++;
1895 }
1896
1897 if (!$error) {
1898 // Remove extrafields
1899 $contractline = new ContratLigne($this->db);
1900 $contractline->id = $idline;
1901 $result = $contractline->deleteExtraFields();
1902 if ($result < 0) {
1903 $error++;
1904 $this->error = "Error ".get_class($this)."::deleteline deleteExtraFields error -4 ".$contractline->error;
1905 }
1906 }
1907
1908 if (empty($error)) {
1909 $this->db->commit();
1910 return 1;
1911 } else {
1912 dol_syslog(get_class($this)."::deleteline ERROR:".$this->error, LOG_ERR);
1913 $this->db->rollback();
1914 return -1;
1915 }
1916 } else {
1917 $this->error = 'ErrorDeleteLineNotAllowedByObjectStatus';
1918 return -2;
1919 }
1920 }
1921
1922
1923 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1931 public function update_statut($user)
1932 {
1933 // phpcs:enable
1934 dol_syslog(__METHOD__." is deprecated", LOG_WARNING);
1935
1936 // If draft, we keep it (should not happen)
1937 if ($this->statut == 0) {
1938 return 1;
1939 }
1940
1941 // Load $this->lines array
1942 // $this->fetch_lines();
1943
1944 // $newstatut=1;
1945 // foreach($this->lines as $key => $contractline)
1946 // {
1947 // // if ($contractline) // Loop on each service
1948 // }
1949
1950 return 1;
1951 }
1952
1953
1960 public function getLibStatut($mode)
1961 {
1962 return $this->LibStatut($this->statut, $mode);
1963 }
1964
1965 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1973 public function LibStatut($status, $mode)
1974 {
1975 // phpcs:enable
1976 global $langs;
1977
1978 if (empty($this->labelStatus) || empty($this->labelStatusShort)) {
1979 global $langs;
1980 $langs->load("contracts");
1981 $this->labelStatus[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv('ContractStatusDraft');
1982 $this->labelStatus[self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv('ContractStatusValidated');
1983 $this->labelStatus[self::STATUS_CLOSED] = $langs->transnoentitiesnoconv('ContractStatusClosed');
1984 $this->labelStatusShort[self::STATUS_DRAFT] = $langs->transnoentitiesnoconv('ContractStatusDraft');
1985 $this->labelStatusShort[self::STATUS_VALIDATED] = $langs->transnoentitiesnoconv('ContractStatusValidated');
1986 $this->labelStatusShort[self::STATUS_CLOSED] = $langs->transnoentitiesnoconv('ContractStatusClosed');
1987 }
1988
1989 $statusType = 'status'.$status;
1990 if ($status == self::STATUS_VALIDATED) {
1991 $statusType = 'status6';
1992 }
1993
1994 if ($mode == 4 || $mode == 6 || $mode == 7) {
1995 $text = '';
1996 if ($mode == 4) {
1997 $text = '<span class="hideonsmartphone">';
1998 $text .= ($this->nbofserviceswait + $this->nbofservicesopened + $this->nbofservicesexpired + $this->nbofservicesclosed);
1999 $text .= ' '.$langs->trans("Services");
2000 $text .= ': &nbsp; &nbsp; ';
2001 $text .= '</span>';
2002 }
2003 $text .= ($mode == 7 ? '<span class="nowraponall">' : '');
2004 $text .= ($mode != 7 || $this->nbofserviceswait > 0) ? ($this->nbofserviceswait.ContratLigne::LibStatut(0, 3, -1, 'class="marginleft2"')).(($mode != 7 || $this->nbofservicesopened || $this->nbofservicesexpired || $this->nbofservicesclosed) ? ' &nbsp; ' : '') : '';
2005 $text .= ($mode == 7 ? '</span><span class="nowraponall">' : '');
2006 $text .= ($mode != 7 || $this->nbofservicesopened > 0) ? ($this->nbofservicesopened.ContratLigne::LibStatut(4, 3, 0, 'class="marginleft2"')).(($mode != 7 || $this->nbofservicesexpired || $this->nbofservicesclosed) ? ' &nbsp; ' : '') : '';
2007 $text .= ($mode == 7 ? '</span><span class="nowraponall">' : '');
2008 $text .= ($mode != 7 || $this->nbofservicesexpired > 0) ? ($this->nbofservicesexpired.ContratLigne::LibStatut(4, 3, 1, 'class="marginleft2"')).(($mode != 7 || $this->nbofservicesclosed) ? ' &nbsp; ' : '') : '';
2009 $text .= ($mode == 7 ? '</span><span class="nowraponall">' : '');
2010 $text .= ($mode != 7 || $this->nbofservicesclosed > 0) ? ($this->nbofservicesclosed.ContratLigne::LibStatut(5, 3, -1, 'class="marginleft2"')) : '';
2011 $text .= ($mode == 7 ? '</span>' : '');
2012 return $text;
2013 } else {
2014 return dolGetStatus($this->labelStatus[$status], $this->labelStatusShort[$status], '', $statusType, $mode);
2015 }
2016 }
2017
2024 public function getTooltipContentArray($params)
2025 {
2026 global $conf, $langs, $user;
2027
2028 $langs->load('contracts');
2029
2030 $datas = [];
2031 $nofetch = !empty($params['nofetch']);
2032
2033 if (getDolGlobalString('MAIN_OPTIMIZEFORTEXTBROWSER')) {
2034 return ['optimize' => $langs->trans("ShowContract")];
2035 }
2036 if ($user->hasRight('contrat', 'lire')) {
2037 $datas['picto'] = img_picto('', $this->picto).' <u class="paddingrightonly">'.$langs->trans("Contract").'</u>';
2038 /* Status of a contract is status of all services, so disabled
2039 if (isset($this->statut)) {
2040 $label .= ' '.$this->getLibStatut(5);
2041 }*/
2042 $datas['ref'] = '<br><b>'.$langs->trans('Ref').':</b> '.($this->ref ? $this->ref : $this->id);
2043 if (!$nofetch) {
2044 $langs->load('companies');
2045 if (empty($this->thirdparty)) {
2046 $this->fetch_thirdparty();
2047 }
2048 $datas['customer'] = '<br><b>'.$langs->trans('Customer').':</b> '.$this->thirdparty->getNomUrl(1, '', 0, 1);
2049 }
2050 $datas['refcustomer'] = '<br><b>'.$langs->trans('RefCustomer').':</b> '. $this->ref_customer;
2051 if (!$nofetch) {
2052 $langs->load('project');
2053 if (is_null($this->project) || (is_object($this->project) && $this->project->isEmpty())) {
2054 $res = $this->fetch_project();
2055 if ($res > 0 && $this->project instanceof Project) {
2056 $datas['project'] = '<br><b>'.$langs->trans('Project').':</b> '.$this->project->getNomUrl(1, '', 0, 1);
2057 }
2058 }
2059 }
2060 $datas['refsupplier'] = '<br><b>'.$langs->trans('RefSupplier').':</b> '.$this->ref_supplier;
2061 if (!empty($this->total_ht)) {
2062 $datas['amountht'] = '<br><b>'.$langs->trans('AmountHT').':</b> '.price($this->total_ht, 0, $langs, 0, -1, -1, $conf->currency);
2063 }
2064 if (!empty($this->total_tva)) {
2065 $datas['vatamount'] = '<br><b>'.$langs->trans('VAT').':</b> '.price($this->total_tva, 0, $langs, 0, -1, -1, $conf->currency);
2066 }
2067 if (!empty($this->total_ttc)) {
2068 $datas['amounttc'] = '<br><b>'.$langs->trans('AmountTTC').':</b> '.price($this->total_ttc, 0, $langs, 0, -1, -1, $conf->currency);
2069 }
2070 }
2071 return $datas;
2072 }
2073
2083 public function getNomUrl($withpicto = 0, $maxlength = 0, $notooltip = 0, $save_lastsearch_value = -1)
2084 {
2085 global $conf, $langs, $user, $hookmanager;
2086
2087 $result = '';
2088
2089 $url = DOL_URL_ROOT.'/contrat/card.php?id='.$this->id;
2090
2091 //if ($option !== 'nolink')
2092 //{
2093 // Add param to save lastsearch_values or not
2094 $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
2095 if ($save_lastsearch_value == -1 && isset($_SERVER["PHP_SELF"]) && preg_match('/list\.php/', $_SERVER["PHP_SELF"])) {
2096 $add_save_lastsearch_values = 1;
2097 }
2098 if ($add_save_lastsearch_values) {
2099 $url .= '&save_lastsearch_values=1';
2100 }
2101 //}
2102 $params = [
2103 'id' => $this->id,
2104 'objecttype' => $this->element,
2105 'nofetch' => 1,
2106 ];
2107 $classfortooltip = 'classfortooltip';
2108 $dataparams = '';
2109 if (getDolGlobalInt('MAIN_ENABLE_AJAX_TOOLTIP')) {
2110 $classfortooltip = 'classforajaxtooltip';
2111 $dataparams = ' data-params="'.dol_escape_htmltag(json_encode($params)).'"';
2112 $label = '';
2113 } else {
2114 $label = implode($this->getTooltipContentArray($params));
2115 }
2116
2117 $linkclose = '';
2118 if (empty($notooltip) && $user->hasRight('contrat', 'lire')) {
2119 if (getDolGlobalString('MAIN_OPTIMIZEFORTEXTBROWSER')) {
2120 $label = $langs->trans("ShowContract");
2121 $linkclose .= ' alt="'.dol_escape_htmltag($label, 1).'"';
2122 }
2123 $linkclose .= ($label ? ' title="'.dol_escape_htmltag($label, 1).'"' : ' title="tocomplete"');
2124 $linkclose .= $dataparams.' class="'.$classfortooltip.'"';
2125 }
2126 $linkstart = '<a href="'.$url.'"';
2127 $linkstart .= $linkclose.'>';
2128 $linkend = '</a>';
2129
2130 $result .= $linkstart;
2131 if ($withpicto) {
2132 $result .= img_object(($notooltip ? '' : $label), ($this->picto ? $this->picto : 'generic'), (($withpicto != 2) ? 'class="paddingright"' : ''), 0, 0, $notooltip ? 0 : 1);
2133 }
2134 if ($withpicto != 2) {
2135 $result .= ($this->ref ? $this->ref : $this->id);
2136 }
2137 $result .= $linkend;
2138
2139 global $action;
2140 $hookmanager->initHooks(array('contractdao'));
2141 $parameters = array('id' => $this->id, 'getnomurl' => &$result);
2142 $reshook = $hookmanager->executeHooks('getNomUrl', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
2143 if ($reshook > 0) {
2144 $result = $hookmanager->resPrint;
2145 } else {
2146 $result .= $hookmanager->resPrint;
2147 }
2148
2149 return $result;
2150 }
2151
2158 public function info($id)
2159 {
2160 $sql = "SELECT c.rowid, c.ref, c.datec,";
2161 $sql .= " c.tms as date_modification,";
2162 $sql .= " fk_user_author";
2163 $sql .= " FROM ".MAIN_DB_PREFIX."contrat as c";
2164 $sql .= " WHERE c.rowid = ".((int) $id);
2165
2166 $result = $this->db->query($sql);
2167 if ($result) {
2168 if ($this->db->num_rows($result)) {
2169 $obj = $this->db->fetch_object($result);
2170
2171 $this->id = $obj->rowid;
2172 $this->ref = (!$obj->ref) ? $obj->rowid : $obj->ref;
2173
2174 $this->user_creation_id = $obj->fk_user_author;
2175 $this->date_creation = $this->db->jdate($obj->datec);
2176 $this->date_modification = $this->db->jdate($obj->date_modification);
2177 }
2178
2179 $this->db->free($result);
2180 } else {
2181 dol_print_error($this->db);
2182 }
2183 }
2184
2185 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2192 public function array_detail($status = -1)
2193 {
2194 // phpcs:enable
2195 $tab = array();
2196
2197 $sql = "SELECT cd.rowid";
2198 $sql .= " FROM ".MAIN_DB_PREFIX."contratdet as cd";
2199 $sql .= " WHERE fk_contrat =".((int) $this->id);
2200 if ($status >= 0) {
2201 $sql .= " AND statut = ".((int) $status);
2202 }
2203
2204 dol_syslog(get_class($this)."::array_detail()", LOG_DEBUG);
2205 $resql = $this->db->query($sql);
2206 if ($resql) {
2207 $num = $this->db->num_rows($resql);
2208 $i = 0;
2209 while ($i < $num) {
2210 $obj = $this->db->fetch_object($resql);
2211 $tab[$i] = $obj->rowid;
2212 $i++;
2213 }
2214 return $tab;
2215 } else {
2216 $this->error = $this->db->error();
2217 return -1;
2218 }
2219 }
2220
2230 public function getListOfContracts($option = 'all', $status = [], $product_categories = [], $line_status = [])
2231 {
2232 $tab = array();
2233
2234 $sql = "SELECT c.rowid";
2235 $sql .= " FROM ".MAIN_DB_PREFIX."contrat as c";
2236 if (!empty($product_categories)) {
2237 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."contratdet as cd ON cd.fk_contrat = c.rowid";
2238 $sql .= " INNER JOIN ".MAIN_DB_PREFIX."categorie_product as cp ON cp.fk_product = cd.fk_product AND cp.fk_categorie IN (".$this->db->sanitize(implode(', ', $product_categories)).")";
2239 }
2240 $sql .= " WHERE c.fk_soc =".((int) $this->socid);
2241 $sql .= ($option == 'others') ? " AND c.rowid <> ".((int) $this->id) : "";
2242 $sql .= (!empty($status)) ? " AND c.statut IN (".$this->db->sanitize(implode(', ', $status)).")" : "";
2243 $sql .= (!empty($line_status)) ? " AND cd.statut IN (".$this->db->sanitize(implode(', ', $line_status)).")" : "";
2244 $sql .= " GROUP BY c.rowid";
2245
2246 dol_syslog(get_class($this)."::getOtherContracts()", LOG_DEBUG);
2247 $resql = $this->db->query($sql);
2248 if ($resql) {
2249 $num = $this->db->num_rows($resql);
2250 $i = 0;
2251 while ($i < $num) {
2252 $obj = $this->db->fetch_object($resql);
2253 $contrat = new Contrat($this->db);
2254 $contrat->fetch($obj->rowid);
2255 $tab[$contrat->id] = $contrat;
2256 $i++;
2257 }
2258 return $tab;
2259 } else {
2260 $this->error = $this->db->lasterror();
2261 return -1;
2262 }
2263 }
2264
2265
2266 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2274 public function load_board($user, $mode)
2275 {
2276 // phpcs:enable
2277 global $conf, $langs;
2278
2279 $this->from = " FROM ".MAIN_DB_PREFIX."contrat as c";
2280 $this->from .= ", ".MAIN_DB_PREFIX."contratdet as cd";
2281 $this->from .= ", ".MAIN_DB_PREFIX."societe as s";
2282 if (!$user->hasRight('societe', 'client', 'voir')) {
2283 $this->from .= ", ".MAIN_DB_PREFIX."societe_commerciaux as sc";
2284 }
2285
2286 if ($mode == 'inactive') {
2287 $sql = "SELECT cd.rowid, cd.date_ouverture_prevue as datefin";
2288 $sql .= $this->from;
2289 $sql .= " WHERE c.statut = 1";
2290 $sql .= " AND c.rowid = cd.fk_contrat";
2291 $sql .= " AND cd.statut = 0";
2292 } elseif ($mode == 'expired') {
2293 $sql = "SELECT cd.rowid, cd.date_fin_validite as datefin";
2294 $sql .= $this->from;
2295 $sql .= " WHERE c.statut = 1";
2296 $sql .= " AND c.rowid = cd.fk_contrat";
2297 $sql .= " AND cd.statut = 4";
2298 $sql .= " AND cd.date_fin_validite < '".$this->db->idate(dol_now())."'";
2299 } elseif ($mode == 'active') {
2300 $sql = "SELECT cd.rowid, cd.date_fin_validite as datefin";
2301 $sql .= $this->from;
2302 $sql .= " WHERE c.statut = 1";
2303 $sql .= " AND c.rowid = cd.fk_contrat";
2304 $sql .= " AND cd.statut = 4";
2305 //$datetouse = dol_now();
2306 //$sql.= " AND cd.date_fin_validite < '".$this->db->idate($datetouse)."'";
2307 }
2308 $sql .= " AND c.fk_soc = s.rowid";
2309 $sql .= " AND c.entity = ".((int) $conf->entity);
2310 if ($user->socid) {
2311 $sql .= " AND c.fk_soc = ".((int) $user->socid);
2312 }
2313 if (!$user->hasRight('societe', 'client', 'voir')) {
2314 $sql .= " AND c.fk_soc = sc.fk_soc AND sc.fk_user = ".((int) $user->id);
2315 }
2316
2317 $resql = $this->db->query($sql);
2318 if ($resql) {
2319 $langs->load("contracts");
2320 $now = dol_now();
2321
2322 if ($mode == 'inactive') {
2323 $warning_delay = $conf->contrat->services->inactifs->warning_delay;
2324 $label = $langs->trans("BoardNotActivatedServices");
2325 $labelShort = $langs->trans("BoardNotActivatedServicesShort");
2326 $url = DOL_URL_ROOT.'/contrat/services_list.php?mainmenu=commercial&leftmenu=contracts&search_status=0&sortfield=cd.date_fin_validite&sortorder=asc';
2327 } elseif ($mode == 'expired') {
2328 $warning_delay = $conf->contrat->services->expires->warning_delay;
2329 $url = DOL_URL_ROOT.'/contrat/services_list.php?mainmenu=commercial&leftmenu=contracts&search_status=4&filter=expired&sortfield=cd.date_fin_validite&sortorder=asc';
2330 $label = $langs->trans("BoardExpiredServices");
2331 $labelShort = $langs->trans("BoardExpiredServicesShort");
2332 } else {
2333 $warning_delay = $conf->contrat->services->expires->warning_delay;
2334 $url = DOL_URL_ROOT.'/contrat/services_list.php?mainmenu=commercial&leftmenu=contracts&search_status=4&sortfield=cd.date_fin_validite&sortorder=asc';
2335 //$url.= '&op2day='.$arraydatetouse['mday'].'&op2month='.$arraydatetouse['mon'].'&op2year='.$arraydatetouse['year'];
2336 //if ($warning_delay >= 0) $url.='&amp;filter=expired';
2337 $label = $langs->trans("BoardRunningServices");
2338 $labelShort = $langs->trans("BoardRunningServicesShort");
2339 }
2340
2341 $response = new WorkboardResponse();
2342 $response->warning_delay = $warning_delay / 60 / 60 / 24;
2343 $response->label = $label;
2344 $response->labelShort = $labelShort;
2345 $response->url = $url;
2346 $response->img = img_object('', "contract");
2347
2348 while ($obj = $this->db->fetch_object($resql)) {
2349 $response->nbtodo++;
2350
2351 if ($obj->datefin && $this->db->jdate($obj->datefin) < ($now - $warning_delay)) {
2352 $response->nbtodolate++;
2353 }
2354 }
2355
2356 return $response;
2357 } else {
2358 dol_print_error($this->db);
2359 $this->error = $this->db->error();
2360 return -1;
2361 }
2362 }
2363
2369 public function loadStateBoard()
2370 {
2371 global $conf, $user;
2372
2373 $this->nb = array();
2374 $clause = "WHERE";
2375
2376 $sql = "SELECT count(c.rowid) as nb";
2377 $sql .= " FROM ".MAIN_DB_PREFIX."contrat as c";
2378 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."societe as s ON c.fk_soc = s.rowid";
2379 if (!$user->hasRight('societe', 'client', 'voir')) {
2380 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."societe_commerciaux as sc ON s.rowid = sc.fk_soc";
2381 $sql .= " WHERE sc.fk_user = ".((int) $user->id);
2382 $clause = "AND";
2383 }
2384 $sql .= " ".$clause." c.entity = ".$conf->entity;
2385
2386 $resql = $this->db->query($sql);
2387 if ($resql) {
2388 while ($obj = $this->db->fetch_object($resql)) {
2389 $this->nb["contracts"] = $obj->nb;
2390 }
2391 $this->db->free($resql);
2392 return 1;
2393 } else {
2394 dol_print_error($this->db);
2395 $this->error = $this->db->error();
2396 return -1;
2397 }
2398 }
2399
2400
2401 /* gestion des contacts d'un contrat */
2402
2408 public function getIdBillingContact()
2409 {
2410 return $this->getIdContact('external', 'BILLING');
2411 }
2412
2418 public function getIdServiceContact()
2419 {
2420 return $this->getIdContact('external', 'SERVICE');
2421 }
2422
2423
2431 public function initAsSpecimen()
2432 {
2433 global $user, $langs, $conf;
2434
2435 // Load array of products prodids
2436 $num_prods = 0;
2437 $prodids = array();
2438 $sql = "SELECT rowid";
2439 $sql .= " FROM ".MAIN_DB_PREFIX."product";
2440 $sql .= " WHERE entity IN (".getEntity('product').")";
2441 $sql .= " AND tosell = 1";
2442 $sql .= $this->db->plimit(100);
2443
2444 $resql = $this->db->query($sql);
2445 if ($resql) {
2446 $num_prods = $this->db->num_rows($resql);
2447 $i = 0;
2448 while ($i < $num_prods) {
2449 $i++;
2450 $row = $this->db->fetch_row($resql);
2451 $prodids[$i] = $row[0];
2452 }
2453 }
2454
2455 // Initialise parameters
2456 $this->id = 0;
2457 $this->specimen = 1;
2458
2459 $this->ref = 'SPECIMEN';
2460 $this->ref_customer = 'SPECIMENCUST';
2461 $this->ref_supplier = 'SPECIMENSUPP';
2462 $this->socid = 1;
2463 $this->status = 0;
2464 $this->date_creation = (dol_now() - 3600 * 24 * 7);
2465 $this->date_contrat = dol_now();
2466 $this->commercial_signature_id = 1;
2467 $this->commercial_suivi_id = 1;
2468 $this->note_private = 'This is a comment (private)';
2469 $this->note_public = 'This is a comment (public)';
2470 $this->fk_project = 0;
2471 // Lines
2472 $nbp = 5;
2473 $xnbp = 0;
2474 while ($xnbp < $nbp) {
2475 $line = new ContratLigne($this->db);
2476 $line->qty = 1;
2477 $line->subprice = 100;
2478 $line->tva_tx = 19.6;
2479 $line->remise_percent = 10;
2480 $line->total_ht = 90;
2481 $line->total_ttc = 107.64; // 90 * 1.196
2482 $line->total_tva = 17.64;
2483 $line->date_start = dol_now() - 500000;
2484 $line->date_start_real = dol_now() - 200000;
2485 $line->date_end = dol_now() + 500000;
2486 $line->date_end_real = dol_now() - 100000;
2487 if ($num_prods > 0) {
2488 $prodid = mt_rand(1, $num_prods);
2489 $line->fk_product = $prodids[$prodid];
2490 }
2491 $this->lines[$xnbp] = $line;
2492 $xnbp++;
2493 }
2494
2495 return 1;
2496 }
2497
2503 public function getLinesArray()
2504 {
2505 return $this->fetch_lines();
2506 }
2507
2513 public function getTicketsArray()
2514 {
2515 global $user;
2516
2517 $ticket = new Ticket($this->db);
2518 $nbTicket = $ticket->fetchAll($user, 'ASC', 't.datec', '', 0, '', array('t.fk_contract' => $this->id));
2519
2520 return ($nbTicket < 0 ? $nbTicket : $ticket->lines);
2521 }
2522
2523
2535 public function generateDocument($modele, $outputlangs, $hidedetails = 0, $hidedesc = 0, $hideref = 0, $moreparams = null)
2536 {
2537 global $conf, $langs;
2538
2539 if (!dol_strlen($modele)) {
2540 $modele = ''; // No doc template/generation by default
2541
2542 if (!empty($this->model_pdf)) {
2543 $modele = $this->model_pdf;
2544 } elseif (getDolGlobalString('CONTRACT_ADDON_PDF')) {
2545 $modele = getDolGlobalString('CONTRACT_ADDON_PDF');
2546 }
2547 }
2548
2549 if (empty($modele)) {
2550 return 0;
2551 } else {
2552 $langs->load("contracts");
2553 $outputlangs->load("products");
2554
2555 $modelpath = "core/modules/contract/doc/";
2556 return $this->commonGenerateDocument($modelpath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams);
2557 }
2558 }
2559
2568 public static function replaceThirdparty(DoliDB $dbs, $origin_id, $dest_id)
2569 {
2570 $tables = array(
2571 'contrat'
2572 );
2573
2574 return CommonObject::commonReplaceThirdparty($dbs, $origin_id, $dest_id, $tables);
2575 }
2576
2585 public static function replaceProduct(DoliDB $db, $origin_id, $dest_id)
2586 {
2587 $tables = array(
2588 'contratdet'
2589 );
2590
2591 return CommonObject::commonReplaceProduct($db, $origin_id, $dest_id, $tables);
2592 }
2593
2602 public function createFromClone(User $user, $socid = 0, $notrigger = 0)
2603 {
2604 global $db, $langs, $conf, $hookmanager, $extrafields;
2605
2606 dol_include_once('/projet/class/project.class.php');
2607
2608 $error = 0;
2609
2610 $this->fetch($this->id);
2611
2612 // Load dest object
2613 $clonedObj = clone $this;
2614 $clonedObj->socid = $socid;
2615
2616 $this->db->begin();
2617
2618 $objsoc = new Societe($this->db);
2619
2620 $objsoc->fetch($clonedObj->socid);
2621
2622 // Clean data
2623 $clonedObj->statut = 0;
2624 // Clean extrafields
2625 if (is_array($clonedObj->array_options) && count($clonedObj->array_options) > 0) {
2626 $extrafields->fetch_name_optionals_label($this->table_element);
2627 foreach ($clonedObj->array_options as $key => $option) {
2628 $shortkey = preg_replace('/options_/', '', $key);
2629 //var_dump($shortkey); var_dump($extrafields->attributes[$this->element]['unique'][$shortkey]);
2630 if (!empty($extrafields->attributes[$this->element]['unique'][$shortkey])) {
2631 //var_dump($key); var_dump($clonedObj->array_options[$key]); exit;
2632 unset($clonedObj->array_options[$key]);
2633 }
2634 }
2635 }
2636
2637 if (!getDolGlobalString('CONTRACT_ADDON') || !is_readable(DOL_DOCUMENT_ROOT."/core/modules/contract/" . getDolGlobalString('CONTRACT_ADDON').".php")) {
2638 $this->error = 'ErrorSetupNotComplete';
2639 dol_syslog($this->error);
2640 return -1;
2641 }
2642
2643 // Set ref
2644 require_once DOL_DOCUMENT_ROOT."/core/modules/contract/" . getDolGlobalString('CONTRACT_ADDON').'.php';
2645 $obj = getDolGlobalString('CONTRACT_ADDON');
2646 $modContract = new $obj();
2647 '@phan-var-force CommonNumRefGenerator $modContrat';
2648 $clonedObj->ref = $modContract->getNextValue($objsoc, $clonedObj);
2649
2650 // get extrafields so they will be clone
2651 foreach ($this->lines as $line) {
2652 $line->fetch_optionals($line->id);
2653 }
2654
2655 // Create clone
2656 $clonedObj->context['createfromclone'] = 'createfromclone';
2657 $result = $clonedObj->create($user);
2658 if ($result < 0) {
2659 $error++;
2660 $this->error = $clonedObj->error;
2661 $this->errors[] = $clonedObj->error;
2662 } else {
2663 // copy external contacts if same company
2664 if ($this->socid == $clonedObj->socid) {
2665 if ($clonedObj->copy_linked_contact($this, 'external') < 0) {
2666 $error++;
2667 }
2668 }
2669 }
2670
2671 if (!$error) {
2672 foreach ($this->lines as $line) {
2673 $result = $clonedObj->addline($line->description, $line->subprice, $line->qty, $line->tva_tx, $line->localtax1_tx, $line->localtax2_tx, $line->fk_product, $line->remise_percent, $line->date_start, $line->date_cloture, 'HT', 0, $line->info_bits, $line->fk_fournprice, $line->pa_ht, $line->array_options, $line->fk_unit, $line->rang);
2674 if ($result < 0) {
2675 $error++;
2676 $this->error = $clonedObj->error;
2677 $this->errors[] = $clonedObj->error;
2678 }
2679 }
2680 }
2681
2682 if (!$error) {
2683 // Hook of thirdparty module
2684 if (is_object($hookmanager)) {
2685 $parameters = array(
2686 'objFrom' => $this,
2687 'clonedObj' => $clonedObj
2688 );
2689 $action = '';
2690 $reshook = $hookmanager->executeHooks('createFrom', $parameters, $clonedObj, $action); // Note that $action and $object may have been modified by some hooks
2691 if ($reshook < 0) {
2692 $this->setErrorsFromObject($hookmanager);
2693 $error++;
2694 }
2695 }
2696 }
2697
2698 unset($clonedObj->context['createfromclone']);
2699
2700 // End
2701 if (!$error) {
2702 $this->db->commit();
2703 return $clonedObj->id;
2704 } else {
2705 $this->db->rollback();
2706 return -1;
2707 }
2708 }
2709
2710
2720 public function doAutoRenewContracts($thirdparty_id = 0, $delayindaysshort = 0)
2721 {
2722 global $langs, $user;
2723
2724 $langs->load("agenda");
2725
2726 $now = dol_now();
2727
2728 $enddatetoscan = dol_time_plus_duree($now, -1 * abs($delayindaysshort), 'd');
2729
2730 $error = 0;
2731 $this->output = '';
2732 $this->error = '';
2733
2734 $contractlineprocessed = array();
2735 $contractignored = array();
2736 $contracterror = array();
2737
2738 dol_syslog(__METHOD__, LOG_DEBUG);
2739
2740 $sql = 'SELECT c.rowid, c.ref_customer, cd.rowid as lid, cd.date_fin_validite, p.duration';
2741 $sql .= ' FROM '.MAIN_DB_PREFIX.'contrat as c, '.MAIN_DB_PREFIX.'contratdet as cd';
2742 $sql .= ' LEFT JOIN '.MAIN_DB_PREFIX.'product as p ON p.rowid = cd.fk_product';
2743 $sql .= ' WHERE cd.fk_contrat = c.rowid';
2744 $sql .= " AND date_format(cd.date_fin_validite, '%Y-%m-%d') <= date_format('".$this->db->idate($enddatetoscan)."', '%Y-%m-%d')";
2745 $sql .= " AND cd.statut = 4";
2746 if ($thirdparty_id > 0) {
2747 $sql .= " AND c.fk_soc = ".((int) $thirdparty_id);
2748 }
2749 //print $sql;
2750
2751 $resql = $this->db->query($sql);
2752 if ($resql) {
2753 $num = $this->db->num_rows($resql);
2754
2755 include_once DOL_DOCUMENT_ROOT.'/core/class/html.formmail.class.php';
2756
2757 $i = 0;
2758 while ($i < $num) {
2759 $obj = $this->db->fetch_object($resql);
2760 if ($obj) {
2761 if (!empty($contractlineprocessed[$obj->lid]) || !empty($contractignored[$obj->rowid]) || !empty($contracterror[$obj->rowid])) {
2762 continue;
2763 }
2764
2765 // Load contract
2766 $object = new Contrat($this->db);
2767 $object->fetch($obj->rowid); // fetch also lines
2768 //$object->fetch_thirdparty();
2769
2770 if ($object->id <= 0) {
2771 $error++;
2772 $this->errors[] = 'Failed to load contract with id='.$obj->rowid;
2773 continue;
2774 }
2775
2776 dol_syslog("* Process contract line in doRenewalContracts for contract id=".$object->id." ref=".$object->ref." ref_customer=".$object->ref_customer." contract line id=".$obj->lid);
2777
2778 // Update expiration date of line
2779 $expirationdate = $this->db->jdate($obj->date_fin_validite);
2780 $duration_value = preg_replace('/[^0-9]/', '', $obj->duration);
2781 $duration_unit = preg_replace('/\d/', '', $obj->duration);
2782 //var_dump($expirationdate.' '.$enddatetoscan);
2783
2784 // Load linked ->linkedObjects (objects linked)
2785 // @TODO Comment this line and then make the search if there is n open invoice(s) by doing a dedicated SQL COUNT request to fill $contractcanceled.
2786 $object->fetchObjectLinked(null, '', null, '', 'OR', 1, 'sourcetype', 1);
2787
2788 // Test if there is at least 1 open invoice
2789 if (isset($object->linkedObjects['facture']) && is_array($object->linkedObjects['facture']) && count($object->linkedObjects['facture']) > 0) {
2790 // Sort array of linked invoices by ascending date
2791 usort($object->linkedObjects['facture'], array('Contrat', 'contractCmpDate'));
2792 //dol_sort_array($object->linkedObjects['facture'], 'date');
2793
2794 $someinvoicenotpaid = 0;
2795 foreach ($object->linkedObjects['facture'] as $idinvoice => $invoice) {
2796 if ($invoice->statut == Facture::STATUS_DRAFT) {
2797 continue;
2798 } // Draft invoice are not invoice not paid
2799
2800 if (empty($invoice->paye)) {
2801 $someinvoicenotpaid++;
2802 }
2803 }
2804 if ($someinvoicenotpaid) {
2805 $this->output .= 'Contract '.$object->ref.' is qualified for renewal but there is '.$someinvoicenotpaid.' invoice(s) unpayed so we cancel renewal'."\n";
2806 $contractignored[$object->id] = $object->ref;
2807 continue;
2808 }
2809 }
2810
2811 if ($expirationdate && $expirationdate < $enddatetoscan) {
2812 dol_syslog("Define the newdate of end of services from expirationdate=".$expirationdate);
2813 $newdate = $expirationdate;
2814 $protecti = 0; //$protecti is to avoid infinite loop
2815 while ($newdate < $enddatetoscan && $protecti < 1000) {
2816 $newdate = dol_time_plus_duree($newdate, $duration_value, $duration_unit);
2817 $protecti++;
2818 }
2819
2820 if ($protecti < 1000) { // If not, there is a pb
2821 // We will update the end of date of contrat, so first we refresh contract data
2822 dol_syslog("We will update the end of date of contract with newdate = ".dol_print_date($newdate, 'dayhourrfc'));
2823
2824 $this->db->begin();
2825
2826 $errorforlocaltransaction = 0;
2827
2828 $label = 'Renewal of contrat '.$object->ref.' line '.$obj->lid;
2829 $comment = 'Renew date of contract '.$object->ref.' line '.$obj->lid.' by doAutoRenewContracts';
2830
2831 $sqlupdate = 'UPDATE '.MAIN_DB_PREFIX."contratdet SET date_fin_validite = '".$this->db->idate($newdate)."'";
2832 $sqlupdate .= ' WHERE rowid = '.((int) $obj->lid);
2833 $resqlupdate = $this->db->query($sqlupdate);
2834 if ($resqlupdate) {
2835 $contractlineprocessed[$obj->lid] = $object->ref;
2836
2837 $actioncode = 'RENEW_CONTRACT';
2838 $now = dol_now();
2839
2840 // Create an event
2841 $actioncomm = new ActionComm($this->db);
2842 $actioncomm->type_code = 'AC_OTH_AUTO'; // Type of event ('AC_OTH', 'AC_OTH_AUTO', 'AC_XXX'...)
2843 $actioncomm->code = 'AC_'.$actioncode;
2844 $actioncomm->label = $label;
2845 $actioncomm->datep = $now;
2846 $actioncomm->datef = $now;
2847 $actioncomm->percentage = -1; // Not applicable
2848 $actioncomm->socid = $object->socid;
2849 $actioncomm->authorid = $user->id; // User saving action
2850 $actioncomm->userownerid = $user->id; // Owner of action
2851 $actioncomm->fk_element = $object->id;
2852 $actioncomm->elementtype = 'contract';
2853 $actioncomm->note_private = $comment;
2854
2855 $ret = $actioncomm->create($user); // User creating action
2856 } else {
2857 $contracterror[$object->id] = $object->ref;
2858
2859 $error++;
2860 $errorforlocaltransaction++;
2861 $this->error = $this->db->lasterror();
2862 }
2863
2864 if (! $errorforlocaltransaction) {
2865 $this->db->commit();
2866 } else {
2867 $this->db->rollback();
2868 }
2869 } else {
2870 $error++;
2871 $this->error = "Bad value for newdate in doAutoRenewContracts - expirationdate=".$expirationdate." enddatetoscan=".$enddatetoscan." duration_value=".$duration_value." duration_unit=".$duration_value;
2872 dol_syslog($this->error, LOG_ERR);
2873 }
2874 }
2875 }
2876 $i++;
2877 }
2878 } else {
2879 $error++;
2880 $this->error = $this->db->lasterror();
2881 }
2882
2883 $this->output .= count($contractlineprocessed).' contract line(s) with end date before '.dol_print_date($enddatetoscan, 'day').' were renewed'.(count($contractlineprocessed) > 0 ? ' : '.implode(',', $contractlineprocessed) : '');
2884
2885 return ($error ? 1 : 0);
2886 }
2887
2895 public static function contractCmpDate($a, $b)
2896 {
2897 if ($a->date == $b->date) {
2898 return strcmp((string) $a->id, (string) $b->id);
2899 }
2900 return ($a->date < $b->date) ? -1 : 1;
2901 }
2902
2910 public function getKanbanView($option = '', $arraydata = null)
2911 {
2912 global $langs;
2913
2914 $selected = (empty($arraydata['selected']) ? 0 : $arraydata['selected']);
2915
2916 $return = '<div class="box-flex-item box-flex-grow-zero">';
2917 $return .= '<div class="info-box info-box-sm">';
2918 $return .= '<span class="info-box-icon bg-infobox-action">';
2919 $return .= img_picto('', $this->picto);
2920 $return .= '</span>';
2921 $return .= '<div class="info-box-content">';
2922 $return .= '<span class="info-box-ref inline-block tdoverflowmax150 valignmiddle">'.(method_exists($this, 'getNomUrl') ? $this->getNomUrl() : $this->ref).'</span>';
2923 if ($selected >= 0) {
2924 $return .= '<input id="cb'.$this->id.'" class="flat checkforselect fright" type="checkbox" name="toselect[]" value="'.$this->id.'"'.($selected ? ' checked="checked"' : '').'>';
2925 }
2926 if (!empty($arraydata['thirdparty'])) {
2927 $tmpthirdparty = $arraydata['thirdparty'];
2928 $return .= '<br><div class="info-box-label inline-block valignmiddle">'.$tmpthirdparty->getNomUrl(1).'</div>';
2929 }
2930 if (property_exists($this, 'date_contrat')) {
2931 $return .= '<br><span class="opacitymedium valignmiddle">'.$langs->trans("DateContract").' : </span><span class="info-box-label valignmiddle">'.dol_print_date($this->date_contrat, 'day').'</span>';
2932 }
2933 if (method_exists($this, 'getLibStatut')) {
2934 $return .= '<br><div class="info-box-status valignmiddle">'.$this->getLibStatut(7).'</div>';
2935 }
2936 $return .= '</div>';
2937 $return .= '</div>';
2938 $return .= '</div>';
2939
2940 return $return;
2941 }
2942
2943 // @Todo getLibSignedStatus, LibSignedStatus
2944
2954 public function setSignedStatus(User $user, int $status = 0, int $notrigger = 0, $triggercode = ''): int
2955 {
2956 return $this->setSignedStatusCommon($user, $status, $notrigger, $triggercode);
2957 }
2958}
2959
2960
2965{
2969 public $element = 'contratdet';
2970
2974 public $table_element = 'contratdet';
2975
2979 public $parent_element = 'contrat';
2980
2984 public $fk_parent_attribute = 'fk_contrat';
2985
2990 public $element_for_permission = 'contrat';
2991
2995 public $id;
2996
3000 public $ref;
3001
3005 public $fk_contrat;
3006
3010 public $fk_product;
3011
3012 public $statut; // 0 inactive, 4 active, 5 closed
3013 public $type; // 0 for product, 1 for service
3014
3019 public $label;
3020
3025 public $libelle;
3026
3030 public $description;
3031
3032 public $product_type; // 0 for product, 1 for service
3033 public $product_ref;
3034 public $product_label;
3035
3036 public $date_commande;
3037
3038 public $date_start; // date start planned
3039 public $date_start_real; // date start real
3040 public $date_end; // date end planned
3041 public $date_end_real; // date end real
3042
3043 public $tva_tx;
3044 public $vat_src_code;
3045 public $localtax1_tx;
3046 public $localtax2_tx;
3047 public $localtax1_type; // Local tax 1 type
3048 public $localtax2_type; // Local tax 2 type
3049 public $qty;
3050 public $remise_percent;
3051 public $remise;
3052
3056 public $fk_remise_except;
3057
3062 public $subprice;
3063
3069 public $price;
3070
3074 public $price_ht;
3075
3076 public $total_ht;
3077 public $total_tva;
3078 public $total_localtax1;
3079 public $total_localtax2;
3080 public $total_ttc;
3081
3085 public $fk_fournprice;
3086
3087 public $pa_ht;
3088
3092 public $info_bits;
3093
3097 public $fk_user_author;
3098
3102 public $fk_user_ouverture;
3103
3107 public $fk_user_cloture;
3108
3112 public $commentaire;
3113
3114
3118 public $rang = 0;
3119
3120
3121 const STATUS_INITIAL = 0;
3122 const STATUS_OPEN = 4;
3123 const STATUS_CLOSED = 5;
3124
3125
3126 // BEGIN MODULEBUILDER PROPERTIES
3130 public $fields = array(
3131 'rowid' => array('type' => 'integer', 'label' => 'TechnicalID', 'enabled' => 1, 'visible' => -1, 'notnull' => 1, 'position' => 10),
3132 'entity' => array('type' => 'integer', 'label' => 'Entity', 'default' => '1', 'enabled' => 1, 'visible' => -2, 'notnull' => 1, 'position' => 30, 'index' => 1),
3133 'tms' => array('type' => 'timestamp', 'label' => 'DateModification', 'enabled' => 1, 'visible' => -1, 'notnull' => 1, 'position' => 35),
3134 'qty' => array('type' => 'integer', 'label' => 'Quantity', 'enabled' => 1, 'visible' => 1, 'notnull' => 1, 'position' => 35, 'isameasure' => 1),
3135 'total_ht' => array('type' => 'integer', 'label' => 'AmountHT', 'enabled' => 1, 'visible' => -1, 'notnull' => 1, 'position' => 36, 'isameasure' => 1),
3136 'total_tva' => array('type' => 'integer', 'label' => 'AmountVAT', 'enabled' => 1, 'visible' => -1, 'notnull' => 1, 'position' => 37, 'isameasure' => 1),
3137 'total_ttc' => array('type' => 'integer', 'label' => 'AmountTTC', 'enabled' => 1, 'visible' => -1, 'notnull' => 1, 'position' => 38, 'isameasure' => 1),
3138 //'datec' =>array('type'=>'datetime', 'label'=>'DateCreation', 'enabled'=>1, 'visible'=>-1, 'position'=>40),
3139 //'fk_soc' =>array('type'=>'integer:Societe:societe/class/societe.class.php', 'label'=>'ThirdParty', 'enabled'=>1, 'visible'=>-1, 'notnull'=>1, 'position'=>70),
3140 'fk_contrat' => array('type' => 'integer:Contrat:contrat/class/contrat.class.php', 'label' => 'Contract', 'enabled' => 1, 'visible' => -1, 'notnull' => 1, 'position' => 70),
3141 'fk_product' => array('type' => 'integer:Product:product/class/product.class.php:1', 'label' => 'Product', 'enabled' => 1, 'visible' => -1, 'position' => 75),
3142 //'fk_user_author' =>array('type'=>'integer:User:user/class/user.class.php', 'label'=>'Fk user author', 'enabled'=>1, 'visible'=>-1, 'notnull'=>1, 'position'=>90),
3143 'note_private' => array('type' => 'html', 'label' => 'NotePublic', 'enabled' => 1, 'visible' => 0, 'position' => 105),
3144 'note_public' => array('type' => 'html', 'label' => 'NotePrivate', 'enabled' => 1, 'visible' => 0, 'position' => 110),
3145 //'model_pdf' =>array('type'=>'varchar(255)', 'label'=>'Model pdf', 'enabled'=>1, 'visible'=>0, 'position'=>115),
3146 //'import_key' =>array('type'=>'varchar(14)', 'label'=>'ImportId', 'enabled'=>1, 'visible'=>-2, 'position'=>120),
3147 //'extraparams' =>array('type'=>'varchar(255)', 'label'=>'Extraparams', 'enabled'=>1, 'visible'=>-1, 'position'=>125),
3148 'fk_user_ouverture' => array('type' => 'integer:User:user/class/user.class.php', 'label' => 'UserStartingService', 'enabled' => 1, 'visible' => -2, 'notnull' => -1, 'position' => 135),
3149 'fk_user_cloture' => array('type' => 'integer:User:user/class/user.class.php', 'label' => 'UserClosingService', 'enabled' => 1, 'visible' => -2, 'notnull' => -1, 'position' => 135),
3150 'statut' => array('type' => 'smallint(6)', 'label' => 'Statut', 'enabled' => 1, 'visible' => -1, 'position' => 500, 'arrayofkeyval' => array(0 => 'Draft', 4 => 'Open', 5 => 'Closed')),
3151 'rang' => array('type' => 'integer', 'label' => 'Rank', 'enabled' => 1, 'visible' => 0, 'position' => 500, 'default' => '0')
3152 );
3153 // END MODULEBUILDER PROPERTIES
3154
3155
3161 public function __construct($db)
3162 {
3163 $this->db = $db;
3164 }
3165
3166
3173 public function getLibStatut($mode)
3174 {
3175 return $this->LibStatut($this->statut, $mode, ((!empty($this->date_end)) ? ($this->date_end < dol_now() ? 1 : 0) : -1));
3176 }
3177
3178 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
3189 public static function LibStatut($status, $mode, $expired = -1, $moreatt = '', $morelabel = '')
3190 {
3191 // phpcs:enable
3192 global $langs;
3193 $langs->load("contracts");
3194
3195 if ($status == self::STATUS_INITIAL) {
3196 $labelStatus = $langs->transnoentities("ServiceStatusInitial");
3197 $labelStatusShort = $langs->transnoentities("ServiceStatusInitial");
3198 } elseif ($status == self::STATUS_OPEN && $expired == -1) {
3199 $labelStatus = $langs->transnoentities("ServiceStatusRunning");
3200 $labelStatusShort = $langs->transnoentities("ServiceStatusRunning");
3201 } elseif ($status == self::STATUS_OPEN && $expired == 0) {
3202 $labelStatus = $langs->transnoentities("ServiceStatusNotLate");
3203 $labelStatusShort = $langs->transnoentities("ServiceStatusNotLateShort");
3204 } elseif ($status == self::STATUS_OPEN && $expired == 1) {
3205 $labelStatus = $langs->transnoentities("ServiceStatusLate");
3206 $labelStatusShort = $langs->transnoentities("ServiceStatusLateShort");
3207 } elseif ($status == self::STATUS_CLOSED) {
3208 $labelStatus = $langs->transnoentities("ServiceStatusClosed");
3209 $labelStatusShort = $langs->transnoentities("ServiceStatusClosed");
3210 }
3211
3212 $statusType = 'status'.$status;
3213 if ($status == self::STATUS_OPEN && $expired == 1) {
3214 $statusType = 'status1';
3215 }
3216 if ($status == self::STATUS_CLOSED) {
3217 $statusType = 'status6';
3218 }
3219
3220 $params = array();
3221 $reg = array();
3222 if (preg_match('/class="(.*)"/', $moreatt, $reg)) {
3223 $params = array('badgeParams' => array('css' => $reg[1]));
3224 }
3225 return dolGetStatus($labelStatus.($morelabel ? ' '.$morelabel : ''), $labelStatusShort.($morelabel ? ' '.$morelabel : ''), '', $statusType, $mode, '', $params);
3226 }
3227
3234 public function getTooltipContentArray($params)
3235 {
3236 global $conf, $langs, $user;
3237
3238 $datas = [];
3239 $datas['label'] = $langs->trans("ShowContractOfService").': '.$this->label;
3240 if (empty($datas['label'])) {
3241 $datas['label'] = $this->description;
3242 }
3243
3244 return $datas;
3245 }
3246
3254 public function getNomUrl($withpicto = 0, $maxlength = 0)
3255 {
3256 global $langs;
3257
3258 $result = '';
3259 $label = $langs->trans("ShowContractOfService").': '.$this->label;
3260 if (empty($label)) {
3261 $label = $this->description;
3262 }
3263 $classfortooltip = 'classfortooltip';
3264 $dataparams = '';
3265 if (getDolGlobalInt('MAIN_ENABLE_AJAX_TOOLTIP')) {
3266 $params = [
3267 'id' => $this->fk_contrat,
3268 'objecttype' => $this->element,
3269 ];
3270 $classfortooltip = 'classforajaxtooltip';
3271 $dataparams = ' data-params="'.dol_escape_htmltag(json_encode($params)).'"';
3272 $label = '';
3273 }
3274
3275 $link = '<a href="'.DOL_URL_ROOT.'/contrat/card.php?id='.$this->fk_contrat.'"';
3276 $link .= ($label ? ' title="'.dol_escape_htmltag($label, 1).'"' : ' title="tocomplete"');
3277 $link .= $dataparams.' class="'.$classfortooltip.'">';
3278 $linkend = '</a>';
3279
3280 $picto = 'service';
3281 if ($this->type == 0) {
3282 $picto = 'product';
3283 }
3284
3285 if ($withpicto) {
3286 $result .= ($link.img_object($label, $picto, $dataparams.' class="'.$classfortooltip.'"').$linkend);
3287 }
3288 if ($withpicto && $withpicto != 2) {
3289 $result .= ' ';
3290 }
3291 if ($withpicto != 2) {
3292 $result .= $link.($this->product_ref ? $this->product_ref.' ' : '').($this->label ? $this->label : $this->description).$linkend;
3293 }
3294 return $result;
3295 }
3296
3304 public function fetch($id, $ref = '')
3305 {
3306 // Check parameters
3307 if (empty($id) && empty($ref)) {
3308 return -1;
3309 }
3310
3311 $sql = "SELECT";
3312 $sql .= " t.rowid,";
3313 $sql .= " t.tms,";
3314 $sql .= " t.fk_contrat,";
3315 $sql .= " t.fk_product,";
3316 $sql .= " t.statut,";
3317 $sql .= " t.label,"; // This field is not used. Only label of product
3318 $sql .= " p.ref as product_ref,";
3319 $sql .= " p.label as product_label,";
3320 $sql .= " p.description as product_desc,";
3321 $sql .= " p.fk_product_type as product_type,";
3322 $sql .= " t.description,";
3323 $sql .= " t.date_commande,";
3324 $sql .= " t.date_ouverture_prevue as date_start,";
3325 $sql .= " t.date_ouverture as date_start_real,";
3326 $sql .= " t.date_fin_validite as date_end,";
3327 $sql .= " t.date_cloture as date_end_real,";
3328 $sql .= " t.tva_tx,";
3329 $sql .= " t.vat_src_code,";
3330 $sql .= " t.localtax1_tx,";
3331 $sql .= " t.localtax2_tx,";
3332 $sql .= " t.localtax1_type,";
3333 $sql .= " t.localtax2_type,";
3334 $sql .= " t.qty,";
3335 $sql .= " t.remise_percent,";
3336 $sql .= " t.remise,";
3337 $sql .= " t.fk_remise_except,";
3338 $sql .= " t.subprice,";
3339 $sql .= " t.price_ht,";
3340 $sql .= " t.total_ht,";
3341 $sql .= " t.total_tva,";
3342 $sql .= " t.total_localtax1,";
3343 $sql .= " t.total_localtax2,";
3344 $sql .= " t.total_ttc,";
3345 $sql .= " t.fk_product_fournisseur_price as fk_fournprice,";
3346 $sql .= " t.buy_price_ht as pa_ht,";
3347 $sql .= " t.info_bits,";
3348 $sql .= " t.fk_user_author,";
3349 $sql .= " t.fk_user_ouverture,";
3350 $sql .= " t.fk_user_cloture,";
3351 $sql .= " t.commentaire,";
3352 $sql .= " t.fk_unit,";
3353 $sql .= " t.rang";
3354 $sql .= " FROM ".MAIN_DB_PREFIX."contratdet as t LEFT JOIN ".MAIN_DB_PREFIX."product as p ON p.rowid = t.fk_product";
3355 if ($id) {
3356 $sql .= " WHERE t.rowid = ".((int) $id);
3357 }
3358 if ($ref) {
3359 $sql .= " WHERE t.rowid = '".$this->db->escape($ref)."'";
3360 }
3361
3362 dol_syslog(get_class($this)."::fetch", LOG_DEBUG);
3363 $resql = $this->db->query($sql);
3364 if ($resql) {
3365 if ($this->db->num_rows($resql)) {
3366 $obj = $this->db->fetch_object($resql);
3367
3368 $this->id = $obj->rowid;
3369 $this->ref = $obj->rowid;
3370
3371 $this->tms = $this->db->jdate($obj->tms);
3372 $this->fk_contrat = $obj->fk_contrat;
3373 $this->fk_product = $obj->fk_product;
3374 $this->statut = $obj->statut;
3375 $this->product_ref = $obj->product_ref;
3376 $this->product_label = $obj->product_label;
3377 $this->product_type = $obj->product_type;
3378 $this->label = $obj->label; // deprecated. We do not use this field. Only ref and label of product, and description of contract line
3379 $this->description = $obj->description;
3380 $this->date_commande = $this->db->jdate($obj->date_commande);
3381
3382 $this->date_start = $this->db->jdate($obj->date_start);
3383 $this->date_start_real = $this->db->jdate($obj->date_start_real);
3384 $this->date_end = $this->db->jdate($obj->date_end);
3385 $this->date_end_real = $this->db->jdate($obj->date_end_real);
3386 // For backward compatibility
3387 //$this->date_ouverture_prevue = $this->db->jdate($obj->date_ouverture_prevue);
3388 //$this->date_ouverture = $this->db->jdate($obj->date_ouverture);
3389 //$this->date_fin_validite = $this->db->jdate($obj->date_fin_validite);
3390 //$this->date_cloture = $this->db->jdate($obj->date_cloture);
3391
3392 $this->tva_tx = $obj->tva_tx;
3393 $this->vat_src_code = $obj->vat_src_code;
3394 $this->localtax1_tx = $obj->localtax1_tx;
3395 $this->localtax2_tx = $obj->localtax2_tx;
3396 $this->localtax1_type = $obj->localtax1_type;
3397 $this->localtax2_type = $obj->localtax2_type;
3398 $this->qty = $obj->qty;
3399 $this->remise_percent = $obj->remise_percent;
3400 $this->fk_remise_except = $obj->fk_remise_except;
3401 $this->subprice = $obj->subprice;
3402 $this->price_ht = $obj->price_ht;
3403 $this->total_ht = $obj->total_ht;
3404 $this->total_tva = $obj->total_tva;
3405 $this->total_localtax1 = $obj->total_localtax1;
3406 $this->total_localtax2 = $obj->total_localtax2;
3407 $this->total_ttc = $obj->total_ttc;
3408 $this->info_bits = $obj->info_bits;
3409 $this->fk_user_author = $obj->fk_user_author;
3410 $this->fk_user_ouverture = $obj->fk_user_ouverture;
3411 $this->fk_user_cloture = $obj->fk_user_cloture;
3412 $this->commentaire = $obj->commentaire;
3413 $this->fk_fournprice = $obj->fk_fournprice;
3414
3415 $marginInfos = getMarginInfos($obj->subprice, $obj->remise_percent, $obj->tva_tx, $obj->localtax1_tx, $obj->localtax2_tx, $this->fk_fournprice, $obj->pa_ht);
3416 $this->pa_ht = $marginInfos[0];
3417 $this->fk_unit = $obj->fk_unit;
3418
3419 $this->rang = $obj->rang;
3420
3421 $this->fetch_optionals();
3422 }
3423
3424 $this->db->free($resql);
3425
3426 return 1;
3427 } else {
3428 $this->error = "Error ".$this->db->lasterror();
3429 return -1;
3430 }
3431 }
3432
3433
3441 public function update($user, $notrigger = 0)
3442 {
3443 global $mysoc;
3444
3445 $error = 0;
3446
3447 // Clean parameters
3448 $this->fk_contrat = (int) $this->fk_contrat;
3449 $this->fk_product = (int) $this->fk_product;
3450 $this->statut = (int) $this->statut;
3451 $this->label = trim($this->label);
3452 $this->description = trim($this->description);
3453 $this->vat_src_code = trim($this->vat_src_code);
3454 $this->tva_tx = trim((string) $this->tva_tx);
3455 $this->localtax1_tx = trim($this->localtax1_tx);
3456 $this->localtax2_tx = trim($this->localtax2_tx);
3457 $this->qty = (float) $this->qty;
3458 $this->remise_percent = trim((string) $this->remise_percent);
3459 $this->fk_remise_except = (int) $this->fk_remise_except;
3460 $this->subprice = (float) price2num($this->subprice);
3461 $this->price_ht = (float) price2num($this->price_ht);
3462 $this->info_bits = (int) $this->info_bits;
3463 $this->fk_user_author = (int) $this->fk_user_author;
3464 $this->fk_user_ouverture = (int) $this->fk_user_ouverture;
3465 $this->fk_user_cloture = (int) $this->fk_user_cloture;
3466 $this->commentaire = trim($this->commentaire);
3467 $this->rang = (int) $this->rang;
3468 //if (empty($this->subprice)) $this->subprice = 0;
3469 if (empty($this->price_ht)) {
3470 $this->price_ht = 0;
3471 }
3472 if (empty($this->total_ht)) {
3473 $this->total_ht = 0;
3474 }
3475 if (empty($this->total_tva)) {
3476 $this->total_tva = 0;
3477 }
3478 if (empty($this->total_ttc)) {
3479 $this->total_ttc = 0;
3480 }
3481 if (empty($this->localtax1_tx)) {
3482 $this->localtax1_tx = 0;
3483 }
3484 if (empty($this->localtax2_tx)) {
3485 $this->localtax2_tx = 0;
3486 }
3487 if (empty($this->remise_percent)) {
3488 $this->remise_percent = 0;
3489 }
3490
3491 // Calcul du total TTC et de la TVA pour la ligne a partir de
3492 // qty, pu, remise_percent et txtva
3493 // TRES IMPORTANT: C'est au moment de l'insertion ligne qu'on doit stocker
3494 // la part ht, tva et ttc, et ce au niveau de la ligne qui a son propre taux tva.
3495 $localtaxes_type = getLocalTaxesFromRate($this->tva_tx, 0, $this->thirdparty, $mysoc);
3496
3497 $tabprice = calcul_price_total($this->qty, $this->price_ht, $this->remise_percent, $this->tva_tx, $this->localtax1_tx, $this->localtax2_tx, 0, 'HT', 0, 1, $mysoc, $localtaxes_type);
3498 $this->total_ht = $tabprice[0];
3499 $this->total_tva = $tabprice[1];
3500 $this->total_ttc = $tabprice[2];
3501 $this->total_localtax1 = $tabprice[9];
3502 $this->total_localtax2 = $tabprice[10];
3503
3504 if (empty($this->pa_ht)) {
3505 $this->pa_ht = 0;
3506 }
3507
3508 // if buy price not defined, define buyprice as configured in margin admin
3509 if ($this->pa_ht == 0) {
3510 $result = $this->defineBuyPrice($this->subprice, $this->remise_percent, $this->fk_product);
3511 if ($result < 0) {
3512 return -1;
3513 } else {
3514 $this->pa_ht = $result;
3515 }
3516 }
3517
3518 // $this->oldcopy should have been set by the caller of update (here properties were already modified)
3519 if (empty($this->oldcopy)) {
3520 dol_syslog("this->oldcopy should have been set by the caller of update (here properties were already modified)", LOG_WARNING);
3521 $this->oldcopy = dol_clone($this, 2);
3522 }
3523
3524 $this->db->begin();
3525
3526 // Update request
3527 $sql = "UPDATE ".MAIN_DB_PREFIX."contratdet SET";
3528 $sql .= " fk_contrat = ".((int) $this->fk_contrat).",";
3529 $sql .= " fk_product = ".($this->fk_product ? ((int) $this->fk_product) : 'null').",";
3530 $sql .= " statut = ".((int) $this->statut).",";
3531 $sql .= " label = '".$this->db->escape($this->label)."',";
3532 $sql .= " description = '".$this->db->escape($this->description)."',";
3533 $sql .= " date_commande = ".($this->date_commande != '' ? "'".$this->db->idate($this->date_commande)."'" : "null").",";
3534 $sql .= " date_ouverture_prevue = ".($this->date_start != '' ? "'".$this->db->idate($this->date_start)."'" : "null").",";
3535 $sql .= " date_ouverture = ".($this->date_start_real != '' ? "'".$this->db->idate($this->date_start_real)."'" : "null").",";
3536 $sql .= " date_fin_validite = ".($this->date_end != '' ? "'".$this->db->idate($this->date_end)."'" : "null").",";
3537 $sql .= " date_cloture = ".($this->date_end_real != '' ? "'".$this->db->idate($this->date_end_real)."'" : "null").",";
3538 $sql .= " vat_src_code = '".$this->db->escape($this->vat_src_code)."',";
3539 $sql .= " tva_tx = ".price2num($this->tva_tx).",";
3540 $sql .= " localtax1_tx = ".price2num($this->localtax1_tx).",";
3541 $sql .= " localtax2_tx = ".price2num($this->localtax2_tx).",";
3542 $sql .= " qty = ".price2num($this->qty).",";
3543 $sql .= " remise_percent = ".price2num($this->remise_percent).",";
3544 $sql .= " remise = ".($this->remise ? price2num($this->remise) : "null").",";
3545 $sql .= " fk_remise_except = ".($this->fk_remise_except > 0 ? $this->fk_remise_except : "null").",";
3546 $sql .= " subprice = ".($this->subprice != '' ? $this->subprice : "null").",";
3547 $sql .= " price_ht = ".($this->price_ht != '' ? $this->price_ht : "null").",";
3548 $sql .= " total_ht = ".$this->total_ht.",";
3549 $sql .= " total_tva = ".$this->total_tva.",";
3550 $sql .= " total_localtax1 = ".$this->total_localtax1.",";
3551 $sql .= " total_localtax2 = ".$this->total_localtax2.",";
3552 $sql .= " total_ttc = ".$this->total_ttc.",";
3553 $sql .= " fk_product_fournisseur_price = ".(!empty($this->fk_fournprice) ? $this->fk_fournprice : "NULL").",";
3554 $sql .= " buy_price_ht = '".price2num($this->pa_ht)."',";
3555 $sql .= " info_bits = '".$this->db->escape($this->info_bits)."',";
3556 $sql .= " fk_user_author = ".($this->fk_user_author >= 0 ? $this->fk_user_author : "NULL").",";
3557 $sql .= " fk_user_ouverture = ".($this->fk_user_ouverture > 0 ? $this->fk_user_ouverture : "NULL").",";
3558 $sql .= " fk_user_cloture = ".($this->fk_user_cloture > 0 ? $this->fk_user_cloture : "NULL").",";
3559 $sql .= " commentaire = '".$this->db->escape($this->commentaire)."',";
3560 $sql .= " fk_unit = ".(!$this->fk_unit ? 'NULL' : $this->fk_unit).",";
3561 $sql .= " rang = ".(empty($this->rang) ? '0' : (int) $this->rang);
3562 $sql .= " WHERE rowid = ".((int) $this->id);
3563
3564 dol_syslog(get_class($this)."::update", LOG_DEBUG);
3565 $resql = $this->db->query($sql);
3566 if (!$resql) {
3567 $this->error = "Error ".$this->db->lasterror();
3568 $error++;
3569 }
3570
3571 if (!$error) { // For avoid conflicts if trigger used
3572 $result = $this->insertExtraFields();
3573 if ($result < 0) {
3574 $error++;
3575 }
3576 }
3577
3578 // If we change a planned date (start or end) of one contract line, sync dates for all other services too
3579 if (!$error && getDolGlobalString('CONTRACT_SYNC_PLANNED_DATE_OF_SERVICES')) {
3580 dol_syslog(get_class($this)."::update CONTRACT_SYNC_PLANNED_DATE_OF_SERVICES is on so we update date for all lines", LOG_DEBUG);
3581
3582 if ($this->date_start != $this->oldcopy->date_start) {
3583 $sql = 'UPDATE '.MAIN_DB_PREFIX.'contratdet SET';
3584 $sql .= " date_ouverture_prevue = ".($this->date_start != '' ? "'".$this->db->idate($this->date_start)."'" : "null");
3585 $sql .= " WHERE fk_contrat = ".((int) $this->fk_contrat);
3586
3587 $resql = $this->db->query($sql);
3588 if (!$resql) {
3589 $error++;
3590 $this->error = "Error ".$this->db->lasterror();
3591 }
3592 }
3593 if ($this->date_end != $this->oldcopy->date_end) {
3594 $sql = 'UPDATE '.MAIN_DB_PREFIX.'contratdet SET';
3595 $sql .= " date_fin_validite = ".($this->date_end != '' ? "'".$this->db->idate($this->date_end)."'" : "null");
3596 $sql .= " WHERE fk_contrat = ".((int) $this->fk_contrat);
3597
3598 $resql = $this->db->query($sql);
3599 if (!$resql) {
3600 $error++;
3601 $this->error = "Error ".$this->db->lasterror();
3602 }
3603 }
3604 }
3605
3606 if (!$error && !$notrigger) {
3607 // Call trigger
3608 $result = $this->call_trigger('LINECONTRACT_MODIFY', $user);
3609 if ($result < 0) {
3610 $error++;
3611 $this->db->rollback();
3612 }
3613 // End call triggers
3614 }
3615
3616 if (!$error) {
3617 $this->db->commit();
3618 return 1;
3619 } else {
3620 $this->db->rollback();
3621 $this->errors[] = $this->error;
3622 return -1;
3623 }
3624 }
3625
3626
3627 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
3634 public function update_total()
3635 {
3636 // phpcs:enable
3637 $this->db->begin();
3638
3639 // Mise a jour ligne en base
3640 $sql = "UPDATE ".MAIN_DB_PREFIX."contratdet SET";
3641 $sql .= " total_ht=".price2num($this->total_ht, 'MT');
3642 $sql .= ",total_tva=".price2num($this->total_tva, 'MT');
3643 $sql .= ",total_localtax1=".price2num($this->total_localtax1, 'MT');
3644 $sql .= ",total_localtax2=".price2num($this->total_localtax2, 'MT');
3645 $sql .= ",total_ttc=".price2num($this->total_ttc, 'MT');
3646 $sql .= " WHERE rowid = ".((int) $this->id);
3647
3648 dol_syslog(get_class($this)."::update_total", LOG_DEBUG);
3649
3650 $resql = $this->db->query($sql);
3651 if ($resql) {
3652 $this->db->commit();
3653 return 1;
3654 } else {
3655 $this->error = $this->db->error();
3656 $this->db->rollback();
3657 return -2;
3658 }
3659 }
3660
3661
3668 public function insert($notrigger = 0)
3669 {
3670 global $user;
3671
3672 $error = 0;
3673
3674 // Insertion dans la base
3675 $sql = "INSERT INTO ".MAIN_DB_PREFIX."contratdet";
3676 $sql .= " (fk_contrat, label, description, fk_product, qty, vat_src_code, tva_tx,";
3677 $sql .= " localtax1_tx, localtax2_tx, localtax1_type, localtax2_type, remise_percent, subprice,";
3678 $sql .= " total_ht, total_tva, total_localtax1, total_localtax2, total_ttc,";
3679 $sql .= " info_bits,";
3680 $sql .= " rang,";
3681 $sql .= " price_ht, remise, fk_product_fournisseur_price, buy_price_ht";
3682 if ($this->date_start > 0) {
3683 $sql .= ",date_ouverture_prevue";
3684 }
3685 if ($this->date_end > 0) {
3686 $sql .= ",date_fin_validite";
3687 }
3688 $sql .= ") VALUES ($this->fk_contrat, '', '".$this->db->escape($this->description)."',";
3689 $sql .= ($this->fk_product > 0 ? $this->fk_product : "null").",";
3690 $sql .= " '".$this->db->escape($this->qty)."',";
3691 $sql .= " '".$this->db->escape($this->vat_src_code)."',";
3692 $sql .= " '".$this->db->escape($this->tva_tx)."',";
3693 $sql .= " '".$this->db->escape($this->localtax1_tx)."',";
3694 $sql .= " '".$this->db->escape($this->localtax2_tx)."',";
3695 $sql .= " '".$this->db->escape($this->localtax1_type)."',";
3696 $sql .= " '".$this->db->escape($this->localtax2_type)."',";
3697 $sql .= " ".price2num($this->remise_percent).",".price2num($this->subprice).",";
3698 $sql .= " ".price2num($this->total_ht).",".price2num($this->total_tva).",".price2num($this->total_localtax1).",".price2num($this->total_localtax2).",".price2num($this->total_ttc).",";
3699 $sql .= " '".$this->db->escape($this->info_bits)."',";
3700 $sql .= " ".(empty($this->rang) ? '0' : (int) $this->rang).",";
3701 $sql .= " ".price2num($this->price_ht).",".price2num($this->remise).",";
3702 if ($this->fk_fournprice > 0) {
3703 $sql .= ' '.((int) $this->fk_fournprice).',';
3704 } else {
3705 $sql .= ' null,';
3706 }
3707 if ($this->pa_ht > 0) {
3708 $sql .= ' '.((float) price2num($this->pa_ht));
3709 } else {
3710 $sql .= ' null';
3711 }
3712 if ($this->date_start > 0) {
3713 $sql .= ",'".$this->db->idate($this->date_start)."'";
3714 }
3715 if ($this->date_end > 0) {
3716 $sql .= ",'".$this->db->idate($this->date_end)."'";
3717 }
3718 $sql .= ")";
3719
3720 dol_syslog(get_class($this)."::insert", LOG_DEBUG);
3721
3722 $resql = $this->db->query($sql);
3723 if ($resql) {
3724 $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX.'contratdet');
3725
3726 // Insert of extrafields
3727 if (!$error) {
3728 $result = $this->insertExtraFields();
3729 if ($result < 0) {
3730 $this->db->rollback();
3731 return -1;
3732 }
3733 }
3734
3735 if (!$notrigger) {
3736 // Call trigger
3737 $result = $this->call_trigger('LINECONTRACT_INSERT', $user);
3738 if ($result < 0) {
3739 $this->db->rollback();
3740 return -1;
3741 }
3742 // End call triggers
3743 }
3744
3745 $this->db->commit();
3746 return 1;
3747 } else {
3748 $this->db->rollback();
3749 $this->error = $this->db->error()." sql=".$sql;
3750 return -1;
3751 }
3752 }
3753
3754 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
3764 public function active_line($user, $date, $date_end = '', $comment = '')
3765 {
3766 // phpcs:enable
3767 $error = 0;
3768
3769 $this->db->begin();
3770
3771 $this->statut = ContratLigne::STATUS_OPEN;
3772 $this->date_start_real = $date;
3773 $this->date_end = $date_end;
3774 $this->fk_user_ouverture = $user->id;
3775 $this->date_end_real = null;
3776 $this->commentaire = $comment;
3777
3778 $sql = "UPDATE ".MAIN_DB_PREFIX."contratdet SET statut = ".((int) $this->statut).",";
3779 $sql .= " date_ouverture = ".(dol_strlen($this->date_start_real) != 0 ? "'".$this->db->idate($this->date_start_real)."'" : "null").",";
3780 if ($date_end >= 0) {
3781 $sql .= " date_fin_validite = ".(dol_strlen($this->date_end) != 0 ? "'".$this->db->idate($this->date_end)."'" : "null").",";
3782 }
3783 $sql .= " fk_user_ouverture = ".((int) $this->fk_user_ouverture).",";
3784 $sql .= " date_cloture = null,";
3785 $sql .= " commentaire = '".$this->db->escape($comment)."'";
3786 $sql .= " WHERE rowid = ".((int) $this->id)." AND (statut = ".ContratLigne::STATUS_INITIAL." OR statut = ".ContratLigne::STATUS_CLOSED.")";
3787
3788 dol_syslog(get_class($this)."::active_line", LOG_DEBUG);
3789 $resql = $this->db->query($sql);
3790 if ($resql) {
3791 // Call trigger
3792 $result = $this->call_trigger('LINECONTRACT_ACTIVATE', $user);
3793 if ($result < 0) {
3794 $error++;
3795 }
3796 // End call triggers
3797
3798 if (!$error) {
3799 $this->db->commit();
3800 return 1;
3801 } else {
3802 $this->db->rollback();
3803 return -1;
3804 }
3805 } else {
3806 $this->error = $this->db->lasterror();
3807 $this->db->rollback();
3808 return -1;
3809 }
3810 }
3811
3812 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
3822 public function close_line($user, $date_end_real, $comment = '', $notrigger = 0)
3823 {
3824 // phpcs:enable
3825 $this->date_cloture = $date_end_real;
3826 $this->date_end_real = $date_end_real;
3827 $this->user_closing_id = $user->id;
3828 $this->commentaire = $comment;
3829
3830 $error = 0;
3831
3832 // statut actif : 4
3833
3834 $this->db->begin();
3835
3836 $sql = "UPDATE ".MAIN_DB_PREFIX."contratdet SET statut = ".((int) ContratLigne::STATUS_CLOSED).",";
3837 $sql .= " date_cloture = '".$this->db->idate($date_end_real)."',";
3838 $sql .= " fk_user_cloture = ".((int) $user->id).",";
3839 $sql .= " commentaire = '".$this->db->escape($comment)."'";
3840 $sql .= " WHERE rowid = ".((int) $this->id)." AND statut = ".((int) ContratLigne::STATUS_OPEN);
3841
3842 $resql = $this->db->query($sql);
3843 if ($resql) {
3844 if (!$notrigger) {
3845 // Call trigger
3846 $result = $this->call_trigger('LINECONTRACT_CLOSE', $user);
3847 if ($result < 0) {
3848 $error++;
3849 $this->db->rollback();
3850 return -1;
3851 }
3852 // End call triggers
3853 }
3854
3855 $this->db->commit();
3856 return 1;
3857 } else {
3858 $this->error = $this->db->lasterror();
3859 $this->db->rollback();
3860 return -1;
3861 }
3862 }
3863}
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:58
print $langs trans("AuditedSecurityEvents").'</strong >< span class="opacitymedium"></span >< br > status
Or an array listing all the potential status of the object: array: int of the status => translated la...
Definition security.php:636
$object ref
Definition info.php:79
Class to manage agenda events (actions)
Parent class of all other business classes (invoices, contracts, proposals, orders,...
fetch_optionals($rowid=null, $optionsArray=null)
Function to get extra fields of an object into $this->array_options This method is in most cases call...
add_object_linked($origin=null, $origin_id=null, $f_user=null, $notrigger=0)
Add an object link into llx_element_element.
defineBuyPrice($unitPrice=0.0, $discountPercent=0.0, $fk_product=0)
Get buy price to use for margin calculation.
commonGenerateDocument($modelspath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams=null)
Common function for all objects extending CommonObject for generating documents.
fetch_thirdparty($force_thirdparty_id=0)
Load the third party of object, from id $this->socid or $this->fk_soc, into this->thirdparty.
getIdContact($source, $code, $status=0)
Return id of contacts for a source and a contact code.
deleteObjectLinked($sourceid=null, $sourcetype='', $targetid=null, $targettype='', $rowid=0, $f_user=null, $notrigger=0)
Delete all links between an object $this.
setErrorsFromObject($object)
setErrorsFromObject
fetch_project()
Load the project with id $this->fk_project into this->project.
deleteExtraFields()
Delete all extra fields values for the current object.
static commonReplaceThirdparty(DoliDB $dbs, $origin_id, $dest_id, array $tables, $ignoreerrors=0)
Function used to replace a thirdparty id with another one.
setSignedStatusCommon($user, $status, $notrigger=0, $triggercode='')
Set to a signed status.
static commonReplaceProduct(DoliDB $dbs, $origin_id, $dest_id, array $tables, $ignoreerrors=0)
Function used to replace a product id with another one.
insertExtraFields($trigger='', $userused=null)
Add/Update all extra fields values for the current object.
delete_linked_contact($source='', $code='')
Delete all links between an object $this and all its contacts in llx_element_contact.
call_trigger($triggerName, $user)
Call trigger based on this instance.
add_contact($fk_socpeople, $type_contact, $source='external', $notrigger=0)
Add a link between element $this->element and a contact.
Parent class for class inheritance lines of business objects This class is useless for the moment so ...
Class to manage contracts.
static contractCmpDate($a, $b)
Used to sort lines by date.
createFromClone(User $user, $socid=0, $notrigger=0)
Load an object from its id and create a new one in database.
fetch($id, $ref='', $ref_customer='', $ref_supplier='', $noextrafields=0, $nolines=0)
Load a contract from database.
loadStateBoard()
Load the indicators this->nb for state board.
update_statut($user)
Update statut of contract according to services.
updateline($rowid, $desc, $pu, $qty, $remise_percent, $date_start, $date_end, $tvatx, $localtax1tx=0.0, $localtax2tx=0.0, $date_start_real='', $date_end_real='', $price_base_type='HT', $info_bits=0, $fk_fournprice=null, $pa_ht=0, $array_options=array(), $fk_unit=null, $rang=0)
Mets a jour une ligne de contrat.
getTicketsArray()
Create an array of associated tickets.
setSignedStatus(User $user, int $status=0, int $notrigger=0, $triggercode='')
Set signed status.
generateDocument($modele, $outputlangs, $hidedetails=0, $hidedesc=0, $hideref=0, $moreparams=null)
Create a document onto disk according to template module.
active_line($user, $line_id, $date_start, $date_end='', $comment='')
Activate a contract line.
getTooltipContentArray($params)
getTooltipContentArray
getLinesArray()
Create an array of order lines.
validate(User $user, $force_number='', $notrigger=0)
Validate a contract.
getIdBillingContact()
Return id des contacts clients de facturation.
initAsSpecimen()
Initialise an instance with random values.
create($user)
Create a contract into database.
close_line($user, $line_id, $date_end, $comment='')
Close a contract line.
reopen($user, $notrigger=0)
Unvalidate a contract.
getKanbanView($option='', $arraydata=null)
Return clicable link of object (with eventually picto)
deleteLine($idline, User $user)
Delete a contract line.
array_detail($status=-1)
Return list of line rowid.
addline($desc, $pu_ht, $qty, $txtva, $txlocaltax1, $txlocaltax2, $fk_product, $remise_percent, $date_start, $date_end, $price_base_type='HT', $pu_ttc=0.0, $info_bits=0, $fk_fournprice=null, $pa_ht=0, $array_options=array(), $fk_unit=null, $rang=0)
Ajoute une ligne de contrat en base.
update($user, $notrigger=0)
Update object into database.
closeAll(User $user, $notrigger=0, $comment='')
Close all lines of a contract.
static replaceThirdparty(DoliDB $dbs, $origin_id, $dest_id)
Function used to replace a thirdparty id with another one.
getListOfContracts($option='all', $status=[], $product_categories=[], $line_status=[])
Return list of other contracts for the same company than current contract.
load_board($user, $mode)
Load indicators for dashboard (this->nbtodo and this->nbtodolate)
LibStatut($status, $mode)
Return the label of a given contrat status.
activateAll($user, $date_start='', $notrigger=0, $comment='', $date_end='')
Open all lines of a contract.
__construct($db)
Constructor.
doAutoRenewContracts($thirdparty_id=0, $delayindaysshort=0)
Action executed by scheduler CAN BE A CRON TASK Loop on each contract lines and update the end of dat...
getNomUrl($withpicto=0, $maxlength=0, $notooltip=0, $save_lastsearch_value=-1)
Return clicable name (with picto eventually)
info($id)
Charge les information d'ordre info dans l'objet contrat.
getLibStatut($mode)
Return label of a contract status.
static replaceProduct(DoliDB $db, $origin_id, $dest_id)
Function used to replace a product id with another one.
fetch_lines($only_services=0, $loadalsotranslation=0, $noextrafields=0)
Load lines array into this->lines.
getIdServiceContact()
Return id des contacts clients de prestation.
getNextNumRef($soc)
Return next contract ref.
Class to manage lines of contracts.
active_line($user, $date, $date_end='', $comment='')
Activate a contract line.
getLibStatut($mode)
Return label of this contract line status.
insert($notrigger=0)
Inserts a contrat line into database.
fetch($id, $ref='')
Load object in memory from database.
close_line($user, $date_end_real, $comment='', $notrigger=0)
Close a contract line.
static LibStatut($status, $mode, $expired=-1, $moreatt='', $morelabel='')
Return label of a contract line status.
update($user, $notrigger=0)
Update database for contract line.
update_total()
Update in database the fields total_xxx of lines Used by migration process.
__construct($db)
Constructor.
getTooltipContentArray($params)
getTooltipContentArray
getNomUrl($withpicto=0, $maxlength=0)
Return clicable name (with picto eventually) for ContratLigne.
Class to manage Dolibarr database access.
Class to manage shipments.
const STATUS_DRAFT
Draft status.
Class to manage products or services.
Class to manage projects.
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage Dolibarr users.
dol_time_plus_duree($time, $duration_value, $duration_unit, $ruleforendofmonth=0)
Add a delay to a date.
Definition date.lib.php:124
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.
dol_delete_dir_recursive($dir, $count=0, $nophperrors=0, $onlysub=0, &$countdeleted=0, $indexdatabase=1, $nolog=0)
Remove a directory $dir and its subdirectories (or only files and subdirectories)
dol_dir_list($utf8_path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0, $nbsecondsold=0)
Scan a directory and return a list of files/directories.
Definition files.lib.php:63
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
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.
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
getLocalTaxesFromRate($vatrate, $local, $buyer, $seller, $firstparamisid=0)
Get type and rate of localtaxes for a particular vat rate/country of a thirdparty.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
if(!function_exists( 'dol_getprefix')) dol_include_once($relpath, $classname='')
Make an include_once using default root and alternate root if it fails.
dol_clone($object, $native=0)
Create a clone of instance of object (new instance with same value for each properties) With native =...
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
getMarginInfos($pv_ht, $remise_percent, $tva_tx, $localtax1_tx, $localtax2_tx, $fk_pa, $pa_ht)
Return an array with margins information of a line.
Class to generate the form for creating a new ticket.
calcul_price_total($qty, $pu, $remise_percent_ligne, $txtva, $uselocaltax1_rate, $uselocaltax2_rate, $remise_percent_global, $price_base_type, $info_bits, $type, $seller='', $localtaxes_array=[], $progress=100, $multicurrency_tx=1, $pu_devise=0, $multicurrency_code='')
Calculate totals (net, vat, ...) of a line.
Definition price.lib.php:88
if(preg_match('/crypted:/i', $dolibarr_main_db_pass)||!empty($dolibarr_main_db_encrypted_pass)) $conf db type
Definition repair.php:139
publicphonebutton2 phonegreen basiclayout basiclayout TotalHT VATCode TotalVAT TotalLT1 TotalLT2 TotalTTC TotalHT clearboth nowraponall TAKEPOS_SHOW_SUBPRICE right right right takeposterminal SELECT e e e e e statut
Definition invoice.php:1991