dolibarr 21.0.0-beta
project.class.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2002-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2005-2020 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2005-2010 Regis Houssin <regis.houssin@inodbox.com>
5 * Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
6 * Copyright (C) 2014-2017 Marcos García <marcosgdf@gmail.com>
7 * Copyright (C) 2017 Ferran Marcet <fmarcet@2byte.es>
8 * Copyright (C) 2019 Juanjo Menent <jmenent@2byte.es>
9 * Copyright (C) 2022 Charlene Benke <charlene@patas-monkey.com>
10 * Copyright (C) 2023 Gauthier VERDOL <gauthier.verdol@atm-consulting.fr>
11 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
12 * Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
13 * Copyright (C) 2024 William Mead <william.mead@manchenumerique.fr>
14 *
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 3 of the License, or
18 * (at your option) any later version.
19 *
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
24 *
25 * You should have received a copy of the GNU General Public License
26 * along with this program. If not, see <https://www.gnu.org/licenses/>.
27 */
28
34require_once DOL_DOCUMENT_ROOT.'/core/class/commonobject.class.php';
35
39class Project extends CommonObject
40{
44 public $element = 'project';
45
49 public $table_element = 'projet';
50
54 public $table_element_line = 'projet_task';
55
59 public $table_element_date;
60
64 public $fk_element = 'fk_projet';
65
69 public $picto = 'project';
70
74 protected $table_ref_field = 'ref';
75
79 public $fk_project;
80
84 public $description;
85
89 public $title;
90
95 public $dateo;
96
100 public $date_start;
101
106 public $datee;
107
111 public $date_end;
112
116 public $date_start_event;
117
121 public $date_end_event;
122
126 public $location;
127
131 public $date_close;
132
136 public $socid; // To store id of thirdparty
137
141 public $thirdparty_name; // To store name of thirdparty (defined only in some cases)
142
146 public $user_author_id;
147
151 public $fk_user_close;
152
156 public $public;
157
161 public $budget_amount;
162
166 public $usage_opportunity;
167
171 public $usage_task;
172
176 public $usage_bill_time; // Is the time spent on project must be invoiced or not
177
181 public $usage_organize_event;
182
186 public $accept_conference_suggestions;
187
191 public $accept_booth_suggestions;
192
196 public $price_registration;
197
201 public $price_booth;
202
206 public $max_attendees;
207
212 public $statut; // 0=draft, 1=opened, 2=closed
213
217 public $opp_status; // opportunity status, into table llx_c_lead_status
218
222 public $opp_status_code;
223
227 public $fk_opp_status; // opportunity status, into table llx_c_lead_status
228
232 public $opp_amount; // opportunity amount
233
237 public $opp_percent; // opportunity probability
238
242 public $opp_weighted_amount; // opportunity weighted amount
243
247 public $email_msgid;
248
252 public $weekWorkLoad;
256 public $weekWorkLoadPerTask; // Used to store workload details of tasks of a projet
257
261 public $monthWorkLoad;
262
266 public $monthWorkLoadPerTask;
267
272 public $datec;
273
277 public $date_c;
278
283 public $datem;
284
288 public $date_m;
289
293 public $ip;
294
298 public $lines;
299
340 // BEGIN MODULEBUILDER PROPERTIES
344 public $fields = array(
345 'rowid' => array('type' => 'integer', 'label' => 'ID', 'enabled' => 1, 'visible' => -1, 'notnull' => 1, 'position' => 10),
346 'fk_project' => array('type' => 'integer', 'label' => 'Parent', 'enabled' => 1, 'visible' => 1, 'notnull' => 0, 'position' => 12),
347 'ref' => array('type' => 'varchar(50)', 'label' => 'Ref', 'enabled' => 1, 'visible' => 1, 'showoncombobox' => 1, 'position' => 15, 'searchall' => 1),
348 'title' => array('type' => 'varchar(255)', 'label' => 'ProjectLabel', 'enabled' => 1, 'visible' => 1, 'notnull' => 1, 'position' => 17, 'showoncombobox' => 2, 'searchall' => 1),
349 'entity' => array('type' => 'integer', 'label' => 'Entity', 'default' => '1', 'enabled' => 1, 'visible' => 3, 'notnull' => 1, 'position' => 19),
350 'fk_soc' => array('type' => 'integer', 'label' => 'Thirdparty', 'enabled' => 1, 'visible' => 0, 'position' => 20),
351 'dateo' => array('type' => 'date', 'label' => 'DateStart', 'enabled' => 1, 'visible' => -1, 'position' => 30),
352 'datee' => array('type' => 'date', 'label' => 'DateEnd', 'enabled' => 1, 'visible' => 1, 'position' => 35),
353 'description' => array('type' => 'text', 'label' => 'Description', 'enabled' => 1, 'visible' => 3, 'position' => 55, 'searchall' => 1),
354 'public' => array('type' => 'integer', 'label' => 'Visibility', 'enabled' => 1, 'visible' => -1, 'position' => 65),
355 'fk_opp_status' => array('type' => 'integer:CLeadStatus:core/class/cleadstatus.class.php', 'label' => 'OpportunityStatusShort', 'enabled' => 'getDolGlobalString("PROJECT_USE_OPPORTUNITIES")', 'visible' => 1, 'position' => 75),
356 'opp_percent' => array('type' => 'double(5,2)', 'label' => 'OpportunityProbabilityShort', 'enabled' => 'getDolGlobalString("PROJECT_USE_OPPORTUNITIES")', 'visible' => 1, 'position' => 80),
357 'note_private' => array('type' => 'html', 'label' => 'NotePrivate', 'enabled' => 1, 'visible' => 0, 'position' => 85, 'searchall' => 1),
358 'note_public' => array('type' => 'html', 'label' => 'NotePublic', 'enabled' => 1, 'visible' => 0, 'position' => 90, 'searchall' => 1),
359 'model_pdf' => array('type' => 'varchar(255)', 'label' => 'ModelPdf', 'enabled' => 1, 'visible' => 0, 'position' => 95),
360 'date_close' => array('type' => 'datetime', 'label' => 'DateClosing', 'enabled' => 1, 'visible' => 0, 'position' => 105),
361 'fk_user_close' => array('type' => 'integer', 'label' => 'UserClosing', 'enabled' => 1, 'visible' => 0, 'position' => 110),
362 'opp_amount' => array('type' => 'double(24,8)', 'label' => 'OpportunityAmountShort', 'enabled' => 1, 'visible' => 'getDolGlobalString("PROJECT_USE_OPPORTUNITIES")', 'position' => 115),
363 'budget_amount' => array('type' => 'double(24,8)', 'label' => 'Budget', 'enabled' => 1, 'visible' => -1, 'position' => 119),
364 'usage_opportunity' => array('type' => 'integer', 'label' => 'UsageOpportunity', 'enabled' => 1, 'visible' => -1, 'position' => 130),
365 'usage_task' => array('type' => 'integer', 'label' => 'UsageTasks', 'enabled' => 1, 'visible' => -1, 'position' => 135),
366 'usage_bill_time' => array('type' => 'integer', 'label' => 'UsageBillTimeShort', 'enabled' => 1, 'visible' => -1, 'position' => 140),
367 'usage_organize_event' => array('type' => 'integer', 'label' => 'UsageOrganizeEvent', 'enabled' => 1, 'visible' => -1, 'position' => 145),
368 // Properties for event organization
369 'date_start_event' => array('type' => 'date', 'label' => 'DateStartEvent', 'enabled' => "isModEnabled('eventorganization')", 'visible' => 1, 'position' => 200),
370 'date_end_event' => array('type' => 'date', 'label' => 'DateEndEvent', 'enabled' => "isModEnabled('eventorganization')", 'visible' => 1, 'position' => 201),
371 'location' => array('type' => 'text', 'label' => 'Location', 'enabled' => 1, 'visible' => 3, 'position' => 55, 'searchall' => 202),
372 'accept_conference_suggestions' => array('type' => 'integer', 'label' => 'AllowUnknownPeopleSuggestConf', 'enabled' => 1, 'visible' => -1, 'position' => 210),
373 'accept_booth_suggestions' => array('type' => 'integer', 'label' => 'AllowUnknownPeopleSuggestBooth', 'enabled' => 1, 'visible' => -1, 'position' => 211),
374 'price_registration' => array('type' => 'double(24,8)', 'label' => 'PriceOfRegistration', 'enabled' => 1, 'visible' => -1, 'position' => 212),
375 'price_booth' => array('type' => 'double(24,8)', 'label' => 'PriceOfBooth', 'enabled' => 1, 'visible' => -1, 'position' => 215),
376 'max_attendees' => array('type' => 'integer', 'label' => 'MaxNbOfAttendees', 'enabled' => 1, 'visible' => -1, 'position' => 215),
377 // Generic
378 'datec' => array('type' => 'datetime', 'label' => 'DateCreationShort', 'enabled' => 1, 'visible' => -2, 'position' => 400),
379 'tms' => array('type' => 'timestamp', 'label' => 'DateModificationShort', 'enabled' => 1, 'visible' => -2, 'notnull' => 1, 'position' => 405),
380 'fk_user_creat' => array('type' => 'integer', 'label' => 'UserCreation', 'enabled' => 1, 'visible' => 0, 'notnull' => 1, 'position' => 410),
381 'fk_user_modif' => array('type' => 'integer', 'label' => 'UserModification', 'enabled' => 1, 'visible' => 0, 'position' => 415),
382 'import_key' => array('type' => 'varchar(14)', 'label' => 'ImportId', 'enabled' => 1, 'visible' => -1, 'position' => 420),
383 'email_msgid' => array('type' => 'varchar(255)', 'label' => 'EmailMsgID', 'enabled' => 1, 'visible' => -1, 'position' => 450, 'help' => 'EmailMsgIDWhenSourceisEmail', 'csslist' => 'tdoverflowmax125'),
384 'fk_statut' => array('type' => 'smallint(6)', 'label' => 'Status', 'alias' => 'status', 'enabled' => 1, 'visible' => 1, 'notnull' => 1, 'position' => 500, 'arrayofkeyval' => array(0 => 'Draft', 1 => 'Validated', 2 => 'Closed')),
385 );
386 // END MODULEBUILDER PROPERTIES
387
391 const STATUS_DRAFT = 0;
392
397
401 const STATUS_CLOSED = 2;
402
403
409 public function __construct($db)
410 {
411 global $conf;
412
413 $this->db = $db;
414
415 $this->ismultientitymanaged = 1;
416 $this->isextrafieldmanaged = 1;
417
418 $this->labelStatusShort = array(0 => 'Draft', 1 => 'Opened', 2 => 'Closed');
419 $this->labelStatus = array(0 => 'Draft', 1 => 'Opened', 2 => 'Closed');
420
421 global $conf;
422
423 if (!getDolGlobalString('MAIN_SHOW_TECHNICAL_ID')) {
424 $this->fields['rowid']['visible'] = 0;
425 }
426
427 if (!getDolGlobalString('PROJECT_USE_OPPORTUNITIES')) {
428 $this->fields['fk_opp_status']['enabled'] = 0;
429 $this->fields['opp_percent']['enabled'] = 0;
430 $this->fields['opp_amount']['enabled'] = 0;
431 $this->fields['usage_opportunity']['enabled'] = 0;
432 }
433
434 if (getDolGlobalString('PROJECT_HIDE_TASKS')) {
435 $this->fields['usage_bill_time']['visible'] = 0;
436 $this->fields['usage_task']['visible'] = 0;
437 }
438
439 if (empty($conf->eventorganization->enabled)) {
440 $this->fields['usage_organize_event']['visible'] = 0;
441 $this->fields['accept_conference_suggestions']['enabled'] = 0;
442 $this->fields['accept_booth_suggestions']['enabled'] = 0;
443 $this->fields['price_registration']['enabled'] = 0;
444 $this->fields['price_booth']['enabled'] = 0;
445 $this->fields['max_attendees']['enabled'] = 0;
446 }
447 }
448
456 public function create($user, $notrigger = 0)
457 {
458 $error = 0;
459 $ret = 0;
460
461 $now = dol_now();
462
463 // Clean parameters
464 $this->note_private = dol_substr($this->note_private, 0, 65535);
465 $this->note_public = dol_substr($this->note_public, 0, 65535);
466
467 // Check parameters
468 if (!trim($this->ref)) {
469 $this->error = 'ErrorFieldsRequired';
470 dol_syslog(get_class($this)."::create error -1 ref null", LOG_ERR);
471 return -1;
472 }
473 if (getDolGlobalString('PROJECT_THIRDPARTY_REQUIRED') && !($this->socid > 0)) {
474 $this->error = 'ErrorFieldsRequired';
475 dol_syslog(get_class($this)."::create error -1 thirdparty not defined and option PROJECT_THIRDPARTY_REQUIRED is set", LOG_ERR);
476 return -1;
477 }
478
479 // Create project
480 $this->db->begin();
481
482 $sql = "INSERT INTO ".MAIN_DB_PREFIX."projet (";
483 $sql .= "ref";
484 $sql .= ", fk_project";
485 $sql .= ", title";
486 $sql .= ", description";
487 $sql .= ", fk_soc";
488 $sql .= ", fk_user_creat";
489 $sql .= ", fk_statut";
490 $sql .= ", fk_opp_status";
491 $sql .= ", opp_percent";
492 $sql .= ", public";
493 $sql .= ", datec";
494 $sql .= ", dateo";
495 $sql .= ", datee";
496 $sql .= ", opp_amount";
497 $sql .= ", budget_amount";
498 $sql .= ", usage_opportunity";
499 $sql .= ", usage_task";
500 $sql .= ", usage_bill_time";
501 $sql .= ", usage_organize_event";
502 $sql .= ", accept_conference_suggestions";
503 $sql .= ", accept_booth_suggestions";
504 $sql .= ", price_registration";
505 $sql .= ", price_booth";
506 $sql .= ", max_attendees";
507 $sql .= ", date_start_event";
508 $sql .= ", date_end_event";
509 $sql .= ", location";
510 $sql .= ", email_msgid";
511 $sql .= ", note_private";
512 $sql .= ", note_public";
513 $sql .= ", entity";
514 $sql .= ", ip";
515 $sql .= ") VALUES (";
516 $sql .= "'".$this->db->escape($this->ref)."'";
517 $sql .= ", ".($this->fk_project ? ((int) $this->fk_project) : "null");
518 $sql .= ", '".$this->db->escape($this->title)."'";
519 $sql .= ", '".$this->db->escape($this->description)."'";
520 $sql .= ", ".($this->socid > 0 ? $this->socid : "null");
521 $sql .= ", ".((int) $user->id);
522 $sql .= ", ".(is_numeric($this->status) ? ((int) $this->status) : '0');
523 $sql .= ", ".((is_numeric($this->opp_status) && $this->opp_status > 0) ? ((int) $this->opp_status) : 'NULL');
524 $sql .= ", ".(is_numeric($this->opp_percent) ? ((int) $this->opp_percent) : 'NULL');
525 $sql .= ", ".($this->public ? 1 : 0);
526 $sql .= ", '".$this->db->idate($now)."'";
527 $sql .= ", ".($this->date_start != '' ? "'".$this->db->idate($this->date_start)."'" : 'null');
528 $sql .= ", ".($this->date_end != '' ? "'".$this->db->idate($this->date_end)."'" : 'null');
529 $sql .= ", ".(strcmp($this->opp_amount, '') ? price2num($this->opp_amount) : 'null');
530 $sql .= ", ".(strcmp((string) $this->budget_amount, '') ? price2num($this->budget_amount) : 'null');
531 $sql .= ", ".($this->usage_opportunity ? 1 : 0);
532 $sql .= ", ".($this->usage_task ? 1 : 0);
533 $sql .= ", ".($this->usage_bill_time ? 1 : 0);
534 $sql .= ", ".($this->usage_organize_event ? 1 : 0);
535 $sql .= ", ".($this->accept_conference_suggestions ? 1 : 0);
536 $sql .= ", ".($this->accept_booth_suggestions ? 1 : 0);
537 $sql .= ", ".(strcmp((string) $this->price_registration, '') ? price2num($this->price_registration) : 'null');
538 $sql .= ", ".(strcmp((string) $this->price_booth, '') ? price2num($this->price_booth) : 'null');
539 $sql .= ", ".(strcmp((string) $this->max_attendees, '') ? ((int) $this->max_attendees) : 'null');
540 $sql .= ", ".($this->date_start_event != '' ? "'".$this->db->idate($this->date_start_event)."'" : 'null');
541 $sql .= ", ".($this->date_end_event != '' ? "'".$this->db->idate($this->date_end_event)."'" : 'null');
542 $sql .= ", ".($this->location ? "'".$this->db->escape($this->location)."'" : 'null');
543 $sql .= ", ".($this->email_msgid ? "'".$this->db->escape($this->email_msgid)."'" : 'null');
544 $sql .= ", ".($this->note_private ? "'".$this->db->escape($this->note_private)."'" : 'null');
545 $sql .= ", ".($this->note_public ? "'".$this->db->escape($this->note_public)."'" : 'null');
546 $sql .= ", ".setEntity($this);
547 $sql .= ", ".(!isset($this->ip) ? 'NULL' : "'".$this->db->escape($this->ip)."'");
548 $sql .= ")";
549
550 dol_syslog(get_class($this)."::create", LOG_DEBUG);
551 $resql = $this->db->query($sql);
552 if ($resql) {
553 $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX."projet");
554 $ret = $this->id;
555
556 if (!$notrigger) {
557 // Call trigger
558 $result = $this->call_trigger('PROJECT_CREATE', $user);
559 if ($result < 0) {
560 $error++;
561 }
562 // End call triggers
563 }
564 } else {
565 $this->error = $this->db->lasterror();
566 $error++;
567 }
568
569 // Update extrafield
570 if (!$error) {
571 $result = $this->insertExtraFields();
572 if ($result < 0) {
573 $error++;
574 }
575 }
576
577 if (!$error && (getDolGlobalString('MAIN_DISABLEDRAFTSTATUS') || getDolGlobalString('MAIN_DISABLEDRAFTSTATUS_PROJECT'))) {
578 $res = $this->setValid($user);
579 if ($res < 0) {
580 $error++;
581 }
582 }
583
584 if (!$error) {
585 $this->db->commit();
586 return $ret;
587 } else {
588 $this->db->rollback();
589 return -1;
590 }
591 }
592
600 public function update($user, $notrigger = 0)
601 {
602 global $langs, $conf;
603
604 $error = 0;
605
606 // Clean parameters
607 $this->title = trim($this->title);
608 $this->description = trim($this->description);
609 if ($this->opp_amount < 0) {
610 $this->opp_amount = '';
611 }
612 if ($this->opp_percent < 0) {
613 $this->opp_percent = '';
614 }
615 if ($this->date_end && $this->date_end < $this->date_start) {
616 $this->error = $langs->trans("ErrorDateEndLowerThanDateStart");
617 $this->errors[] = $this->error;
618 $this->db->rollback();
619 dol_syslog(get_class($this)."::update error -3 ".$this->error, LOG_ERR);
620 return -3;
621 }
622
623 $this->entity = ((isset($this->entity) && is_numeric($this->entity)) ? $this->entity : $conf->entity);
624
625 if (dol_strlen(trim($this->ref)) > 0) {
626 $this->db->begin();
627
628 $sql = "UPDATE ".MAIN_DB_PREFIX."projet SET";
629 $sql .= " ref='".$this->db->escape($this->ref)."'";
630 $sql .= ", fk_project=".($this->fk_project ? ((int) $this->fk_project) : "null");
631 $sql .= ", title = '".$this->db->escape($this->title)."'";
632 $sql .= ", description = '".$this->db->escape($this->description)."'";
633 $sql .= ", fk_soc = ".($this->socid > 0 ? $this->socid : "null");
634 $sql .= ", fk_statut = ".((int) $this->status);
635 $sql .= ", fk_opp_status = ".((is_numeric($this->opp_status) && $this->opp_status > 0) ? $this->opp_status : 'null');
636 $sql .= ", opp_percent = ".((is_numeric($this->opp_percent) && $this->opp_percent != '') ? $this->opp_percent : 'null');
637 $sql .= ", public = ".($this->public ? 1 : 0);
638 $sql .= ", datec = ".($this->date_c != '' ? "'".$this->db->idate($this->date_c)."'" : 'null');
639 $sql .= ", dateo = ".($this->date_start != '' ? "'".$this->db->idate($this->date_start)."'" : 'null');
640 $sql .= ", datee = ".($this->date_end != '' ? "'".$this->db->idate($this->date_end)."'" : 'null');
641 $sql .= ", date_close = ".($this->date_close != '' ? "'".$this->db->idate($this->date_close)."'" : 'null');
642 $sql .= ", note_public = ".($this->note_public ? "'".$this->db->escape($this->note_public)."'" : "null");
643 $sql .= ", note_private = ".($this->note_private ? "'".$this->db->escape($this->note_private)."'" : "null");
644 $sql .= ", fk_user_close = ".($this->fk_user_close > 0 ? $this->fk_user_close : "null");
645 $sql .= ", opp_amount = ".(strcmp($this->opp_amount, '') ? price2num($this->opp_amount) : "null");
646 $sql .= ", budget_amount = ".(strcmp($this->budget_amount, '') ? price2num($this->budget_amount) : "null");
647 $sql .= ", fk_user_modif = ".((int) $user->id);
648 $sql .= ", usage_opportunity = ".($this->usage_opportunity ? 1 : 0);
649 $sql .= ", usage_task = ".($this->usage_task ? 1 : 0);
650 $sql .= ", usage_bill_time = ".($this->usage_bill_time ? 1 : 0);
651 $sql .= ", usage_organize_event = ".($this->usage_organize_event ? 1 : 0);
652 $sql .= ", accept_conference_suggestions = ".($this->accept_conference_suggestions ? 1 : 0);
653 $sql .= ", accept_booth_suggestions = ".($this->accept_booth_suggestions ? 1 : 0);
654 $sql .= ", price_registration = ".(isset($this->price_registration) && strcmp($this->price_registration, '') ? price2num($this->price_registration) : "null");
655 $sql .= ", price_booth = ".(isset($this->price_booth) && strcmp((string) $this->price_booth, '') ? price2num($this->price_booth) : "null");
656 $sql .= ", max_attendees = ".(strcmp((string) $this->max_attendees, '') ? (int) $this->max_attendees : "null");
657 $sql .= ", date_start_event = ".($this->date_start_event != '' ? "'".$this->db->idate($this->date_start_event)."'" : 'null');
658 $sql .= ", date_end_event = ".($this->date_end_event != '' ? "'".$this->db->idate($this->date_end_event)."'" : 'null');
659 $sql .= ", location = '".$this->db->escape($this->location)."'";
660 $sql .= ", entity = ".((int) $this->entity);
661 $sql .= " WHERE rowid = ".((int) $this->id);
662
663 dol_syslog(get_class($this)."::update", LOG_DEBUG);
664 $resql = $this->db->query($sql);
665 if ($resql) {
666 // Update extrafield
667 if (!$error) {
668 $result = $this->insertExtraFields();
669 if ($result < 0) {
670 $error++;
671 }
672 }
673
674 if (!$error && !$notrigger) {
675 // Call trigger
676 $result = $this->call_trigger('PROJECT_MODIFY', $user);
677 if ($result < 0) {
678 $error++;
679 }
680 // End call triggers
681 }
682
683 if (!$error && (is_object($this->oldcopy) && $this->oldcopy->ref !== $this->ref)) {
684 // We remove directory
685 if ($conf->project->dir_output) {
686 $olddir = $conf->project->dir_output."/".dol_sanitizeFileName($this->oldcopy->ref);
687 $newdir = $conf->project->dir_output."/".dol_sanitizeFileName($this->ref);
688 if (file_exists($olddir)) {
689 include_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
690 $res = @rename($olddir, $newdir);
691 if (!$res) {
692 $langs->load("errors");
693 $this->error = $langs->trans('ErrorFailToRenameDir', $olddir, $newdir);
694 $error++;
695 }
696 }
697 }
698 }
699 if (!$error) {
700 $this->db->commit();
701 $result = 1;
702 } else {
703 $this->db->rollback();
704 $result = -1;
705 }
706 } else {
707 $this->error = $this->db->lasterror();
708 $this->errors[] = $this->error;
709 $this->db->rollback();
710 if ($this->db->lasterrno() == 'DB_ERROR_RECORD_ALREADY_EXISTS') {
711 $result = -4;
712 } else {
713 $result = -2;
714 }
715 dol_syslog(get_class($this)."::update error ".$result." ".$this->error, LOG_ERR);
716 }
717 } else {
718 dol_syslog(get_class($this)."::update ref null");
719 $result = -1;
720 }
721
722 return $result;
723 }
724
734 public function fetch($id, $ref = '', $ref_ext = '', $email_msgid = '')
735 {
736 if (empty($id) && empty($ref) && empty($ref_ext) && empty($email_msgid)) {
737 dol_syslog(get_class($this)."::fetch Bad parameters", LOG_WARNING);
738 return -1;
739 }
740
741 $sql = "SELECT rowid, entity, fk_project, ref, title, description, public, datec, opp_amount, budget_amount,";
742 $sql .= " tms, dateo as date_start, datee as date_end, date_close, fk_soc, fk_user_creat, fk_user_modif, fk_user_close, fk_statut as status, fk_opp_status, opp_percent,";
743 $sql .= " note_private, note_public, model_pdf, usage_opportunity, usage_task, usage_bill_time, usage_organize_event, email_msgid,";
744 $sql .= " accept_conference_suggestions, accept_booth_suggestions, price_registration, price_booth, max_attendees, date_start_event, date_end_event, location, extraparams";
745 $sql .= " FROM ".MAIN_DB_PREFIX."projet";
746 if (!empty($id)) {
747 $sql .= " WHERE rowid = ".((int) $id);
748 } else {
749 $sql .= " WHERE entity IN (".getEntity('project').")";
750 if (!empty($ref)) {
751 $sql .= " AND ref = '".$this->db->escape($ref)."'";
752 } elseif (!empty($ref_ext)) {
753 $sql .= " AND ref_ext = '".$this->db->escape($ref_ext)."'";
754 } else {
755 $sql .= " AND email_msgid = '".$this->db->escape($email_msgid)."'";
756 }
757 }
758
759 dol_syslog(get_class($this)."::fetch", LOG_DEBUG);
760 $resql = $this->db->query($sql);
761 if ($resql) {
762 $num_rows = $this->db->num_rows($resql);
763
764 if ($num_rows) {
765 $obj = $this->db->fetch_object($resql);
766
767 $this->id = $obj->rowid;
768 $this->entity = $obj->entity;
769 $this->ref = $obj->ref;
770 $this->fk_project = $obj->fk_project;
771 $this->title = $obj->title;
772 $this->description = $obj->description;
773 $this->date_c = $this->db->jdate($obj->datec);
774 $this->datec = $this->db->jdate($obj->datec); // TODO deprecated
775 $this->date_m = $this->db->jdate($obj->tms);
776 $this->datem = $this->db->jdate($obj->tms); // TODO deprecated
777 $this->date_start = $this->db->jdate($obj->date_start);
778 $this->date_end = $this->db->jdate($obj->date_end);
779 $this->date_close = $this->db->jdate($obj->date_close);
780 $this->note_private = $obj->note_private;
781 $this->note_public = $obj->note_public;
782 $this->socid = $obj->fk_soc;
783 $this->user_author_id = $obj->fk_user_creat;
784 $this->user_modification_id = $obj->fk_user_modif;
785 $this->user_closing_id = $obj->fk_user_close;
786 $this->public = $obj->public;
787 $this->statut = $obj->status; // deprecated
788 $this->status = $obj->status;
789 $this->opp_status = $obj->fk_opp_status;
790 $this->opp_amount = $obj->opp_amount;
791 $this->opp_percent = $obj->opp_percent;
792 $this->budget_amount = $obj->budget_amount;
793 $this->model_pdf = $obj->model_pdf;
794 $this->usage_opportunity = (int) $obj->usage_opportunity;
795 $this->usage_task = (int) $obj->usage_task;
796 $this->usage_bill_time = (int) $obj->usage_bill_time;
797 $this->usage_organize_event = (int) $obj->usage_organize_event;
798 $this->accept_conference_suggestions = (int) $obj->accept_conference_suggestions;
799 $this->accept_booth_suggestions = (int) $obj->accept_booth_suggestions;
800 $this->price_registration = $obj->price_registration;
801 $this->price_booth = $obj->price_booth;
802 $this->max_attendees = $obj->max_attendees;
803 $this->date_start_event = $this->db->jdate($obj->date_start_event);
804 $this->date_end_event = $this->db->jdate($obj->date_end_event);
805 $this->location = $obj->location;
806 $this->email_msgid = $obj->email_msgid;
807 $this->extraparams = !empty($obj->extraparams) ? (array) json_decode($obj->extraparams, true) : array();
808
809 $this->db->free($resql);
810
811 // Retrieve all extrafield
812 // fetch optionals attributes and labels
813 $this->fetch_optionals();
814
815 return 1;
816 }
817
818 $this->db->free($resql);
819
820 return 0;
821 } else {
822 $this->error = $this->db->lasterror();
823 $this->errors[] = $this->db->lasterror();
824 return -1;
825 }
826 }
827
836 public function fetchAndSetSubstitution($id, $key, $fetched = false)
837 {
838 $substitution = '';
839
840 if ($fetched === false) {
841 $res = $this->fetch($id);
842 if ($res > 0) {
843 $fetched = true;
844 }
845 }
846
847 if ($fetched === true) {
848 if ($key == '__PROJECT_ID__') {
849 $substitution = ($this->id > 0 ? $this->id : '');
850 } elseif ($key == '__PROJECT_REF__') {
851 $substitution = $this->ref;
852 } elseif ($key == '__PROJECT_NAME__') {
853 $substitution = $this->title;
854 }
855 }
856
857 return $substitution;
858 }
859
860 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
872 public function get_element_list($type, $tablename, $datefieldname = '', $date_start = null, $date_end = null, $projectkey = 'fk_projet')
873 {
874 // phpcs:enable
875
876 global $hookmanager;
877
878 $elements = array();
879
880 if ($this->id <= 0) {
881 return $elements;
882 }
883
884 $ids = $this->id;
885
886 if ($type == 'agenda') {
887 $sql = "SELECT id as rowid FROM ".MAIN_DB_PREFIX."actioncomm WHERE fk_project IN (".$this->db->sanitize($ids).") AND entity IN (".getEntity('agenda').")";
888 } elseif ($type == 'expensereport') {
889 $sql = "SELECT ed.rowid FROM ".MAIN_DB_PREFIX."expensereport as e, ".MAIN_DB_PREFIX."expensereport_det as ed WHERE e.rowid = ed.fk_expensereport AND e.entity IN (".getEntity('expensereport').") AND ed.fk_projet IN (".$this->db->sanitize($ids).")";
890 } elseif ($type == 'project_task') {
891 $sql = "SELECT DISTINCT pt.rowid FROM ".MAIN_DB_PREFIX."projet_task as pt WHERE pt.fk_projet IN (".$this->db->sanitize($ids).")";
892 } elseif ($type == 'element_time') { // Case we want to duplicate line foreach user
893 $sql = "SELECT DISTINCT pt.rowid, ptt.fk_user FROM ".MAIN_DB_PREFIX."projet_task as pt, ".MAIN_DB_PREFIX."element_time as ptt WHERE pt.rowid = ptt.fk_element AND ptt.elementtype = 'task' AND pt.fk_projet IN (".$this->db->sanitize($ids).")";
894 } elseif ($type == 'stocktransfer_stocktransfer') {
895 $sql = "SELECT ms.rowid, ms.fk_user_author as fk_user FROM ".MAIN_DB_PREFIX."stocktransfer_stocktransfer as ms, ".MAIN_DB_PREFIX."entrepot as e WHERE e.rowid = ms.fk_entrepot AND e.entity IN (".getEntity('stock').") AND ms.origintype = 'project' AND ms.fk_origin IN (".$this->db->sanitize($ids).") AND ms.type_mouvement = 1";
896 } elseif ($type == 'loan') {
897 $sql = "SELECT l.rowid, l.fk_user_author as fk_user FROM ".MAIN_DB_PREFIX."loan as l WHERE l.entity IN (".getEntity('loan').") AND l.fk_projet IN (".$this->db->sanitize($ids).")";
898 } else {
899 $sql = "SELECT rowid FROM ".MAIN_DB_PREFIX.$tablename." WHERE ".$projectkey." IN (".$this->db->sanitize($ids).") AND entity IN (".getEntity($type).")";
900 }
901
902 if (isDolTms($date_start) && $type == 'loan') {
903 $sql .= " AND (dateend > '".$this->db->idate($date_start)."' OR dateend IS NULL)";
904 } elseif (isDolTms($date_start) && ($type != 'project_task')) { // For table project_taks, we want the filter on date apply on project_time_spent table
905 if (empty($datefieldname) && !empty($this->table_element_date)) {
906 $datefieldname = $this->table_element_date;
907 }
908 if (empty($datefieldname)) {
909 return 'Error this object has no date field defined';
910 }
911 $sql .= " AND (".$datefieldname." >= '".$this->db->idate($date_start)."' OR ".$datefieldname." IS NULL)";
912 }
913
914 if (isDolTms($date_end) && $type == 'loan') {
915 $sql .= " AND (datestart < '".$this->db->idate($date_end)."' OR datestart IS NULL)";
916 } elseif (isDolTms($date_end) && ($type != 'project_task')) { // For table project_taks, we want the filter on date apply on project_time_spent table
917 if (empty($datefieldname) && !empty($this->table_element_date)) {
918 $datefieldname = $this->table_element_date;
919 }
920 if (empty($datefieldname)) {
921 return 'Error this object has no date field defined';
922 }
923 $sql .= " AND (".$datefieldname." <= '".$this->db->idate($date_end)."' OR ".$datefieldname." IS NULL)";
924 }
925
926 $parameters = array(
927 'sql' => $sql,
928 'type' => $type,
929 'tablename' => $tablename,
930 'datefieldname' => $datefieldname,
931 'dates' => $date_start,
932 'datee' => $date_end,
933 'fk_projet' => $projectkey,
934 'ids' => $ids,
935 );
936 $reshook = $hookmanager->executeHooks('getElementList', $parameters);
937 if ($reshook > 0) {
938 $sql = $hookmanager->resPrint;
939 } else {
940 $sql .= $hookmanager->resPrint;
941 }
942
943 if (!$sql) {
944 return -1;
945 }
946
947 //print $sql;
948 dol_syslog(get_class($this)."::get_element_list", LOG_DEBUG);
949 $result = $this->db->query($sql);
950 if ($result) {
951 $nump = $this->db->num_rows($result);
952 if ($nump) {
953 $i = 0;
954 while ($i < $nump) {
955 $obj = $this->db->fetch_object($result);
956
957 $elements[$i] = $obj->rowid.(empty($obj->fk_user) ? '' : '_'.$obj->fk_user);
958
959 $i++;
960 }
961 $this->db->free($result);
962 }
963
964 /* Return array even if empty*/
965 return $elements;
966 } else {
967 dol_print_error($this->db);
968 }
969 return -1;
970 }
971
979 public function delete($user, $notrigger = 0)
980 {
981 global $langs, $conf;
982 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
983
984 $error = 0;
985
986 $this->db->begin();
987
988 if (!$error) {
989 // Delete linked contacts
990 $res = $this->delete_linked_contact();
991 if ($res < 0) {
992 $this->error = 'ErrorFailToDeleteLinkedContact';
993 //$error++;
994 $this->db->rollback();
995 return 0;
996 }
997 }
998
999 // Set fk_projet into elements to null
1000 $listoftables = array(
1001 'propal' => 'fk_projet',
1002 'commande' => 'fk_projet',
1003 'facture' => 'fk_projet',
1004 'supplier_proposal' => 'fk_projet',
1005 'commande_fournisseur' => 'fk_projet',
1006 'facture_fourn' => 'fk_projet',
1007 'expensereport_det' => 'fk_projet',
1008 'contrat' => 'fk_projet',
1009 'fichinter' => 'fk_projet',
1010 'don' => array('field' => 'fk_projet', 'module' => 'don'),
1011 'actioncomm' => 'fk_project',
1012 'mrp_mo' => array('field' => 'fk_project', 'module' => 'mrp'),
1013 'entrepot' => 'fk_project',
1014 );
1015 foreach ($listoftables as $key => $value) {
1016 if (is_array($value)) {
1017 if (!isModEnabled($value['module'])) {
1018 continue;
1019 }
1020 $fieldname = $value['field'];
1021 } else {
1022 $fieldname = $value;
1023 }
1024 $sql = "UPDATE ".MAIN_DB_PREFIX.$key." SET ".$fieldname." = NULL where ".$fieldname." = ".((int) $this->id);
1025
1026 $resql = $this->db->query($sql);
1027 if (!$resql) {
1028 $this->errors[] = $this->db->lasterror();
1029 $error++;
1030 break;
1031 }
1032 }
1033
1034 // Remove linked categories.
1035 if (!$error) {
1036 $sql = "DELETE FROM ".MAIN_DB_PREFIX."categorie_project";
1037 $sql .= " WHERE fk_project = ".((int) $this->id);
1038
1039 $result = $this->db->query($sql);
1040 if (!$result) {
1041 $error++;
1042 $this->errors[] = $this->db->lasterror();
1043 }
1044 }
1045
1046 // Fetch tasks
1047 $this->getLinesArray($user, 0);
1048
1049 // Delete tasks
1050 $ret = $this->deleteTasks($user);
1051 if ($ret < 0) {
1052 $error++;
1053 }
1054
1055
1056 // Delete all child tables
1057 if (!$error) {
1058 $elements = array('categorie_project'); // elements to delete. TODO Make goodway to delete
1059 foreach ($elements as $table) {
1060 if (!$error) {
1061 $sql = "DELETE FROM ".MAIN_DB_PREFIX.$table;
1062 $sql .= " WHERE fk_project = ".((int) $this->id);
1063
1064 $result = $this->db->query($sql);
1065 if (!$result) {
1066 $error++;
1067 $this->errors[] = $this->db->lasterror();
1068 }
1069 }
1070 }
1071 }
1072
1073 if (!$error) {
1074 $sql = "DELETE FROM ".MAIN_DB_PREFIX."projet_extrafields";
1075 $sql .= " WHERE fk_object = ".((int) $this->id);
1076
1077 $resql = $this->db->query($sql);
1078 if (!$resql) {
1079 $this->errors[] = $this->db->lasterror();
1080 $error++;
1081 }
1082 }
1083
1084 // Delete project
1085 if (!$error) {
1086 $sql = "DELETE FROM ".MAIN_DB_PREFIX."projet";
1087 $sql .= " WHERE rowid=".((int) $this->id);
1088
1089 $resql = $this->db->query($sql);
1090 if (!$resql) {
1091 $this->errors[] = $langs->trans("CantRemoveProject", $langs->transnoentitiesnoconv("ProjectOverview"));
1092 $error++;
1093 }
1094 }
1095
1096
1097
1098 if (empty($error)) {
1099 // We remove directory
1100 $projectref = dol_sanitizeFileName($this->ref);
1101 if ($conf->project->dir_output) {
1102 $dir = $conf->project->dir_output."/".$projectref;
1103 if (file_exists($dir)) {
1104 $res = @dol_delete_dir_recursive($dir);
1105 if (!$res) {
1106 $this->errors[] = 'ErrorFailToDeleteDir';
1107 $error++;
1108 }
1109 }
1110 }
1111
1112 if (!$notrigger) {
1113 // Call trigger
1114 $result = $this->call_trigger('PROJECT_DELETE', $user);
1115
1116 if ($result < 0) {
1117 $error++;
1118 }
1119 // End call triggers
1120 }
1121 }
1122
1123 if (empty($error)) {
1124 $this->db->commit();
1125 return 1;
1126 } else {
1127 foreach ($this->errors as $errmsg) {
1128 dol_syslog(get_class($this)."::delete ".$errmsg, LOG_ERR);
1129 $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
1130 }
1131 dol_syslog(get_class($this)."::delete ".$this->error, LOG_ERR);
1132 $this->db->rollback();
1133 return -1;
1134 }
1135 }
1136
1145 public function getElementCount($type, $tablename, $projectkey = 'fk_projet')
1146 {
1147 if ($this->id <= 0) {
1148 return 0;
1149 }
1150
1151 if ($type == 'agenda') {
1152 $sql = "SELECT COUNT(id) as nb FROM ".MAIN_DB_PREFIX."actioncomm WHERE fk_project = ".((int) $this->id)." AND entity IN (".getEntity('agenda').")";
1153 } elseif ($type == 'expensereport') {
1154 $sql = "SELECT COUNT(ed.rowid) as nb FROM ".MAIN_DB_PREFIX."expensereport as e, ".MAIN_DB_PREFIX."expensereport_det as ed WHERE e.rowid = ed.fk_expensereport AND e.entity IN (".getEntity('expensereport').") AND ed.fk_projet = ".((int) $this->id);
1155 } elseif ($type == 'project_task') {
1156 $sql = "SELECT DISTINCT COUNT(pt.rowid) as nb FROM ".MAIN_DB_PREFIX."projet_task as pt WHERE pt.fk_projet = ".((int) $this->id);
1157 } elseif ($type == 'element_time') { // Case we want to duplicate line foreach user
1158 $sql = "SELECT DISTINCT COUNT(pt.rowid) as nb FROM ".MAIN_DB_PREFIX."projet_task as pt, ".MAIN_DB_PREFIX."element_time as ptt WHERE pt.rowid = ptt.fk_element AND ptt.elementtype = 'task' AND pt.fk_projet = ".((int) $this->id);
1159 } elseif ($type == 'stock_mouvement') {
1160 $sql = "SELECT COUNT(ms.rowid) as nb FROM ".MAIN_DB_PREFIX."stock_mouvement as ms, ".MAIN_DB_PREFIX."entrepot as e WHERE e.rowid = ms.fk_entrepot AND e.entity IN (".getEntity('stock').") AND ms.origintype = 'project' AND ms.fk_origin = ".((int) $this->id)." AND ms.type_mouvement = 1";
1161 } elseif ($type == 'loan') {
1162 $sql = "SELECT COUNT(l.rowid) as nb FROM ".MAIN_DB_PREFIX."loan as l WHERE l.entity IN (".getEntity('loan').") AND l.fk_projet = ".((int) $this->id);
1163 } else {
1164 $sql = "SELECT COUNT(rowid) as nb FROM ".MAIN_DB_PREFIX.$tablename." WHERE ".$projectkey." = ".((int) $this->id)." AND entity IN (".getEntity($type).")";
1165 }
1166
1167 $result = $this->db->query($sql);
1168
1169 if (!$result) {
1170 return 0;
1171 }
1172
1173 $obj = $this->db->fetch_object($result);
1174
1175 $this->db->free($result);
1176
1177 return $obj->nb;
1178 }
1179
1186 public function deleteTasks($user)
1187 {
1188 $countTasks = count($this->lines);
1189 $deleted = false;
1190 if ($countTasks) {
1191 foreach ($this->lines as $task) {
1192 if ($task->hasChildren() <= 0) { // If there is no children (or error to detect them)
1193 $deleted = true;
1194 $ret = $task->delete($user);
1195 if ($ret <= 0) {
1196 $this->errors[] = $this->db->lasterror();
1197 return -1;
1198 }
1199 }
1200 }
1201 }
1202 $this->getLinesArray($user);
1203 if ($deleted && count($this->lines) < $countTasks) {
1204 if (count($this->lines)) {
1205 $this->deleteTasks($user);
1206 }
1207 }
1208
1209 return 1;
1210 }
1211
1219 public function setValid($user, $notrigger = 0)
1220 {
1221 global $langs;
1222
1223 $error = 0;
1224
1225 // Protection
1226 if ($this->status == self::STATUS_VALIDATED) {
1227 dol_syslog(get_class($this)."::validate action abandoned: already validated", LOG_WARNING);
1228 return 0;
1229 }
1230
1231 // Check parameters
1232 if (preg_match('/^'.preg_quote($langs->trans("CopyOf").' ').'/', $this->title)) {
1233 $this->error = $langs->trans("ErrorFieldFormat", $langs->transnoentities("Label")).'. '.$langs->trans('RemoveString', $langs->transnoentitiesnoconv("CopyOf"));
1234 return -1;
1235 }
1236
1237 $this->db->begin();
1238
1239 $sql = "UPDATE ".MAIN_DB_PREFIX."projet";
1240 $sql .= " SET fk_statut = ".self::STATUS_VALIDATED;
1241 $sql .= " WHERE rowid = ".((int) $this->id);
1242 //$sql .= " AND entity = ".((int) $conf->entity); // Disabled, when we use the ID for the where, we must not add any other search condition
1243
1244 dol_syslog(get_class($this)."::setValid", LOG_DEBUG);
1245 $resql = $this->db->query($sql);
1246 if ($resql) {
1247 // Call trigger
1248 if (empty($notrigger)) {
1249 $result = $this->call_trigger('PROJECT_VALIDATE', $user);
1250 if ($result < 0) {
1251 $error++;
1252 }
1253 // End call triggers
1254 }
1255
1256 if (!$error) {
1257 $this->statut = 1;
1258 $this->status = 1;
1259 $this->db->commit();
1260 return 1;
1261 } else {
1262 $this->db->rollback();
1263 $this->error = implode(',', $this->errors);
1264 dol_syslog(get_class($this)."::setValid ".$this->error, LOG_ERR);
1265 return -1;
1266 }
1267 } else {
1268 $this->db->rollback();
1269 $this->error = $this->db->lasterror();
1270 return -1;
1271 }
1272 }
1273
1280 public function setClose($user)
1281 {
1282 $now = dol_now();
1283
1284 $error = 0;
1285
1286 if ($this->status != self::STATUS_CLOSED) {
1287 $this->db->begin();
1288
1289 $sql = "UPDATE ".MAIN_DB_PREFIX."projet";
1290 $sql .= " SET fk_statut = ".self::STATUS_CLOSED.", fk_user_close = ".((int) $user->id).", date_close = '".$this->db->idate($now)."'";
1291 $sql .= " WHERE rowid = ".((int) $this->id);
1292 $sql .= " AND fk_statut = ".self::STATUS_VALIDATED;
1293
1294 if (getDolGlobalString('PROJECT_USE_OPPORTUNITIES')) {
1295 // TODO What to do if fk_opp_status is not code 'WON' or 'LOST'
1296 }
1297
1298 dol_syslog(get_class($this)."::setClose", LOG_DEBUG);
1299 $resql = $this->db->query($sql);
1300 if ($resql) {
1301 // Call trigger
1302 $result = $this->call_trigger('PROJECT_CLOSE', $user);
1303 if ($result < 0) {
1304 $error++;
1305 }
1306 // End call triggers
1307
1308 if (!$error) {
1309 $this->status = 2;
1310 $this->db->commit();
1311 return 1;
1312 } else {
1313 $this->db->rollback();
1314 $this->error = implode(',', $this->errors);
1315 dol_syslog(get_class($this)."::setClose ".$this->error, LOG_ERR);
1316 return -1;
1317 }
1318 } else {
1319 $this->db->rollback();
1320 $this->error = $this->db->lasterror();
1321 return -1;
1322 }
1323 }
1324
1325 return 0;
1326 }
1327
1334 public function getLibStatut($mode = 0)
1335 {
1336 return $this->LibStatut(isset($this->status) ? $this->status : $this->statut, $mode);
1337 }
1338
1339 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1347 public function LibStatut($status, $mode = 0)
1348 {
1349 // phpcs:enable
1350 global $langs;
1351
1352 if (is_null($status)) {
1353 return '';
1354 }
1355
1356 $statustrans = array(
1357 0 => 'status0',
1358 1 => 'status4',
1359 2 => 'status6',
1360 );
1361
1362 $statusClass = 'status0';
1363 if (!empty($statustrans[$status])) {
1364 $statusClass = $statustrans[$status];
1365 }
1366
1367 return dolGetStatus($langs->transnoentitiesnoconv($this->labelStatus[$status]), $langs->transnoentitiesnoconv($this->labelStatusShort[$status]), '', $statusClass, $mode);
1368 }
1369
1376 public function getTooltipContentArray($params)
1377 {
1378 global $conf, $langs;
1379
1380 $langs->load('projects');
1381 $option = $params['option'] ?? '';
1382 $moreinpopup = $params['moreinpopup'] ?? '';
1383
1384 $datas = [];
1385 if ($option != 'nolink') {
1386 $datas['picto'] = img_picto('', $this->picto, 'class="pictofixedwidth"').' <u class="paddingrightonly">'.$langs->trans("Project").'</u>';
1387 }
1388 if (isset($this->status)) {
1389 $datas['picto'] .= ' '.$this->getLibStatut(5);
1390 }
1391 $datas['ref'] = (isset($datas['picto']) ? '<br>' : '').'<b>'.$langs->trans('Ref').': </b>'.$this->ref; // The space must be after the : to not being explode when showing the title in img_picto
1392 $datas['label'] = '<br><b>'.$langs->trans('Label').': </b>'.$this->title; // The space must be after the : to not being explode when showing the title in img_picto
1393 if (isset($this->public)) {
1394 $datas['visibility'] = '<br><b>'.$langs->trans("Visibility").":</b> ";
1395 $datas['visibility'] .= ($this->public ? img_picto($langs->trans('SharedProject'), 'world', 'class="pictofixedwidth"').$langs->trans("SharedProject") : img_picto($langs->trans('PrivateProject'), 'private', 'class="pictofixedwidth"').$langs->trans("PrivateProject"));
1396 }
1397 if (!empty($this->thirdparty_name)) {
1398 $datas['thirdparty'] = '<br><b>'.$langs->trans('ThirdParty').': </b>'.$this->thirdparty_name; // The space must be after the : to not being explode when showing the title in img_picto
1399 }
1400 if (!empty($this->date_start)) {
1401 $datas['datestart'] = '<br><b>'.$langs->trans('DateStart').': </b>'.dol_print_date($this->date_start, 'day'); // The space must be after the : to not being explode when showing the title in img_picto
1402 }
1403 if (!empty($this->date_end)) {
1404 $datas['dateend'] = '<br><b>'.$langs->trans('DateEnd').': </b>'.dol_print_date($this->date_end, 'day'); // The space must be after the : to not being explode when showing the title in img_picto
1405 }
1406 if ($moreinpopup) {
1407 $datas['moreinpopup'] = '<br>'.$moreinpopup;
1408 }
1409
1410 return $datas;
1411 }
1412
1427 public function getNomUrl($withpicto = 0, $option = '', $addlabel = 0, $moreinpopup = '', $sep = ' - ', $notooltip = 0, $save_lastsearch_value = -1, $morecss = '', $save_pageforbacktolist = '')
1428 {
1429 global $conf, $langs, $user, $hookmanager;
1430
1431 if (!empty($conf->dol_no_mouse_hover)) {
1432 $notooltip = 1; // Force disable tooltips
1433 }
1434
1435 $result = '';
1436 if (getDolGlobalString('PROJECT_OPEN_ALWAYS_ON_TAB')) {
1437 $option = getDolGlobalString('PROJECT_OPEN_ALWAYS_ON_TAB');
1438 }
1439 $params = [
1440 'id' => $this->id,
1441 'objecttype' => $this->element,
1442 'moreinpopup' => $moreinpopup,
1443 'option' => $option,
1444 ];
1445 $classfortooltip = 'classfortooltip';
1446 $dataparams = '';
1447 if (getDolGlobalInt('MAIN_ENABLE_AJAX_TOOLTIP')) {
1448 $classfortooltip = 'classforajaxtooltip';
1449 $dataparams = ' data-params="'.dol_escape_htmltag(json_encode($params)).'"';
1450 $label = '';
1451 } else {
1452 $label = implode($this->getTooltipContentArray($params));
1453 }
1454
1455 $url = '';
1456 if ($option != 'nolink') {
1457 if (preg_match('/\.php$/', $option)) {
1458 $url = dol_buildpath($option, 1).'?id='.$this->id;
1459 } elseif ($option == 'task') {
1460 $url = DOL_URL_ROOT.'/projet/tasks.php?id='.$this->id;
1461 } elseif ($option == 'preview') {
1462 $url = DOL_URL_ROOT.'/projet/element.php?id='.$this->id;
1463 } elseif ($option == 'eventorganization') {
1464 $url = DOL_URL_ROOT.'/eventorganization/conferenceorbooth_list.php?projectid='.$this->id;
1465 } else {
1466 $url = DOL_URL_ROOT.'/projet/card.php?id='.$this->id;
1467 }
1468 // Add param to save lastsearch_values or not
1469 $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
1470 if ($save_lastsearch_value == -1 && isset($_SERVER["PHP_SELF"]) && preg_match('/list\.php/', $_SERVER["PHP_SELF"])) {
1471 $add_save_lastsearch_values = 1;
1472 }
1473 if ($add_save_lastsearch_values) {
1474 $url .= '&save_lastsearch_values=1';
1475 }
1476 $add_save_backpagefor = ($save_pageforbacktolist ? 1 : 0);
1477 if ($add_save_backpagefor) {
1478 $url .= "&save_pageforbacktolist=".urlencode($save_pageforbacktolist);
1479 }
1480 }
1481
1482 $linkclose = '';
1483 if (empty($notooltip) && $user->hasRight('projet', 'lire')) {
1484 if (getDolGlobalString('MAIN_OPTIMIZEFORTEXTBROWSER')) {
1485 $label = $langs->trans("ShowProject");
1486 $linkclose .= ' alt="'.dol_escape_htmltag($label, 1).'"';
1487 }
1488 $linkclose .= ($label ? ' title="'.dol_escape_htmltag($label, 1).'"' : ' title="tocomplete"');
1489 $linkclose .= $dataparams.' class="'.$classfortooltip.($morecss ? ' '.$morecss : '').'"';
1490 } else {
1491 $linkclose = ($morecss ? ' class="'.$morecss.'"' : '');
1492 }
1493
1494 $picto = 'projectpub';
1495 if (!$this->public) {
1496 $picto = 'project';
1497 }
1498
1499 $linkstart = '<a href="'.$url.'"';
1500 $linkstart .= $linkclose.'>';
1501 $linkend = '</a>';
1502
1503 $result .= $linkstart;
1504 if ($withpicto) {
1505 $result .= img_object(($notooltip ? '' : $label), $picto, 'class="pictofixedwidth em088"', 0, 0, $notooltip ? 0 : 1);
1506 }
1507 if ($withpicto != 2) {
1508 $result .= $this->ref;
1509 }
1510 $result .= $linkend;
1511 if ($withpicto != 2) {
1512 $result .= (($addlabel && $this->title) ? '<span class="opacitymedium">'.$sep.dol_trunc($this->title, ($addlabel > 1 ? $addlabel : 0)).'</span>' : '');
1513 }
1514
1515 global $action;
1516 $hookmanager->initHooks(array('projectdao'));
1517 $parameters = array('id' => $this->id, 'getnomurl' => &$result);
1518 $reshook = $hookmanager->executeHooks('getNomUrl', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
1519 if ($reshook > 0) {
1520 $result = $hookmanager->resPrint;
1521 } else {
1522 $result .= $hookmanager->resPrint;
1523 }
1524
1525 return $result;
1526 }
1527
1535 public function initAsSpecimen()
1536 {
1537 global $user, $langs, $conf;
1538
1539 $now = dol_now();
1540
1541 // Initialise parameters
1542 $this->id = 0;
1543 $this->ref = 'SPECIMEN';
1544 $this->entity = $conf->entity;
1545 $this->specimen = 1;
1546 $this->socid = 1;
1547 $this->date_c = $now;
1548 $this->date_m = $now;
1549 $this->date_start = $now;
1550 $this->date_end = $now + (3600 * 24 * 365);
1551 $this->note_public = 'SPECIMEN';
1552 $this->note_private = 'Private Note';
1553 $this->fk_project = 0;
1554 $this->opp_amount = 20000;
1555 $this->budget_amount = 10000;
1556
1557 $this->usage_opportunity = 1;
1558 $this->usage_task = 1;
1559 $this->usage_bill_time = 1;
1560 $this->usage_organize_event = 1;
1561
1562 /*
1563 $nbp = mt_rand(1, 9);
1564 $xnbp = 0;
1565 while ($xnbp < $nbp)
1566 {
1567 $line = new Task($this->db);
1568 $line->fk_project = 0;
1569 $line->label = $langs->trans("Label") . " " . $xnbp;
1570 $line->description = $langs->trans("Description") . " " . $xnbp;
1571
1572 $this->lines[]=$line;
1573 $xnbp++;
1574 }
1575 */
1576
1577 return 1;
1578 }
1579
1587 public function restrictedProjectArea(User $user, $mode = 'read')
1588 {
1589 // To verify role of users
1590 $userAccess = 0;
1591 if (($mode == 'read' && $user->hasRight('projet', 'all', 'lire')) || ($mode == 'write' && $user->hasRight('projet', 'all', 'creer')) || ($mode == 'delete' && $user->hasRight('projet', 'all', 'supprimer'))) {
1592 $userAccess = 1;
1593 } elseif ($this->public && (($mode == 'read' && $user->hasRight('projet', 'lire')) || ($mode == 'write' && $user->hasRight('projet', 'creer')) || ($mode == 'delete' && $user->hasRight('projet', 'supprimer')))) {
1594 $userAccess = 1;
1595 } else { // No access due to permission to read all projects, so we check if we are a contact of project
1596 foreach (array('internal', 'external') as $source) {
1597 $userRole = $this->liste_contact(4, $source);
1598 $num = count($userRole);
1599
1600 $nblinks = 0;
1601 while ($nblinks < $num) {
1602 if ($source == 'internal' && $user->id == $userRole[$nblinks]['id']) { // $userRole[$nblinks]['id'] is id of user (llx_user) for internal contacts
1603 if ($mode == 'read' && $user->hasRight('projet', 'lire')) {
1604 $userAccess++;
1605 }
1606 if ($mode == 'write' && $user->hasRight('projet', 'creer')) {
1607 $userAccess++;
1608 }
1609 if ($mode == 'delete' && $user->hasRight('projet', 'supprimer')) {
1610 $userAccess++;
1611 }
1612 }
1613 if ($source == 'external' && $user->socid > 0 && $user->socid == $userRole[$nblinks]['socid']) { // $userRole[$nblinks]['id'] is id of contact (llx_socpeople) or external contacts
1614 if ($mode == 'read' && $user->hasRight('projet', 'lire')) {
1615 $userAccess++;
1616 }
1617 if ($mode == 'write' && $user->hasRight('projet', 'creer')) {
1618 $userAccess++;
1619 }
1620 if ($mode == 'delete' && $user->hasRight('projet', 'supprimer')) {
1621 $userAccess++;
1622 }
1623 }
1624 $nblinks++;
1625 }
1626 }
1627 //if (empty($nblinks)) // If nobody has permission, we grant creator
1628 //{
1629 // if ((!empty($this->user_author_id) && $this->user_author_id == $user->id))
1630 // {
1631 // $userAccess = 1;
1632 // }
1633 //}
1634 }
1635
1636 return ($userAccess ? $userAccess : -1);
1637 }
1638
1649 public function getProjectsAuthorizedForUser($user, $mode = 0, $list = 0, $socid = 0, $filter = '')
1650 {
1651 $projects = array();
1652 $temp = array();
1653
1654 $sql = "SELECT ".(($mode == 0 || $mode == 1) ? "DISTINCT " : "")."p.rowid, p.ref";
1655 $sql .= " FROM ".MAIN_DB_PREFIX."projet as p";
1656 if ($mode == 0) {
1657 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."element_contact as ec ON ec.element_id = p.rowid";
1658 } elseif ($mode == 1) {
1659 $sql .= ", ".MAIN_DB_PREFIX."element_contact as ec";
1660 } // elseif ($mode == 2) {
1661 // No filter. Use this if user has permission to see all project
1662 // }
1663 $sql .= " WHERE p.entity IN (".getEntity('project').")";
1664 // Internal users must see project he is contact to even if project linked to a third party he can't see.
1665 //if ($socid || ! $user->rights->societe->client->voir) $sql.= " AND (p.fk_soc IS NULL OR p.fk_soc = 0 OR p.fk_soc = ".((int) $socid).")";
1666 if ($socid > 0) {
1667 $sql .= " AND (p.fk_soc IS NULL OR p.fk_soc = 0 OR p.fk_soc = ".((int) $socid).")";
1668 }
1669
1670 // Get id of types of contacts for projects (This list never contains a lot of elements)
1671 $listofprojectcontacttype = array();
1672 $sql2 = "SELECT ctc.rowid, ctc.code FROM ".MAIN_DB_PREFIX."c_type_contact as ctc";
1673 $sql2 .= " WHERE ctc.element = '".$this->db->escape($this->element)."'";
1674 $sql2 .= " AND ctc.source = 'internal'";
1675 $resql = $this->db->query($sql2);
1676 if ($resql) {
1677 while ($obj = $this->db->fetch_object($resql)) {
1678 $listofprojectcontacttype[$obj->rowid] = $obj->code;
1679 }
1680 } else {
1681 dol_print_error($this->db);
1682 }
1683 if (count($listofprojectcontacttype) == 0) {
1684 $listofprojectcontacttype[0] = '0'; // To avoid syntax error if not found
1685 }
1686
1687 if ($mode == 0) {
1688 $sql .= " AND ( p.public = 1";
1689 $sql .= " OR ( ec.fk_c_type_contact IN (".$this->db->sanitize(implode(',', array_keys($listofprojectcontacttype))).")";
1690 $sql .= " AND ec.fk_socpeople = ".((int) $user->id).")";
1691 $sql .= " )";
1692 } elseif ($mode == 1) {
1693 $sql .= " AND ec.element_id = p.rowid";
1694 $sql .= " AND (";
1695 $sql .= " ( ec.fk_c_type_contact IN (".$this->db->sanitize(implode(',', array_keys($listofprojectcontacttype))).")";
1696 $sql .= " AND ec.fk_socpeople = ".((int) $user->id).")";
1697 $sql .= " )";
1698 } // elseif ($mode == 2) {
1699 // No filter. Use this if user has permission to see all project
1700 //}
1701
1702 // Manage filter
1703 $errormessage = '';
1704 $sql .= forgeSQLFromUniversalSearchCriteria($filter, $errormessage);
1705 if ($errormessage) {
1706 $this->errors[] = $errormessage;
1707 dol_syslog(__METHOD__.' '.implode(',', $this->errors), LOG_ERR);
1708 $sql .= $filter;
1709 }
1710
1711 //print $sql;
1712
1713 $resql = $this->db->query($sql);
1714 if ($resql) {
1715 $num = $this->db->num_rows($resql);
1716 $i = 0;
1717 while ($i < $num) {
1718 $row = $this->db->fetch_row($resql);
1719 $projects[$row[0]] = $row[1];
1720 $temp[] = $row[0];
1721 $i++;
1722 }
1723
1724 $this->db->free($resql);
1725
1726 if ($list) {
1727 if (empty($temp)) {
1728 return '0';
1729 }
1730 $result = implode(',', $temp);
1731 return $result;
1732 }
1733 } else {
1734 dol_print_error($this->db);
1735 }
1736
1737 return $projects;
1738 }
1739
1755 public function createFromClone(User $user, $fromid, $clone_contact = false, $clone_task = true, $clone_project_file = false, $clone_task_file = false, $clone_note = true, $move_date = true, $notrigger = 0, $newthirdpartyid = 0)
1756 {
1757 global $langs, $conf;
1758
1759 $error = 0;
1760 $clone_project_id = 0; // For static toolcheck
1761
1762 dol_syslog("createFromClone clone_contact=".json_encode($clone_contact)." clone_task=".json_encode($clone_task)." clone_project_file=".json_encode($clone_project_file)." clone_note=".json_encode($clone_note)." move_date=".json_encode($move_date), LOG_DEBUG);
1763
1764 $now = dol_mktime(0, 0, 0, idate('m', dol_now()), idate('d', dol_now()), idate('Y', dol_now()));
1765
1766 $clone_project = new Project($this->db);
1767
1768 $clone_project->context['createfromclone'] = 'createfromclone';
1769
1770 $this->db->begin();
1771
1772 // Load source object
1773 $clone_project->fetch($fromid);
1774 $clone_project->fetch_optionals();
1775 if ($newthirdpartyid > 0) {
1776 $clone_project->socid = $newthirdpartyid;
1777 }
1778 $clone_project->fetch_thirdparty();
1779
1780 $orign_dt_start = $clone_project->date_start;
1781 $orign_project_ref = $clone_project->ref;
1782
1783 $clone_project->id = 0;
1784 if ($move_date) {
1785 $clone_project->date_start = $now;
1786 if (!(empty($clone_project->date_end))) {
1787 $clone_project->date_end += ($now - $orign_dt_start);
1788 }
1789 }
1790
1791 $clone_project->date_c = $now;
1792
1793 if (!$clone_note) {
1794 $clone_project->note_private = '';
1795 $clone_project->note_public = '';
1796 }
1797
1798 //Generate next ref
1799 $defaultref = '';
1800 $obj = getDolGlobalString('PROJECT_ADDON', 'mod_project_simple');
1801 // Search template files
1802 $file = '';
1803 $classname = '';
1804 $filefound = 0;
1805 $dirmodels = array_merge(array('/'), (array) $conf->modules_parts['models']);
1806 foreach ($dirmodels as $reldir) {
1807 $file = dol_buildpath($reldir."core/modules/project/".$obj.'.php', 0);
1808 if (file_exists($file)) {
1809 $filefound = 1;
1810 dol_include_once($reldir."core/modules/project/".$obj.'.php');
1811 $modProject = new $obj();
1812 '@phan-var-force ModeleNumRefProjects $modProject';
1813 $defaultref = $modProject->getNextValue(is_object($clone_project->thirdparty) ? $clone_project->thirdparty : null, $clone_project);
1814 break;
1815 }
1816 }
1817 if (is_numeric($defaultref) && $defaultref <= 0) {
1818 $defaultref = '';
1819 }
1820
1821 $clone_project->ref = $defaultref;
1822 $clone_project->title = $langs->trans("CopyOf").' '.$clone_project->title;
1823
1824 // Create clone
1825 $result = $clone_project->create($user, $notrigger);
1826
1827 // Other options
1828 if ($result < 0) {
1829 $this->error .= $clone_project->error;
1830 $error++;
1831 }
1832
1833 if (!$error) {
1834 //Get the new project id
1835 $clone_project_id = $clone_project->id;
1836
1837 //Note Update
1838 if (!$clone_note) {
1839 $clone_project->note_private = '';
1840 $clone_project->note_public = '';
1841 } else {
1842 $this->db->begin();
1843 $res = $clone_project->update_note(dol_html_entity_decode($clone_project->note_public, ENT_QUOTES | ENT_HTML5), '_public');
1844 if ($res < 0) {
1845 $this->error .= $clone_project->error;
1846 $error++;
1847 $this->db->rollback();
1848 } else {
1849 $this->db->commit();
1850 }
1851
1852 $this->db->begin();
1853 $res = $clone_project->update_note(dol_html_entity_decode($clone_project->note_private, ENT_QUOTES | ENT_HTML5), '_private');
1854 if ($res < 0) {
1855 $this->error .= $clone_project->error;
1856 $error++;
1857 $this->db->rollback();
1858 } else {
1859 $this->db->commit();
1860 }
1861 }
1862
1863 //Duplicate contact
1864 if ($clone_contact) {
1865 $origin_project = new Project($this->db);
1866 $origin_project->fetch($fromid);
1867
1868 foreach (array('internal', 'external') as $source) {
1869 $tab = $origin_project->liste_contact(-1, $source);
1870 if (is_array($tab) && count($tab) > 0) {
1871 foreach ($tab as $contacttoadd) {
1872 $clone_project->add_contact($contacttoadd['id'], $contacttoadd['code'], $contacttoadd['source'], $notrigger);
1873 if ($clone_project->error == 'DB_ERROR_RECORD_ALREADY_EXISTS') {
1874 $langs->load("errors");
1875 $this->error .= $langs->trans("ErrorThisContactIsAlreadyDefinedAsThisType");
1876 $error++;
1877 } else {
1878 if ($clone_project->error != '') {
1879 $this->error .= $clone_project->error;
1880 $error++;
1881 }
1882 }
1883 }
1884 } elseif ($tab < 0) {
1885 $this->error .= $origin_project->error;
1886 $error++;
1887 }
1888 }
1889 }
1890
1891 //Duplicate file
1892 if ($clone_project_file) {
1893 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
1894
1895 $clone_project_dir = $conf->project->dir_output."/".dol_sanitizeFileName($defaultref);
1896 $ori_project_dir = $conf->project->dir_output."/".dol_sanitizeFileName($orign_project_ref);
1897
1898 if (dol_mkdir($clone_project_dir) >= 0) {
1899 $filearray = dol_dir_list($ori_project_dir, "files", 0, '', '(\.meta|_preview.*\.png)$', '', SORT_ASC, 1);
1900 foreach ($filearray as $key => $file) {
1901 $rescopy = dol_copy($ori_project_dir.'/'.$file['name'], $clone_project_dir.'/'.$file['name'], '0', 1);
1902 if (is_numeric($rescopy) && $rescopy < 0) {
1903 $this->error .= $langs->trans("ErrorFailToCopyFile", $ori_project_dir.'/'.$file['name'], $clone_project_dir.'/'.$file['name']);
1904 $error++;
1905 }
1906 }
1907 } else {
1908 $this->error .= $langs->trans('ErrorInternalErrorDetected').':dol_mkdir';
1909 $error++;
1910 }
1911 }
1912
1913 //Duplicate task
1914 if ($clone_task) {
1915 require_once DOL_DOCUMENT_ROOT.'/projet/class/task.class.php';
1916
1917 $taskstatic = new Task($this->db);
1918
1919 // Security check
1920 $socid = 0;
1921 if ($user->socid > 0) {
1922 $socid = $user->socid;
1923 }
1924
1925 $tasksarray = $taskstatic->getTasksArray(null, null, $fromid, $socid, 0);
1926
1927 $tab_conv_child_parent = array();
1928 $result_clone = 0;
1929
1930 // Loop on each task, to clone it
1931 foreach ($tasksarray as $tasktoclone) {
1932 $result_clone = $taskstatic->createFromClone($user, $tasktoclone->id, $clone_project_id, $tasktoclone->fk_task_parent, $move_date, true, false, $clone_task_file, true, false);
1933 if ($result_clone <= 0) {
1934 $this->error .= $taskstatic->error;
1935 $error++;
1936 } else {
1937 $new_task_id = $result_clone;
1938 $taskstatic->fetch($tasktoclone->id);
1939
1940 //manage new parent clone task id
1941 // if the current task has child we store the original task id and the equivalent clone task id
1942 if (($taskstatic->hasChildren()) && !array_key_exists($tasktoclone->id, $tab_conv_child_parent)) {
1943 $tab_conv_child_parent[$tasktoclone->id] = $new_task_id;
1944 }
1945 }
1946 }
1947
1948 //Parse all clone node to be sure to update new parent
1949 $tasksarray = $taskstatic->getTasksArray(null, null, $clone_project_id, $socid, 0);
1950 foreach ($tasksarray as $task_cloned) {
1951 $taskstatic->fetch($task_cloned->id);
1952 if ($taskstatic->fk_task_parent != 0) {
1953 $taskstatic->fk_task_parent = $tab_conv_child_parent[$taskstatic->fk_task_parent];
1954 }
1955 $res = $taskstatic->update($user, $notrigger);
1956 if ($result_clone <= 0) {
1957 $this->error .= $taskstatic->error;
1958 $error++;
1959 }
1960 }
1961 }
1962 }
1963
1964 unset($clone_project->context['createfromclone']);
1965
1966 if (!$error && $clone_project_id != 0) {
1967 $this->db->commit();
1968 return $clone_project_id;
1969 } else {
1970 $this->db->rollback();
1971 dol_syslog(get_class($this)."::createFromClone nbError: ".$error." error : ".$this->error, LOG_ERR);
1972 return -1;
1973 }
1974 }
1975
1976
1983 public function shiftTaskDate($old_project_dt_start)
1984 {
1985 global $user, $langs, $conf;
1986
1987 $error = 0;
1988 $result = 0;
1989
1990 $taskstatic = new Task($this->db);
1991
1992 // Security check
1993 $socid = 0;
1994 if ($user->socid > 0) {
1995 $socid = $user->socid;
1996 }
1997
1998 $tasksarray = $taskstatic->getTasksArray(null, null, $this->id, $socid, 0);
1999
2000 foreach ($tasksarray as $tasktoshiftdate) {
2001 $to_update = false;
2002 // Fetch only if update of date will be made
2003 if ((!empty($tasktoshiftdate->date_start)) || (!empty($tasktoshiftdate->date_end))) {
2004 //dol_syslog(get_class($this)."::shiftTaskDate to_update", LOG_DEBUG);
2005 $to_update = true;
2006 $task = new Task($this->db);
2007 $result = $task->fetch($tasktoshiftdate->id);
2008 if (!$result) {
2009 $error++;
2010 $this->error .= $task->error;
2011 }
2012 } else {
2013 continue;
2014 }
2015 //print "$this->date_start + $tasktoshiftdate->date_start - $old_project_dt_start";exit;
2016
2017 //Calculate new task start date with difference between old proj start date and origin task start date
2018 if (!empty($tasktoshiftdate->date_start)) {
2019 $task->date_start = $this->date_start + ($tasktoshiftdate->date_start - $old_project_dt_start);
2020 }
2021
2022 //Calculate new task end date with difference between origin proj end date and origin task end date
2023 if (!empty($tasktoshiftdate->date_end)) {
2024 $task->date_end = $this->date_start + ($tasktoshiftdate->date_end - $old_project_dt_start);
2025 }
2026
2027 if ($to_update) {
2028 $result = $task->update($user);
2029 if (!$result) {
2030 $error++;
2031 $this->error .= $task->error;
2032 }
2033 }
2034 }
2035 if ($error != 0) {
2036 return -1;
2037 }
2038 return $result;
2039 }
2040
2041
2042 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2050 public function update_element($tableName, $elementSelectId)
2051 {
2052 // phpcs:enable
2053 $sql = "UPDATE ".MAIN_DB_PREFIX.$tableName;
2054
2055 if ($tableName == "actioncomm") {
2056 $sql .= " SET fk_project=".$this->id;
2057 $sql .= " WHERE id=".((int) $elementSelectId);
2058 } elseif (in_array($tableName, ["entrepot","mrp_mo","stocktransfer_stocktransfer"])) {
2059 $sql .= " SET fk_project=".$this->id;
2060 $sql .= " WHERE rowid=".((int) $elementSelectId);
2061 } else {
2062 $sql .= " SET fk_projet=".$this->id;
2063 $sql .= " WHERE rowid=".((int) $elementSelectId);
2064 }
2065
2066 dol_syslog(get_class($this)."::update_element", LOG_DEBUG);
2067 $resql = $this->db->query($sql);
2068 if (!$resql) {
2069 $this->error = $this->db->lasterror();
2070 return -1;
2071 } else {
2072 return 1;
2073 }
2074 }
2075
2076 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2086 public function remove_element($tableName, $elementSelectId, $projectfield = 'fk_projet')
2087 {
2088 // phpcs:enable
2089 $sql = "UPDATE ".MAIN_DB_PREFIX.$tableName;
2090
2091 if ($tableName == "actioncomm") {
2092 $sql .= " SET fk_project=NULL";
2093 $sql .= " WHERE id=".((int) $elementSelectId);
2094 } else {
2095 $sql .= " SET ".$projectfield."=NULL";
2096 $sql .= " WHERE rowid=".((int) $elementSelectId);
2097 }
2098
2099 dol_syslog(get_class($this)."::remove_element", LOG_DEBUG);
2100 $resql = $this->db->query($sql);
2101 if (!$resql) {
2102 $this->error = $this->db->lasterror();
2103 return -1;
2104 } else {
2105 return 1;
2106 }
2107 }
2108
2119 public function generateDocument($modele, $outputlangs, $hidedetails = 0, $hidedesc = 0, $hideref = 0)
2120 {
2121 global $conf, $langs;
2122
2123 $langs->load("projects");
2124
2125 if (!dol_strlen($modele)) {
2126 $modele = 'baleine';
2127
2128 if ($this->model_pdf) {
2129 $modele = $this->model_pdf;
2130 } elseif (getDolGlobalString('PROJECT_ADDON_PDF')) {
2131 $modele = getDolGlobalString('PROJECT_ADDON_PDF');
2132 }
2133 }
2134
2135 $modelpath = "core/modules/project/doc/";
2136
2137 return $this->commonGenerateDocument($modelpath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref);
2138 }
2139
2140
2150 public function loadTimeSpent($datestart, $taskid = 0, $userid = 0)
2151 {
2152 $this->weekWorkLoad = array();
2153 $this->weekWorkLoadPerTask = array();
2154
2155 if (empty($datestart)) {
2156 dol_print_error(null, 'Error datestart parameter is empty');
2157 }
2158
2159 $sql = "SELECT ptt.rowid as taskid, ptt.element_duration, ptt.element_date, ptt.element_datehour, ptt.fk_element";
2160 $sql .= " FROM ".MAIN_DB_PREFIX."element_time AS ptt, ".MAIN_DB_PREFIX."projet_task as pt";
2161 $sql .= " WHERE ptt.fk_element = pt.rowid";
2162 $sql .= " AND ptt.elementtype = 'task'";
2163 $sql .= " AND pt.fk_projet = ".((int) $this->id);
2164 $sql .= " AND (ptt.element_date >= '".$this->db->idate($datestart)."' ";
2165 $sql .= " AND ptt.element_date <= '".$this->db->idate(dol_time_plus_duree($datestart, 1, 'w') - 1)."')";
2166 if ($taskid) {
2167 $sql .= " AND ptt.fk_element=".((int) $taskid);
2168 }
2169 if (is_numeric($userid)) {
2170 $sql .= " AND ptt.fk_user=".((int) $userid);
2171 }
2172
2173 //print $sql;
2174 $resql = $this->db->query($sql);
2175 if ($resql) {
2176 $dayallreadyfound = array();
2177
2178 $num = $this->db->num_rows($resql);
2179 $i = 0;
2180 // Loop on each record found, so each couple (project id, task id)
2181 while ($i < $num) {
2182 $obj = $this->db->fetch_object($resql);
2183 $day = $this->db->jdate($obj->element_date); // task_date is date without hours
2184 if (empty($dayallreadyfound[$day])) {
2185 $this->weekWorkLoad[$day] = $obj->element_duration;
2186 $this->weekWorkLoadPerTask[$day][$obj->fk_element] = $obj->element_duration;
2187 } else {
2188 $this->weekWorkLoad[$day] += $obj->element_duration;
2189 $this->weekWorkLoadPerTask[$day][$obj->fk_element] += $obj->element_duration;
2190 }
2191 $dayallreadyfound[$day] = 1;
2192 $i++;
2193 }
2194 $this->db->free($resql);
2195 return 1;
2196 } else {
2197 $this->error = "Error ".$this->db->lasterror();
2198 dol_syslog(get_class($this)."::fetch ".$this->error, LOG_ERR);
2199 return -1;
2200 }
2201 }
2202
2212 public function loadTimeSpentMonth($datestart, $taskid = 0, $userid = 0)
2213 {
2214 $this->monthWorkLoad = array();
2215 $this->monthWorkLoadPerTask = array();
2216
2217 if (empty($datestart)) {
2218 dol_print_error(null, 'Error datestart parameter is empty');
2219 }
2220
2221 $sql = "SELECT ptt.rowid as taskid, ptt.element_duration, ptt.element_date, ptt.element_datehour, ptt.fk_element";
2222 $sql .= " FROM ".MAIN_DB_PREFIX."element_time AS ptt, ".MAIN_DB_PREFIX."projet_task as pt";
2223 $sql .= " WHERE ptt.fk_element = pt.rowid";
2224 $sql .= " AND ptt.elementtype = 'task'";
2225 $sql .= " AND pt.fk_projet = ".((int) $this->id);
2226 $sql .= " AND (ptt.element_date >= '".$this->db->idate($datestart)."' ";
2227 $sql .= " AND ptt.element_date <= '".$this->db->idate(dol_time_plus_duree($datestart, 1, 'm') - 1)."')";
2228 if ($taskid) {
2229 $sql .= " AND ptt.fk_element=".((int) $taskid);
2230 }
2231 if (is_numeric($userid)) {
2232 $sql .= " AND ptt.fk_user=".((int) $userid);
2233 }
2234
2235 //print $sql;
2236 $resql = $this->db->query($sql);
2237 if ($resql) {
2238 $weekalreadyfound = array();
2239
2240 $num = $this->db->num_rows($resql);
2241 $i = 0;
2242 $week_number = ''; // Initialisation for static analysis
2243 // Loop on each record found, so each couple (project id, task id)
2244 while ($i < $num) {
2245 $obj = $this->db->fetch_object($resql);
2246 if (!empty($obj->element_date)) {
2247 $date = explode('-', $obj->element_date);
2248 $week_number = getWeekNumber((int) $date[2], (int) $date[1], (int) $date[0]);
2249 }
2250 if (empty($weekalreadyfound[$week_number])) {
2251 $this->monthWorkLoad[$week_number] = $obj->element_duration;
2252 $this->monthWorkLoadPerTask[$week_number][$obj->fk_element] = $obj->element_duration;
2253 } else {
2254 $this->monthWorkLoad[$week_number] += $obj->element_duration;
2255 $this->monthWorkLoadPerTask[$week_number][$obj->fk_element] += $obj->element_duration;
2256 }
2257 $weekalreadyfound[$week_number] = 1;
2258 $i++;
2259 }
2260 $this->db->free($resql);
2261 return 1;
2262 } else {
2263 $this->error = "Error ".$this->db->lasterror();
2264 dol_syslog(get_class($this)."::fetch ".$this->error, LOG_ERR);
2265 return -1;
2266 }
2267 }
2268
2269 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2276 public function load_board($user)
2277 {
2278 // phpcs:enable
2279 global $conf, $langs;
2280
2281 // For external user, no check is done on company because readability is managed by public status of project and assignment.
2282 //$socid=$user->socid;
2283
2284 $response = new WorkboardResponse();
2285 $response->warning_delay = $conf->project->warning_delay / 60 / 60 / 24;
2286 $response->label = $langs->trans("OpenedProjects");
2287 $response->labelShort = $langs->trans("Opened");
2288 $response->url = DOL_URL_ROOT.'/projet/list.php?search_project_user=-1&search_status=1&mainmenu=project';
2289 $response->url_late = DOL_URL_ROOT.'/projet/list.php?search_option=late&mainmenu=project';
2290 $response->img = img_object('', "projectpub");
2291 $response->nbtodo = 0;
2292 $response->nbtodolate = 0;
2293
2294 $sql = "SELECT p.rowid, p.fk_statut as status, p.fk_opp_status, p.datee as datee";
2295 $sql .= " FROM (".MAIN_DB_PREFIX."projet as p";
2296 $sql .= ")";
2297 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."societe as s on p.fk_soc = s.rowid";
2298 // For external user, no check is done on company permission because readability is managed by public status of project and assignment.
2299 //if (! $user->rights->societe->client->voir && ! $socid) $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."societe_commerciaux as sc ON sc.fk_soc = s.rowid";
2300 $sql .= " WHERE p.fk_statut = 1";
2301 $sql .= " AND p.entity IN (".getEntity('project').')';
2302
2303
2304 $projectsListId = null;
2305 if (!$user->hasRight("projet", "all", "lire")) {
2306 $response->url = DOL_URL_ROOT.'/projet/list.php?search_status=1&mainmenu=project';
2307 $projectsListId = $this->getProjectsAuthorizedForUser($user, 0, 1);
2308 if (empty($projectsListId)) {
2309 return $response;
2310 }
2311
2312 $sql .= " AND p.rowid IN (".$this->db->sanitize($projectsListId).")";
2313 }
2314
2315 // No need to check company, as filtering of projects must be done by getProjectsAuthorizedForUser
2316 //if ($socid || ! $user->rights->societe->client->voir) $sql.= " AND (p.fk_soc IS NULL OR p.fk_soc = 0 OR p.fk_soc = ".((int) $socid).")";
2317 // For external user, no check is done on company permission because readability is managed by public status of project and assignment.
2318 //if (! $user->rights->societe->client->voir && ! $socid) $sql.= " AND ((s.rowid = sc.fk_soc AND sc.fk_user = ".((int) $user->id).") OR (s.rowid IS NULL))";
2319
2320 //print $sql;
2321 $resql = $this->db->query($sql);
2322 if ($resql) {
2323 $project_static = new Project($this->db);
2324
2325
2326 // This assignment in condition is not a bug. It allows walking the results.
2327 while ($obj = $this->db->fetch_object($resql)) {
2328 $response->nbtodo++;
2329
2330 $project_static->statut = $obj->status;
2331 $project_static->status = $obj->status;
2332 $project_static->opp_status = $obj->fk_opp_status;
2333 $project_static->date_end = $this->db->jdate($obj->datee);
2334
2335 if ($project_static->hasDelay()) {
2336 $response->nbtodolate++;
2337 }
2338 }
2339
2340 return $response;
2341 }
2342
2343 $this->error = $this->db->error();
2344 return -1;
2345 }
2346
2355 public static function replaceThirdparty(DoliDB $dbs, $origin_id, $dest_id)
2356 {
2357 $tables = array(
2358 'projet'
2359 );
2360
2361 return CommonObject::commonReplaceThirdparty($dbs, $origin_id, $dest_id, $tables);
2362 }
2363
2364
2370 public function loadStateBoard()
2371 {
2372 global $user;
2373
2374 $this->nb = array();
2375
2376 $sql = "SELECT count(p.rowid) as nb";
2377 $sql .= " FROM ".MAIN_DB_PREFIX."projet as p";
2378 $sql .= " WHERE";
2379 $sql .= " p.entity IN (".getEntity('project').")";
2380 if (!$user->hasRight('projet', 'all', 'lire')) {
2381 $projectsListId = $this->getProjectsAuthorizedForUser($user, 0, 1);
2382 $sql .= "AND p.rowid IN (".$this->db->sanitize($projectsListId).")";
2383 }
2384
2385 $resql = $this->db->query($sql);
2386 if ($resql) {
2387 while ($obj = $this->db->fetch_object($resql)) {
2388 $this->nb["projects"] = $obj->nb;
2389 }
2390 $this->db->free($resql);
2391 return 1;
2392 } else {
2393 dol_print_error($this->db);
2394 $this->error = $this->db->error();
2395 return -1;
2396 }
2397 }
2398
2399
2405 public function hasDelay()
2406 {
2407 global $conf;
2408
2409 if (!($this->status == self::STATUS_VALIDATED)) {
2410 return false;
2411 }
2412 if (!$this->date_end) {
2413 return false;
2414 }
2415
2416 $now = dol_now();
2417
2418 return ($this->date_end) < ($now - $conf->project->warning_delay);
2419 }
2420
2421
2428 public function info($id)
2429 {
2430 $sql = 'SELECT c.rowid, datec as datec, tms as datem,';
2431 $sql .= ' date_close as datecloture,';
2432 $sql .= ' fk_user_creat as fk_user_author, fk_user_close as fk_user_cloture';
2433 $sql .= ' FROM '.MAIN_DB_PREFIX.'projet as c';
2434 $sql .= ' WHERE c.rowid = '.((int) $id);
2435 $result = $this->db->query($sql);
2436 if ($result) {
2437 if ($this->db->num_rows($result)) {
2438 $obj = $this->db->fetch_object($result);
2439
2440 $this->id = $obj->rowid;
2441
2442 $this->user_creation_id = $obj->fk_user_author;
2443 $this->user_closing_id = $obj->fk_user_cloture;
2444
2445 $this->date_creation = $this->db->jdate($obj->datec);
2446 $this->date_modification = $this->db->jdate($obj->datem);
2447 $this->date_cloture = $this->db->jdate($obj->datecloture);
2448 }
2449
2450 $this->db->free($result);
2451 } else {
2452 dol_print_error($this->db);
2453 }
2454 }
2455
2466 public function setCategories($categories)
2467 {
2468 require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
2469 return parent::setCategoriesCommon($categories, Categorie::TYPE_PROJECT);
2470 }
2471
2472
2480 public function getLinesArray($user, $loadRoleMode = 1)
2481 {
2482 require_once DOL_DOCUMENT_ROOT.'/projet/class/task.class.php';
2483 $taskstatic = new Task($this->db);
2484
2485 $this->lines = $taskstatic->getTasksArray(null, $user, $this->id, 0, 0, '', '-1', '', 0, 0, null, 0, array(), 0, $loadRoleMode);
2486 return 1;
2487 }
2488
2507 public function sendEmail($text, $subject, $filename_list = array(), $mimetype_list = array(), $mimefilename_list = array(), $addr_cc = "", $addr_bcc = "", $deliveryreceipt = 0, $msgishtml = -1, $errors_to = '', $moreinheader = '')
2508 {
2509 // TODO EMAIL
2510
2511 return 1;
2512 }
2513
2522 public function getKanbanView($option = '', $arraydata = null, $size = '')
2523 {
2524 global $conf, $langs;
2525
2526 $selected = (empty($arraydata['selected']) ? 0 : $arraydata['selected']);
2527
2528 if (empty($size)) {
2529 if (empty($conf->dol_optimize_smallscreen)) {
2530 $size = 'large';
2531 } else {
2532 $size = 'small';
2533 }
2534 }
2535
2536 $return = '<div class="box-flex-item '.($size == 'small' ? 'box-flex-item-small' : '').' box-flex-grow-zero">';
2537 $return .= '<div class="info-box info-box-sm">';
2538 $return .= '<span class="info-box-icon bg-infobox-action">';
2539 $return .= img_picto('', $this->public ? 'projectpub' : $this->picto);
2540 //$return .= '<i class="fa fa-dol-action"></i>'; // Can be image
2541 $return .= '</span>';
2542 $return .= '<div class="info-box-content">';
2543 $return .= '<span class="info-box-ref inline-block tdoverflowmax150 valignmiddle">'.(method_exists($this, 'getNomUrl') ? $this->getNomUrl() : $this->ref);
2544 if ($this->hasDelay()) {
2545 $return .= img_warning($langs->trans('Late'));
2546 }
2547 $return .= '</span>';
2548 if ($selected >= 0) {
2549 $return .= '<input id="cb'.$this->id.'" class="flat checkforselect fright" type="checkbox" name="toselect[]" value="'.$this->id.'"'.($selected ? ' checked="checked"' : '').'>';
2550 }
2551 // Date
2552 /*
2553 if (property_exists($this, 'date_start') && $this->date_start) {
2554 $return .= '<br><span class="info-box-label">'.dol_print_date($this->date_start, 'day').'</>';
2555 }
2556 if (property_exists($this, 'date_end') && $this->date_end) {
2557 if ($this->date_start) {
2558 $return .= ' - ';
2559 } else {
2560 $return .= '<br>';
2561 }
2562 $return .= '<span class="info-box-label">'.dol_print_date($this->date_end, 'day').'</span>';
2563 }*/
2564 if (property_exists($this, 'thirdparty') && !is_null($this->thirdparty) && is_object($this->thirdparty) && $this->thirdparty instanceof Societe) {
2565 $return .= '<br><div class="info-box-ref tdoverflowmax125 inline-block valignmiddle">'.$this->thirdparty->getNomUrl(1);
2566 $return .= '</div>';
2567 if (!empty($this->thirdparty->phone)) {
2568 $return .= '<div class="inline-block valignmiddle">';
2569 $return .= dol_print_phone($this->thirdparty->phone, $this->thirdparty->country_code, 0, $this->thirdparty->id, 'tel', 'hidenum', 'phone', $this->thirdparty->phone, 0, 'paddingleft paddingright'); // @phan-suppress-current-line PhanPluginSuspiciousParamPosition
2570 $return .= '</div>';
2571 }
2572 if (!empty($this->thirdparty->email)) {
2573 $return .= '<div class="inline-block valignmiddle">';
2574 $return .= dol_print_email($this->thirdparty->email, 0, $this->thirdparty->id, 'thirdparty', -1, 1, 2, 'paddingleft paddingright');
2575 $return .= '</div>';
2576 }
2577 }
2578 if (!empty($arraydata['assignedusers'])) {
2579 $return .= '<br>';
2580 if ($this->public) {
2581 $return .= img_picto($langs->trans('Visibility').': '.$langs->trans('SharedProject'), 'world', 'class="paddingrightonly valignmiddle"');
2582 //print $langs->trans('SharedProject');
2583 } else {
2584 $return .= img_picto($langs->trans('Visibility').': '.$langs->trans('PrivateProject'), 'private', 'class="paddingrightonly valignmiddle"');
2585 //print $langs->trans('PrivateProject');
2586 }
2587
2588 $return .= ' <span class="small valignmiddle">'.$arraydata['assignedusers'].'</span>';
2589 }
2590 /*if (property_exists($this, 'user_author_id')) {
2591 $return .= '<br><span class="info-box-label opacitymedium">'.$langs->trans("Author").'</span>';
2592 $return .= '<span> : '.$user->getNomUrl(1).'</span>';
2593 }*/
2594 $return .= '<br><div>'; // start div line status
2595 if ($this->usage_opportunity && $this->opp_status_code) {
2596 //$return .= '<br><span class="info-bo-label opacitymedium">'.$langs->trans("OpportunityStatusShort").'</span>';
2597 //$return .= '<div class="small inline-block">'.dol_trunc($langs->trans("OppStatus".$this->opp_status_code), 5).'</div>';
2598 $return .= '<div class="opacitymedium small marginrightonly inline-block" title="'.dol_escape_htmltag($langs->trans("OppStatus".$this->opp_status_code)).'">'.round($this->opp_percent).'%</div>';
2599 $return .= ' <div class="amount small marginrightonly inline-block">'.price($this->opp_amount).'</div>';
2600 }
2601 if (method_exists($this, 'getLibStatut')) {
2602 $return .= '<div class="info-box-status small inline-block valignmiddle">'.$this->getLibStatut(3).'</div>';
2603 }
2604 $return .= '</div>'; // end div line status
2605
2606 $return .= '</div>';
2607 $return .= '</div>';
2608 $return .= '</div>';
2609
2610 return $return;
2611 }
2612
2618 public function getChildren()
2619 {
2620 $children = [];
2621 $sql = 'SELECT rowid,title';
2622 $sql .= ' FROM '.MAIN_DB_PREFIX.'projet';
2623 $sql .= ' WHERE fk_project = '.((int) $this->id);
2624 $sql .= ' ORDER BY title';
2625 $result = $this->db->query($sql);
2626 if ($result) {
2627 $n = $this->db->num_rows($result);
2628 while ($n) {
2629 $children[] = $this->db->fetch_object($result);
2630 $n--;
2631 }
2632 $this->db->free($result);
2633 } else {
2634 dol_print_error($this->db);
2635 }
2636
2637 return $children;
2638 }
2639
2644 public function createWeeklyReport()
2645 {
2646 global $mysoc, $user;
2647
2648 $now = dol_now();
2649 $nowDate = dol_getdate($now, true);
2650
2651 $errormesg = '';
2652 $errorsMsg = array();
2653
2654 $firstDayOfWeekTS = dol_get_first_day_week($nowDate['mday'], $nowDate['mon'], $nowDate['year']);
2655
2656 $firstDayOfWeekDate = dol_mktime(0, 0, 0, $nowDate['mon'], $firstDayOfWeekTS['first_day'], $nowDate['year']);
2657
2658 $lastWeekStartTS = dol_time_plus_duree($firstDayOfWeekDate, -7, 'd');
2659
2660 $lastWeekEndTS = dol_time_plus_duree($lastWeekStartTS, 6, 'd');
2661
2662 $startDate = dol_print_date($lastWeekStartTS, '%Y-%m-%d 00:00:00');
2663 $endDate = dol_print_date($lastWeekEndTS, '%Y-%m-%d 23:59:59');
2664
2665 $sql = "SELECT
2666 u.rowid AS user_id,
2667 CONCAT(u.firstname, ' ', u.lastname) AS name,
2668 u.email,u.weeklyhours,
2669 SUM(et.element_duration) AS total_seconds
2670 FROM
2671 ".MAIN_DB_PREFIX."element_time AS et
2672 JOIN
2673 ".MAIN_DB_PREFIX."user AS u ON et.fk_user = u.rowid
2674 WHERE
2675 et.element_date BETWEEN '".$this->db->escape($startDate)."' AND '".$this->db->escape($endDate)."'
2676 AND et.elementtype = 'task'
2677 GROUP BY
2678 et.fk_user";
2679
2680 $resql = $this->db->query($sql);
2681 if (!$resql) {
2682 dol_print_error($this->db);
2683 return -1;
2684 } else {
2685 $reportContent = "<span>Weekly time report from $startDate to $endDate </span><br><br>";
2686 $reportContent .= '<table border="1" style="border-collapse: collapse;">';
2687 $reportContent .= '<tr><th>Nom d\'utilisateur</th><th>Temps saisi (heures)</th><th>Temps travaillé par semaine (heures)</th></tr>';
2688
2689 $weekendEnabled = 0;
2690 $to = '';
2691 $nbMailSend = 0;
2692 $error = 0;
2693 $errors_to = '';
2694 while ($obj = $this->db->fetch_object($resql)) {
2695 $to = $obj->email;
2696 $numHolidays = num_public_holiday($lastWeekStartTS, $lastWeekEndTS, $mysoc->country_code, 1);
2697 if (getDolGlobalString('MAIN_NON_WORKING_DAYS_INCLUDE_SATURDAY') && getDolGlobalString('MAIN_NON_WORKING_DAYS_INCLUDE_SUNDAY')) {
2698 $numHolidays -= 2;
2699 $weekendEnabled = 2;
2700 }
2701
2702 $dailyHours = $obj->weeklyhours / (7 - $weekendEnabled);
2703
2704 // Adjust total on seconde
2705 $adjustedSeconds = $obj->total_seconds + ($numHolidays * $dailyHours * 3600);
2706
2707 $totalHours = round($adjustedSeconds / 3600, 2);
2708
2709 $reportContent .= "<tr><td>{$obj->name}</td><td>{$totalHours}</td><td>".round($obj->weeklyhours, 2)."</td></tr>";
2710
2711 $reportContent .= '</table>';
2712
2713 require_once DOL_DOCUMENT_ROOT.'/core/class/CMailFile.class.php';
2714
2715 // PREPARE EMAIL
2716 $errormesg = '';
2717
2718 $subject = 'Rapport hebdomadaire des temps travaillés';
2719
2720 $from = getDolGlobalString('MAIN_MAIL_EMAIL_FROM');
2721 if (empty($from)) {
2722 $errormesg = "Failed to get sender into global setup MAIN_MAIL_EMAIL_FROM";
2723 $error++;
2724 }
2725
2726 $mail = new CMailFile($subject, $to, $from, $reportContent, array(), array(), array(), '', '', 0, -1, '', '', '', 'text/html');
2727
2728 if ($mail->sendfile()) {
2729 $nbMailSend++;
2730
2731 // Add a line into event table
2732 require_once DOL_DOCUMENT_ROOT.'/comm/action/class/actioncomm.class.php';
2733
2734 // Insert record of emails sent
2735 $actioncomm = new ActionComm($this->db);
2736
2737 $actioncomm->type_code = 'AC_OTH_AUTO'; // Event insert into agenda automatically
2738 $actioncomm->socid = $this->thirdparty->id; // To link to a company
2739 $actioncomm->contact_id = 0;
2740
2741 $actioncomm->code = 'AC_EMAIL';
2742 $actioncomm->label = 'createWeeklyReportOK()';
2743 $actioncomm->fk_project = $this->id;
2744 $actioncomm->datep = dol_now();
2745 $actioncomm->datef = $actioncomm->datep;
2746 $actioncomm->percentage = -1; // Not applicable
2747 $actioncomm->authorid = $user->id; // User saving action
2748 $actioncomm->userownerid = $user->id; // Owner of action
2749 // Fields when action is an email (content should be added into note)
2750 $actioncomm->email_msgid = $mail->msgid;
2751 $actioncomm->email_subject = $subject;
2752 $actioncomm->email_from = $from;
2753 $actioncomm->email_sender = '';
2754 $actioncomm->email_to = $to;
2755
2756 $actioncomm->errors_to = $errors_to;
2757
2758 $actioncomm->elementtype = 'project_task';
2759 $actioncomm->fk_element = (int) $this->element;
2760
2761 $actioncomm->create($user);
2762 } else {
2763 $errormesg = $mail->error.' : '.$to;
2764 $error++;
2765
2766 // Add a line into event table
2767 require_once DOL_DOCUMENT_ROOT.'/comm/action/class/actioncomm.class.php';
2768
2769 // Insert record of emails sent
2770 $actioncomm = new ActionComm($this->db);
2771
2772 $actioncomm->type_code = 'AC_OTH_AUTO'; // Event insert into agenda automatically
2773 $actioncomm->socid = $this->thirdparty->id; // To link to a company
2774 $actioncomm->contact_id = 0;
2775
2776 $actioncomm->code = 'AC_EMAIL';
2777 $actioncomm->label = 'createWeeklyReportKO()';
2778 $actioncomm->note_private = $errormesg;
2779 $actioncomm->fk_project = $this->id;
2780 $actioncomm->datep = dol_now();
2781 $actioncomm->datef = $actioncomm->datep;
2782 $actioncomm->authorid = $user->id; // User saving action
2783 $actioncomm->userownerid = $user->id; // Owner of action
2784 // Fields when action is an email (content should be added into note)
2785 $actioncomm->email_msgid = $mail->msgid;
2786 $actioncomm->email_from = $from;
2787 $actioncomm->email_sender = '';
2788 $actioncomm->email_to = $to;
2789
2790 $actioncomm->errors_to = $errors_to;
2791
2792 $actioncomm->elementtype = 'project_task';
2793 $actioncomm->fk_element = (int) $this->element;
2794
2795 $actioncomm->create($user);
2796 }
2797 $this->db->commit();
2798 }
2799 }
2800 if (!empty($errormesg)) {
2801 $errorsMsg[] = $errormesg;
2802 }
2803
2804 if (!$error) {
2805 $this->output .= 'Nb of emails sent : '.$nbMailSend;
2806 dol_syslog(__METHOD__." end - ".$this->output, LOG_INFO);
2807 return 0;
2808 } else {
2809 $this->error = 'Nb of emails sent : '.$nbMailSend.', '.(empty($errorsMsg) ? $error : implode(', ', $errorsMsg));
2810 dol_syslog(__METHOD__." end - ".$this->error, LOG_INFO);
2811 return $error;
2812 }
2813 }
2814}
$object ref
Definition info.php:89
Class to manage agenda events (actions)
Class to send emails (with attachments or not) Usage: $mailfile = new CMailFile($subject,...
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...
commonGenerateDocument($modelspath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams=null)
Common function for all objects extending CommonObject for generating documents.
liste_contact($statusoflink=-1, $source='external', $list=0, $code='', $status=-1, $arrayoftcids=array())
Get array of all contacts for an object.
static commonReplaceThirdparty(DoliDB $dbs, $origin_id, $dest_id, array $tables, $ignoreerrors=0)
Function used to replace a thirdparty 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.
Class to manage Dolibarr database access.
Class to manage projects.
LibStatut($status, $mode=0)
Renvoi status label for a status.
getLibStatut($mode=0)
Return status label of object.
getElementCount($type, $tablename, $projectkey='fk_projet')
Return the count of a type of linked elements of this project.
getNomUrl($withpicto=0, $option='', $addlabel=0, $moreinpopup='', $sep=' - ', $notooltip=0, $save_lastsearch_value=-1, $morecss='', $save_pageforbacktolist='')
Return clickable name (with picto eventually)
fetchAndSetSubstitution($id, $key, $fetched=false)
Fetch object and substitute key.
getChildren()
Return array of sub-projects of the current project.
setValid($user, $notrigger=0)
Validate a project.
createWeeklyReport()
Method for calculating weekly hours worked and generating a report.
static replaceThirdparty(DoliDB $dbs, $origin_id, $dest_id)
Function used to replace a thirdparty id with another one.
const STATUS_VALIDATED
Open/Validated status.
getProjectsAuthorizedForUser($user, $mode=0, $list=0, $socid=0, $filter='')
Return array of projects a user has permission on, is affected to, or all projects.
create($user, $notrigger=0)
Create a project into database.
const STATUS_CLOSED
Closed status.
const STATUS_DRAFT
Draft status.
loadTimeSpentMonth($datestart, $taskid=0, $userid=0)
Load time spent into this->weekWorkLoad and this->weekWorkLoadPerTask for all day of a week of projec...
__construct($db)
Constructor.
fetch($id, $ref='', $ref_ext='', $email_msgid='')
Get object from database.
shiftTaskDate($old_project_dt_start)
Shift project task date from current date to delta.
hasDelay()
Is the project delayed?
remove_element($tableName, $elementSelectId, $projectfield='fk_projet')
Associate element to a project.
setCategories($categories)
Sets object to supplied categories.
update_element($tableName, $elementSelectId)
Associate element to a project.
createFromClone(User $user, $fromid, $clone_contact=false, $clone_task=true, $clone_project_file=false, $clone_task_file=false, $clone_note=true, $move_date=true, $notrigger=0, $newthirdpartyid=0)
Load an object from its id and create a new one in database.
loadStateBoard()
Load indicators this->nb for the state board.
load_board($user)
Load indicators for dashboard (this->nbtodo and this->nbtodolate)
getLinesArray($user, $loadRoleMode=1)
Create an array of tasks of current project.
get_element_list($type, $tablename, $datefieldname='', $date_start=null, $date_end=null, $projectkey='fk_projet')
Return list of elements for type, linked to a project.
getKanbanView($option='', $arraydata=null, $size='')
Return clickable link of object (with eventually picto)
info($id)
Charge les information d'ordre info dans l'objet commande.
getTooltipContentArray($params)
getTooltipContentArray
sendEmail($text, $subject, $filename_list=array(), $mimetype_list=array(), $mimefilename_list=array(), $addr_cc="", $addr_bcc="", $deliveryreceipt=0, $msgishtml=-1, $errors_to='', $moreinheader='')
Function sending an email to the current project with the text supplied in parameter.
initAsSpecimen()
Initialise an instance with random values.
setClose($user)
Close a project.
loadTimeSpent($datestart, $taskid=0, $userid=0)
Load time spent into this->weekWorkLoad and this->weekWorkLoadPerTask for all day of a week of projec...
generateDocument($modele, $outputlangs, $hidedetails=0, $hidedesc=0, $hideref=0)
Create an intervention document on disk using template defined into PROJECT_ADDON_PDF.
restrictedProjectArea(User $user, $mode='read')
Check if user has permission on current project.
deleteTasks($user)
Delete tasks with no children first, then task with children recursively.
update($user, $notrigger=0)
Update a project.
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage tasks.
Class to manage Dolibarr users.
print $langs trans("Ref").' m titre as m m statut as status
Or an array listing all the potential status of the object: array: int of the status => translated la...
Definition index.php:171
dol_get_first_day_week($day, $month, $year, $gm=false)
Return first day of week for a date.
Definition date.lib.php:675
getWeekNumber($day, $month, $year)
Return week number.
dol_time_plus_duree($time, $duration_value, $duration_unit, $ruleforendofmonth=0)
Add a delay to a date.
Definition date.lib.php:125
num_public_holiday($timestampStart, $timestampEnd, $country_code='', $lastday=0, $includesaturday=-1, $includesunday=-1, $includefriday=-1, $includemonday=-1)
Return the number of non working days including Friday, Saturday and Sunday (or not) between 2 dates ...
Definition date.lib.php:769
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_copy($srcfile, $destfile, $newmask='0', $overwriteifexists=1, $testvirus=0, $indexdatabase=0)
Copy a file to another file.
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
dol_html_entity_decode($a, $b, $c='UTF-8', $keepsomeentities=0)
Replace html_entity_decode functions to manage errors.
dol_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed information (by default a local PHP server timestamp) Rep...
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0)
Show a picto called object_picto (generic function)
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
dol_print_phone($phone, $countrycode='', $cid=0, $socid=0, $addlink='', $separ="&nbsp;", $withpicto='', $titlealt='', $adddivfloat=0, $morecss='paddingright')
Format phone numbers according to country.
price2num($amount, $rounding='', $option=0)
Function that return a number with universal decimal format (decimal separator is '.
isDolTms($timestamp)
isDolTms check if a timestamp is valid.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
forgeSQLFromUniversalSearchCriteria($filter, &$errorstr='', $noand=0, $nopar=0, $noerror=0)
forgeSQLFromUniversalSearchCriteria
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs=null, $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
if(!function_exists( 'dol_getprefix')) dol_include_once($relpath, $classname='')
Make an include_once using default root and alternate root if it fails.
dol_print_email($email, $cid=0, $socid=0, $addlink=0, $max=64, $showinvalid=1, $withpicto=0, $morecss='paddingrightonly')
Show EMail link formatted for HTML output.
dolGetStatus($statusLabel='', $statusLabelShort='', $html='', $statusType='status0', $displayMode=0, $url='', $params=array())
Output the badge of a status.
dol_substr($string, $start, $length=null, $stringencoding='', $trunconbytes=0)
Make a substring.
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 a Dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
getEntity($element, $shared=1, $currentobject=null)
Get list of entity id to use.
dol_getdate($timestamp, $fast=false, $forcetimezone='')
Return an array with locale date info.
dol_mkdir($dir, $dataroot='', $newmask='')
Creation of a directory (this can create recursive subdir)
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
Definition member.php:79