dolibarr 20.0.0
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 *
14 * This program is free software; you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation; either version 3 of the License, or
17 * (at your option) any later version.
18 *
19 * This program is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23 *
24 * You should have received a copy of the GNU General Public License
25 * along with this program. If not, see <https://www.gnu.org/licenses/>.
26 */
27
33require_once DOL_DOCUMENT_ROOT.'/core/class/commonobject.class.php';
34
38class Project extends CommonObject
39{
43 public $element = 'project';
44
48 public $table_element = 'projet';
49
53 public $table_element_line = 'projet_task';
54
58 public $table_element_date;
59
63 public $fk_element = 'fk_projet';
64
68 public $picto = 'project';
69
73 protected $table_ref_field = 'ref';
74
78 public $fk_project;
79
83 public $description;
84
88 public $title;
89
95 public $dateo;
96
100 public $date_start;
101
107 public $datee;
108
112 public $date_end;
113
117 public $date_start_event;
118
122 public $date_end_event;
123
127 public $location;
128
132 public $date_close;
133
134 public $socid; // To store id of thirdparty
135 public $thirdparty_name; // To store name of thirdparty (defined only in some cases)
136
138
142 public $fk_user_close;
143
144 public $public;
145
149 public $budget_amount;
150
154 public $usage_opportunity;
155
159 public $usage_task;
160
164 public $usage_bill_time; // Is the time spent on project must be invoiced or not
165
169 public $usage_organize_event;
170
174 public $accept_conference_suggestions;
175
179 public $accept_booth_suggestions;
180
184 public $price_registration;
185
189 public $price_booth;
190
194 public $max_attendees;
195
196 public $statut; // 0=draft, 1=opened, 2=closed
197
198 public $opp_status; // opportunity status, into table llx_c_lead_status
199 public $opp_status_code;
200 public $fk_opp_status; // opportunity status, into table llx_c_lead_status
201 public $opp_amount; // opportunity amount
202 public $opp_percent; // opportunity probability
203 public $opp_weighted_amount; // opportunity weighted amount
204
205 public $email_msgid;
206
207 public $oldcopy;
208
209 public $weekWorkLoad; // Used to store workload details of a projet
210 public $weekWorkLoadPerTask; // Used to store workload details of tasks of a projet
211
215 public $monthWorkLoad;
216
220 public $monthWorkLoadPerTask;
221
227 public $datec;
228
232 public $date_c;
233
239 public $datem;
240
244 public $date_m;
245
249 public $ip;
250
254 public $lines;
255
296 // BEGIN MODULEBUILDER PROPERTIES
300 public $fields = array(
301 'rowid' => array('type' => 'integer', 'label' => 'ID', 'enabled' => 1, 'visible' => -1, 'notnull' => 1, 'position' => 10),
302 'fk_project' => array('type' => 'integer', 'label' => 'Parent', 'enabled' => 1, 'visible' => 1, 'notnull' => 0, 'position' => 12),
303 'ref' => array('type' => 'varchar(50)', 'label' => 'Ref', 'enabled' => 1, 'visible' => 1, 'showoncombobox' => 1, 'position' => 15, 'searchall' => 1),
304 'title' => array('type' => 'varchar(255)', 'label' => 'ProjectLabel', 'enabled' => 1, 'visible' => 1, 'notnull' => 1, 'position' => 17, 'showoncombobox' => 2, 'searchall' => 1),
305 'entity' => array('type' => 'integer', 'label' => 'Entity', 'default' => '1', 'enabled' => 1, 'visible' => 3, 'notnull' => 1, 'position' => 19),
306 'fk_soc' => array('type' => 'integer', 'label' => 'Thirdparty', 'enabled' => 1, 'visible' => 0, 'position' => 20),
307 'dateo' => array('type' => 'date', 'label' => 'DateStart', 'enabled' => 1, 'visible' => -1, 'position' => 30),
308 'datee' => array('type' => 'date', 'label' => 'DateEnd', 'enabled' => 1, 'visible' => 1, 'position' => 35),
309 'description' => array('type' => 'text', 'label' => 'Description', 'enabled' => 1, 'visible' => 3, 'position' => 55, 'searchall' => 1),
310 'public' => array('type' => 'integer', 'label' => 'Visibility', 'enabled' => 1, 'visible' => -1, 'position' => 65),
311 'fk_opp_status' => array('type' => 'integer:CLeadStatus:core/class/cleadstatus.class.php', 'label' => 'OpportunityStatusShort', 'enabled' => 'getDolGlobalString("PROJECT_USE_OPPORTUNITIES")', 'visible' => 1, 'position' => 75),
312 'opp_percent' => array('type' => 'double(5,2)', 'label' => 'OpportunityProbabilityShort', 'enabled' => 'getDolGlobalString("PROJECT_USE_OPPORTUNITIES")', 'visible' => 1, 'position' => 80),
313 'note_private' => array('type' => 'html', 'label' => 'NotePrivate', 'enabled' => 1, 'visible' => 0, 'position' => 85, 'searchall' => 1),
314 'note_public' => array('type' => 'html', 'label' => 'NotePublic', 'enabled' => 1, 'visible' => 0, 'position' => 90, 'searchall' => 1),
315 'model_pdf' => array('type' => 'varchar(255)', 'label' => 'ModelPdf', 'enabled' => 1, 'visible' => 0, 'position' => 95),
316 'date_close' => array('type' => 'datetime', 'label' => 'DateClosing', 'enabled' => 1, 'visible' => 0, 'position' => 105),
317 'fk_user_close' => array('type' => 'integer', 'label' => 'UserClosing', 'enabled' => 1, 'visible' => 0, 'position' => 110),
318 'opp_amount' => array('type' => 'double(24,8)', 'label' => 'OpportunityAmountShort', 'enabled' => 1, 'visible' => 'getDolGlobalString("PROJECT_USE_OPPORTUNITIES")', 'position' => 115),
319 'budget_amount' => array('type' => 'double(24,8)', 'label' => 'Budget', 'enabled' => 1, 'visible' => -1, 'position' => 119),
320 'usage_opportunity' => array('type' => 'integer', 'label' => 'UsageOpportunity', 'enabled' => 1, 'visible' => -1, 'position' => 130),
321 'usage_task' => array('type' => 'integer', 'label' => 'UsageTasks', 'enabled' => 1, 'visible' => -1, 'position' => 135),
322 'usage_bill_time' => array('type' => 'integer', 'label' => 'UsageBillTimeShort', 'enabled' => 1, 'visible' => -1, 'position' => 140),
323 'usage_organize_event' => array('type' => 'integer', 'label' => 'UsageOrganizeEvent', 'enabled' => 1, 'visible' => -1, 'position' => 145),
324 // Properties for event organization
325 'date_start_event' => array('type' => 'date', 'label' => 'DateStartEvent', 'enabled' => "isModEnabled('eventorganization')", 'visible' => 1, 'position' => 200),
326 'date_end_event' => array('type' => 'date', 'label' => 'DateEndEvent', 'enabled' => "isModEnabled('eventorganization')", 'visible' => 1, 'position' => 201),
327 'location' => array('type' => 'text', 'label' => 'Location', 'enabled' => 1, 'visible' => 3, 'position' => 55, 'searchall' => 202),
328 'accept_conference_suggestions' => array('type' => 'integer', 'label' => 'AllowUnknownPeopleSuggestConf', 'enabled' => 1, 'visible' => -1, 'position' => 210),
329 'accept_booth_suggestions' => array('type' => 'integer', 'label' => 'AllowUnknownPeopleSuggestBooth', 'enabled' => 1, 'visible' => -1, 'position' => 211),
330 'price_registration' => array('type' => 'double(24,8)', 'label' => 'PriceOfRegistration', 'enabled' => 1, 'visible' => -1, 'position' => 212),
331 'price_booth' => array('type' => 'double(24,8)', 'label' => 'PriceOfBooth', 'enabled' => 1, 'visible' => -1, 'position' => 215),
332 'max_attendees' => array('type' => 'integer', 'label' => 'MaxNbOfAttendees', 'enabled' => 1, 'visible' => -1, 'position' => 215),
333 // Generic
334 'datec' => array('type' => 'datetime', 'label' => 'DateCreationShort', 'enabled' => 1, 'visible' => -2, 'position' => 400),
335 'tms' => array('type' => 'timestamp', 'label' => 'DateModificationShort', 'enabled' => 1, 'visible' => -2, 'notnull' => 1, 'position' => 405),
336 'fk_user_creat' => array('type' => 'integer', 'label' => 'UserCreation', 'enabled' => 1, 'visible' => 0, 'notnull' => 1, 'position' => 410),
337 'fk_user_modif' => array('type' => 'integer', 'label' => 'UserModification', 'enabled' => 1, 'visible' => 0, 'position' => 415),
338 'import_key' => array('type' => 'varchar(14)', 'label' => 'ImportId', 'enabled' => 1, 'visible' => -1, 'position' => 420),
339 'email_msgid' => array('type' => 'varchar(255)', 'label' => 'EmailMsgID', 'enabled' => 1, 'visible' => -1, 'position' => 450, 'help' => 'EmailMsgIDWhenSourceisEmail', 'csslist' => 'tdoverflowmax125'),
340 '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')),
341 );
342 // END MODULEBUILDER PROPERTIES
343
347 const STATUS_DRAFT = 0;
348
353
357 const STATUS_CLOSED = 2;
358
359
365 public function __construct($db)
366 {
367 global $conf;
368
369 $this->db = $db;
370
371 $this->ismultientitymanaged = 1;
372 $this->isextrafieldmanaged = 1;
373
374 $this->labelStatusShort = array(0 => 'Draft', 1 => 'Opened', 2 => 'Closed');
375 $this->labelStatus = array(0 => 'Draft', 1 => 'Opened', 2 => 'Closed');
376
377 global $conf;
378
379 if (!getDolGlobalString('MAIN_SHOW_TECHNICAL_ID')) {
380 $this->fields['rowid']['visible'] = 0;
381 }
382
383 if (!getDolGlobalString('PROJECT_USE_OPPORTUNITIES')) {
384 $this->fields['fk_opp_status']['enabled'] = 0;
385 $this->fields['opp_percent']['enabled'] = 0;
386 $this->fields['opp_amount']['enabled'] = 0;
387 $this->fields['usage_opportunity']['enabled'] = 0;
388 }
389
390 if (getDolGlobalString('PROJECT_HIDE_TASKS')) {
391 $this->fields['usage_bill_time']['visible'] = 0;
392 $this->fields['usage_task']['visible'] = 0;
393 }
394
395 if (empty($conf->eventorganization->enabled)) {
396 $this->fields['usage_organize_event']['visible'] = 0;
397 $this->fields['accept_conference_suggestions']['enabled'] = 0;
398 $this->fields['accept_booth_suggestions']['enabled'] = 0;
399 $this->fields['price_registration']['enabled'] = 0;
400 $this->fields['price_booth']['enabled'] = 0;
401 $this->fields['max_attendees']['enabled'] = 0;
402 }
403 }
404
412 public function create($user, $notrigger = 0)
413 {
414 $error = 0;
415 $ret = 0;
416
417 $now = dol_now();
418
419 // Clean parameters
420 $this->note_private = dol_substr($this->note_private, 0, 65535);
421 $this->note_public = dol_substr($this->note_public, 0, 65535);
422
423 // Check parameters
424 if (!trim($this->ref)) {
425 $this->error = 'ErrorFieldsRequired';
426 dol_syslog(get_class($this)."::create error -1 ref null", LOG_ERR);
427 return -1;
428 }
429 if (getDolGlobalString('PROJECT_THIRDPARTY_REQUIRED') && !($this->socid > 0)) {
430 $this->error = 'ErrorFieldsRequired';
431 dol_syslog(get_class($this)."::create error -1 thirdparty not defined and option PROJECT_THIRDPARTY_REQUIRED is set", LOG_ERR);
432 return -1;
433 }
434
435 // Create project
436 $this->db->begin();
437
438 $sql = "INSERT INTO ".MAIN_DB_PREFIX."projet (";
439 $sql .= "ref";
440 $sql .= ", fk_project";
441 $sql .= ", title";
442 $sql .= ", description";
443 $sql .= ", fk_soc";
444 $sql .= ", fk_user_creat";
445 $sql .= ", fk_statut";
446 $sql .= ", fk_opp_status";
447 $sql .= ", opp_percent";
448 $sql .= ", public";
449 $sql .= ", datec";
450 $sql .= ", dateo";
451 $sql .= ", datee";
452 $sql .= ", opp_amount";
453 $sql .= ", budget_amount";
454 $sql .= ", usage_opportunity";
455 $sql .= ", usage_task";
456 $sql .= ", usage_bill_time";
457 $sql .= ", usage_organize_event";
458 $sql .= ", accept_conference_suggestions";
459 $sql .= ", accept_booth_suggestions";
460 $sql .= ", price_registration";
461 $sql .= ", price_booth";
462 $sql .= ", max_attendees";
463 $sql .= ", date_start_event";
464 $sql .= ", date_end_event";
465 $sql .= ", location";
466 $sql .= ", email_msgid";
467 $sql .= ", note_private";
468 $sql .= ", note_public";
469 $sql .= ", entity";
470 $sql .= ", ip";
471 $sql .= ") VALUES (";
472 $sql .= "'".$this->db->escape($this->ref)."'";
473 $sql .= ", ".($this->fk_project ? ((int) $this->fk_project) : "null");
474 $sql .= ", '".$this->db->escape($this->title)."'";
475 $sql .= ", '".$this->db->escape($this->description)."'";
476 $sql .= ", ".($this->socid > 0 ? $this->socid : "null");
477 $sql .= ", ".((int) $user->id);
478 $sql .= ", ".(is_numeric($this->statut) ? ((int) $this->statut) : '0');
479 $sql .= ", ".((is_numeric($this->opp_status) && $this->opp_status > 0) ? ((int) $this->opp_status) : 'NULL');
480 $sql .= ", ".(is_numeric($this->opp_percent) ? ((int) $this->opp_percent) : 'NULL');
481 $sql .= ", ".($this->public ? 1 : 0);
482 $sql .= ", '".$this->db->idate($now)."'";
483 $sql .= ", ".($this->date_start != '' ? "'".$this->db->idate($this->date_start)."'" : 'null');
484 $sql .= ", ".($this->date_end != '' ? "'".$this->db->idate($this->date_end)."'" : 'null');
485 $sql .= ", ".(strcmp($this->opp_amount, '') ? price2num($this->opp_amount) : 'null');
486 $sql .= ", ".(strcmp((string) $this->budget_amount, '') ? price2num($this->budget_amount) : 'null');
487 $sql .= ", ".($this->usage_opportunity ? 1 : 0);
488 $sql .= ", ".($this->usage_task ? 1 : 0);
489 $sql .= ", ".($this->usage_bill_time ? 1 : 0);
490 $sql .= ", ".($this->usage_organize_event ? 1 : 0);
491 $sql .= ", ".($this->accept_conference_suggestions ? 1 : 0);
492 $sql .= ", ".($this->accept_booth_suggestions ? 1 : 0);
493 $sql .= ", ".(strcmp((string) $this->price_registration, '') ? price2num($this->price_registration) : 'null');
494 $sql .= ", ".(strcmp((string) $this->price_booth, '') ? price2num($this->price_booth) : 'null');
495 $sql .= ", ".(strcmp((string) $this->max_attendees, '') ? ((int) $this->max_attendees) : 'null');
496 $sql .= ", ".($this->date_start_event != '' ? "'".$this->db->idate($this->date_start_event)."'" : 'null');
497 $sql .= ", ".($this->date_end_event != '' ? "'".$this->db->idate($this->date_end_event)."'" : 'null');
498 $sql .= ", ".($this->location ? "'".$this->db->escape($this->location)."'" : 'null');
499 $sql .= ", ".($this->email_msgid ? "'".$this->db->escape($this->email_msgid)."'" : 'null');
500 $sql .= ", ".($this->note_private ? "'".$this->db->escape($this->note_private)."'" : 'null');
501 $sql .= ", ".($this->note_public ? "'".$this->db->escape($this->note_public)."'" : 'null');
502 $sql .= ", ".setEntity($this);
503 $sql .= ", ".(!isset($this->ip) ? 'NULL' : "'".$this->db->escape($this->ip)."'");
504 $sql .= ")";
505
506 dol_syslog(get_class($this)."::create", LOG_DEBUG);
507 $resql = $this->db->query($sql);
508 if ($resql) {
509 $this->id = $this->db->last_insert_id(MAIN_DB_PREFIX."projet");
510 $ret = $this->id;
511
512 if (!$notrigger) {
513 // Call trigger
514 $result = $this->call_trigger('PROJECT_CREATE', $user);
515 if ($result < 0) {
516 $error++;
517 }
518 // End call triggers
519 }
520 } else {
521 $this->error = $this->db->lasterror();
522 $error++;
523 }
524
525 // Update extrafield
526 if (!$error) {
527 $result = $this->insertExtraFields();
528 if ($result < 0) {
529 $error++;
530 }
531 }
532
533 if (!$error && (getDolGlobalString('MAIN_DISABLEDRAFTSTATUS') || getDolGlobalString('MAIN_DISABLEDRAFTSTATUS_PROJECT'))) {
534 $res = $this->setValid($user);
535 if ($res < 0) {
536 $error++;
537 }
538 }
539
540 if (!$error) {
541 $this->db->commit();
542 return $ret;
543 } else {
544 $this->db->rollback();
545 return -1;
546 }
547 }
548
556 public function update($user, $notrigger = 0)
557 {
558 global $langs, $conf;
559
560 $error = 0;
561
562 // Clean parameters
563 $this->title = trim($this->title);
564 $this->description = trim($this->description);
565 if ($this->opp_amount < 0) {
566 $this->opp_amount = '';
567 }
568 if ($this->opp_percent < 0) {
569 $this->opp_percent = '';
570 }
571 if ($this->date_end && $this->date_end < $this->date_start) {
572 $this->error = $langs->trans("ErrorDateEndLowerThanDateStart");
573 $this->errors[] = $this->error;
574 $this->db->rollback();
575 dol_syslog(get_class($this)."::update error -3 ".$this->error, LOG_ERR);
576 return -3;
577 }
578
579 $this->entity = ((isset($this->entity) && is_numeric($this->entity)) ? $this->entity : $conf->entity);
580
581 if (dol_strlen(trim($this->ref)) > 0) {
582 $this->db->begin();
583
584 $sql = "UPDATE ".MAIN_DB_PREFIX."projet SET";
585 $sql .= " ref='".$this->db->escape($this->ref)."'";
586 $sql .= ", fk_project=".($this->fk_project ? ((int) $this->fk_project) : "null");
587 $sql .= ", title = '".$this->db->escape($this->title)."'";
588 $sql .= ", description = '".$this->db->escape($this->description)."'";
589 $sql .= ", fk_soc = ".($this->socid > 0 ? $this->socid : "null");
590 $sql .= ", fk_statut = ".((int) $this->statut);
591 $sql .= ", fk_opp_status = ".((is_numeric($this->opp_status) && $this->opp_status > 0) ? $this->opp_status : 'null');
592 $sql .= ", opp_percent = ".((is_numeric($this->opp_percent) && $this->opp_percent != '') ? $this->opp_percent : 'null');
593 $sql .= ", public = ".($this->public ? 1 : 0);
594 $sql .= ", datec = ".($this->date_c != '' ? "'".$this->db->idate($this->date_c)."'" : 'null');
595 $sql .= ", dateo = ".($this->date_start != '' ? "'".$this->db->idate($this->date_start)."'" : 'null');
596 $sql .= ", datee = ".($this->date_end != '' ? "'".$this->db->idate($this->date_end)."'" : 'null');
597 $sql .= ", date_close = ".($this->date_close != '' ? "'".$this->db->idate($this->date_close)."'" : 'null');
598 $sql .= ", note_public = ".($this->note_public ? "'".$this->db->escape($this->note_public)."'" : "null");
599 $sql .= ", note_private = ".($this->note_private ? "'".$this->db->escape($this->note_private)."'" : "null");
600 $sql .= ", fk_user_close = ".($this->fk_user_close > 0 ? $this->fk_user_close : "null");
601 $sql .= ", opp_amount = ".(strcmp($this->opp_amount, '') ? price2num($this->opp_amount) : "null");
602 $sql .= ", budget_amount = ".(strcmp($this->budget_amount, '') ? price2num($this->budget_amount) : "null");
603 $sql .= ", fk_user_modif = ".$user->id;
604 $sql .= ", usage_opportunity = ".($this->usage_opportunity ? 1 : 0);
605 $sql .= ", usage_task = ".($this->usage_task ? 1 : 0);
606 $sql .= ", usage_bill_time = ".($this->usage_bill_time ? 1 : 0);
607 $sql .= ", usage_organize_event = ".($this->usage_organize_event ? 1 : 0);
608 $sql .= ", accept_conference_suggestions = ".($this->accept_conference_suggestions ? 1 : 0);
609 $sql .= ", accept_booth_suggestions = ".($this->accept_booth_suggestions ? 1 : 0);
610 $sql .= ", price_registration = ".(isset($this->price_registration) && strcmp($this->price_registration, '') ? price2num($this->price_registration) : "null");
611 $sql .= ", price_booth = ".(isset($this->price_booth) && strcmp((string) $this->price_booth, '') ? price2num($this->price_booth) : "null");
612 $sql .= ", max_attendees = ".(strcmp((string) $this->max_attendees, '') ? (int) $this->max_attendees : "null");
613 $sql .= ", date_start_event = ".($this->date_start_event != '' ? "'".$this->db->idate($this->date_start_event)."'" : 'null');
614 $sql .= ", date_end_event = ".($this->date_end_event != '' ? "'".$this->db->idate($this->date_end_event)."'" : 'null');
615 $sql .= ", location = '".$this->db->escape($this->location)."'";
616 $sql .= ", entity = ".((int) $this->entity);
617 $sql .= " WHERE rowid = ".((int) $this->id);
618
619 dol_syslog(get_class($this)."::update", LOG_DEBUG);
620 $resql = $this->db->query($sql);
621 if ($resql) {
622 // Update extrafield
623 if (!$error) {
624 $result = $this->insertExtraFields();
625 if ($result < 0) {
626 $error++;
627 }
628 }
629
630 if (!$error && !$notrigger) {
631 // Call trigger
632 $result = $this->call_trigger('PROJECT_MODIFY', $user);
633 if ($result < 0) {
634 $error++;
635 }
636 // End call triggers
637 }
638
639 if (!$error && (is_object($this->oldcopy) && $this->oldcopy->ref !== $this->ref)) {
640 // We remove directory
641 if ($conf->project->dir_output) {
642 $olddir = $conf->project->dir_output."/".dol_sanitizeFileName($this->oldcopy->ref);
643 $newdir = $conf->project->dir_output."/".dol_sanitizeFileName($this->ref);
644 if (file_exists($olddir)) {
645 include_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
646 $res = @rename($olddir, $newdir);
647 if (!$res) {
648 $langs->load("errors");
649 $this->error = $langs->trans('ErrorFailToRenameDir', $olddir, $newdir);
650 $error++;
651 }
652 }
653 }
654 }
655 if (!$error) {
656 $this->db->commit();
657 $result = 1;
658 } else {
659 $this->db->rollback();
660 $result = -1;
661 }
662 } else {
663 $this->error = $this->db->lasterror();
664 $this->errors[] = $this->error;
665 $this->db->rollback();
666 if ($this->db->lasterrno() == 'DB_ERROR_RECORD_ALREADY_EXISTS') {
667 $result = -4;
668 } else {
669 $result = -2;
670 }
671 dol_syslog(get_class($this)."::update error ".$result." ".$this->error, LOG_ERR);
672 }
673 } else {
674 dol_syslog(get_class($this)."::update ref null");
675 $result = -1;
676 }
677
678 return $result;
679 }
680
690 public function fetch($id, $ref = '', $ref_ext = '', $email_msgid = '')
691 {
692 if (empty($id) && empty($ref) && empty($ref_ext) && empty($email_msgid)) {
693 dol_syslog(get_class($this)."::fetch Bad parameters", LOG_WARNING);
694 return -1;
695 }
696
697 $sql = "SELECT rowid, entity, fk_project, ref, title, description, public, datec, opp_amount, budget_amount,";
698 $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,";
699 $sql .= " note_private, note_public, model_pdf, usage_opportunity, usage_task, usage_bill_time, usage_organize_event, email_msgid,";
700 $sql .= " accept_conference_suggestions, accept_booth_suggestions, price_registration, price_booth, max_attendees, date_start_event, date_end_event, location, extraparams";
701 $sql .= " FROM ".MAIN_DB_PREFIX."projet";
702 if (!empty($id)) {
703 $sql .= " WHERE rowid = ".((int) $id);
704 } else {
705 $sql .= " WHERE entity IN (".getEntity('project').")";
706 if (!empty($ref)) {
707 $sql .= " AND ref = '".$this->db->escape($ref)."'";
708 } elseif (!empty($ref_ext)) {
709 $sql .= " AND ref_ext = '".$this->db->escape($ref_ext)."'";
710 } else {
711 $sql .= " AND email_msgid = '".$this->db->escape($email_msgid)."'";
712 }
713 }
714
715 dol_syslog(get_class($this)."::fetch", LOG_DEBUG);
716 $resql = $this->db->query($sql);
717 if ($resql) {
718 $num_rows = $this->db->num_rows($resql);
719
720 if ($num_rows) {
721 $obj = $this->db->fetch_object($resql);
722
723 $this->id = $obj->rowid;
724 $this->entity = $obj->entity;
725 $this->ref = $obj->ref;
726 $this->fk_project = $obj->fk_project;
727 $this->title = $obj->title;
728 $this->description = $obj->description;
729 $this->date_c = $this->db->jdate($obj->datec);
730 $this->datec = $this->db->jdate($obj->datec); // TODO deprecated
731 $this->date_m = $this->db->jdate($obj->tms);
732 $this->datem = $this->db->jdate($obj->tms); // TODO deprecated
733 $this->date_start = $this->db->jdate($obj->date_start);
734 $this->date_end = $this->db->jdate($obj->date_end);
735 $this->date_close = $this->db->jdate($obj->date_close);
736 $this->note_private = $obj->note_private;
737 $this->note_public = $obj->note_public;
738 $this->socid = $obj->fk_soc;
739 $this->user_author_id = $obj->fk_user_creat;
740 $this->user_modification_id = $obj->fk_user_modif;
741 $this->user_closing_id = $obj->fk_user_close;
742 $this->public = $obj->public;
743 $this->statut = $obj->status; // deprecated
744 $this->status = $obj->status;
745 $this->opp_status = $obj->fk_opp_status;
746 $this->opp_amount = $obj->opp_amount;
747 $this->opp_percent = $obj->opp_percent;
748 $this->budget_amount = $obj->budget_amount;
749 $this->model_pdf = $obj->model_pdf;
750 $this->usage_opportunity = (int) $obj->usage_opportunity;
751 $this->usage_task = (int) $obj->usage_task;
752 $this->usage_bill_time = (int) $obj->usage_bill_time;
753 $this->usage_organize_event = (int) $obj->usage_organize_event;
754 $this->accept_conference_suggestions = (int) $obj->accept_conference_suggestions;
755 $this->accept_booth_suggestions = (int) $obj->accept_booth_suggestions;
756 $this->price_registration = $obj->price_registration;
757 $this->price_booth = $obj->price_booth;
758 $this->max_attendees = $obj->max_attendees;
759 $this->date_start_event = $this->db->jdate($obj->date_start_event);
760 $this->date_end_event = $this->db->jdate($obj->date_end_event);
761 $this->location = $obj->location;
762 $this->email_msgid = $obj->email_msgid;
763 $this->extraparams = !empty($obj->extraparams) ? (array) json_decode($obj->extraparams, true) : array();
764
765 $this->db->free($resql);
766
767 // Retrieve all extrafield
768 // fetch optionals attributes and labels
769 $this->fetch_optionals();
770
771 return 1;
772 }
773
774 $this->db->free($resql);
775
776 return 0;
777 } else {
778 $this->error = $this->db->lasterror();
779 $this->errors[] = $this->db->lasterror();
780 return -1;
781 }
782 }
783
792 public function fetchAndSetSubstitution($id, $key, $fetched = false)
793 {
794 $substitution = '';
795
796 if ($fetched === false) {
797 $res = $this->fetch($id);
798 if ($res > 0) {
799 $fetched = true;
800 }
801 }
802
803 if ($fetched === true) {
804 if ($key == '__PROJECT_ID__') {
805 $substitution = ($this->id > 0 ? $this->id : '');
806 } elseif ($key == '__PROJECT_REF__') {
807 $substitution = $this->ref;
808 } elseif ($key == '__PROJECT_NAME__') {
809 $substitution = $this->title;
810 }
811 }
812
813 return $substitution;
814 }
815
816 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
828 public function get_element_list($type, $tablename, $datefieldname = '', $date_start = null, $date_end = null, $projectkey = 'fk_projet')
829 {
830 // phpcs:enable
831
832 global $hookmanager;
833
834 $elements = array();
835
836 if ($this->id <= 0) {
837 return $elements;
838 }
839
840 $ids = $this->id;
841
842 if ($type == 'agenda') {
843 $sql = "SELECT id as rowid FROM ".MAIN_DB_PREFIX."actioncomm WHERE fk_project IN (".$this->db->sanitize($ids).") AND entity IN (".getEntity('agenda').")";
844 } elseif ($type == 'expensereport') {
845 $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).")";
846 } elseif ($type == 'project_task') {
847 $sql = "SELECT DISTINCT pt.rowid FROM ".MAIN_DB_PREFIX."projet_task as pt WHERE pt.fk_projet IN (".$this->db->sanitize($ids).")";
848 } elseif ($type == 'element_time') { // Case we want to duplicate line foreach user
849 $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).")";
850 } elseif ($type == 'stocktransfer_stocktransfer') {
851 $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";
852 } elseif ($type == 'loan') {
853 $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).")";
854 } else {
855 $sql = "SELECT rowid FROM ".MAIN_DB_PREFIX.$tablename." WHERE ".$projectkey." IN (".$this->db->sanitize($ids).") AND entity IN (".getEntity($type).")";
856 }
857
858 if (isDolTms($date_start) && $type == 'loan') {
859 $sql .= " AND (dateend > '".$this->db->idate($date_start)."' OR dateend IS NULL)";
860 } elseif (isDolTms($date_start) && ($type != 'project_task')) { // For table project_taks, we want the filter on date apply on project_time_spent table
861 if (empty($datefieldname) && !empty($this->table_element_date)) {
862 $datefieldname = $this->table_element_date;
863 }
864 if (empty($datefieldname)) {
865 return 'Error this object has no date field defined';
866 }
867 $sql .= " AND (".$datefieldname." >= '".$this->db->idate($date_start)."' OR ".$datefieldname." IS NULL)";
868 }
869
870 if (isDolTms($date_end) && $type == 'loan') {
871 $sql .= " AND (datestart < '".$this->db->idate($date_end)."' OR datestart IS NULL)";
872 } elseif (isDolTms($date_end) && ($type != 'project_task')) { // For table project_taks, we want the filter on date apply on project_time_spent table
873 if (empty($datefieldname) && !empty($this->table_element_date)) {
874 $datefieldname = $this->table_element_date;
875 }
876 if (empty($datefieldname)) {
877 return 'Error this object has no date field defined';
878 }
879 $sql .= " AND (".$datefieldname." <= '".$this->db->idate($date_end)."' OR ".$datefieldname." IS NULL)";
880 }
881
882 $parameters = array(
883 'sql' => $sql,
884 'type' => $type,
885 'tablename' => $tablename,
886 'datefieldname' => $datefieldname,
887 'dates' => $date_start,
888 'datee' => $date_end,
889 'fk_projet' => $projectkey,
890 'ids' => $ids,
891 );
892 $reshook = $hookmanager->executeHooks('getElementList', $parameters);
893 if ($reshook > 0) {
894 $sql = $hookmanager->resPrint;
895 } else {
896 $sql .= $hookmanager->resPrint;
897 }
898
899 if (!$sql) {
900 return -1;
901 }
902
903 //print $sql;
904 dol_syslog(get_class($this)."::get_element_list", LOG_DEBUG);
905 $result = $this->db->query($sql);
906 if ($result) {
907 $nump = $this->db->num_rows($result);
908 if ($nump) {
909 $i = 0;
910 while ($i < $nump) {
911 $obj = $this->db->fetch_object($result);
912
913 $elements[$i] = $obj->rowid.(empty($obj->fk_user) ? '' : '_'.$obj->fk_user);
914
915 $i++;
916 }
917 $this->db->free($result);
918 }
919
920 /* Return array even if empty*/
921 return $elements;
922 } else {
923 dol_print_error($this->db);
924 }
925 return -1;
926 }
927
935 public function delete($user, $notrigger = 0)
936 {
937 global $langs, $conf;
938 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
939
940 $error = 0;
941
942 $this->db->begin();
943
944 if (!$error) {
945 // Delete linked contacts
946 $res = $this->delete_linked_contact();
947 if ($res < 0) {
948 $this->error = 'ErrorFailToDeleteLinkedContact';
949 //$error++;
950 $this->db->rollback();
951 return 0;
952 }
953 }
954
955 // Set fk_projet into elements to null
956 $listoftables = array(
957 'propal' => 'fk_projet', 'commande' => 'fk_projet', 'facture' => 'fk_projet',
958 'supplier_proposal' => 'fk_projet', 'commande_fournisseur' => 'fk_projet', 'facture_fourn' => 'fk_projet',
959 'expensereport_det' => 'fk_projet', 'contrat' => 'fk_projet',
960 'fichinter' => 'fk_projet',
961 'don' => array('field' => 'fk_projet', 'module' => 'don'),
962 'actioncomm' => 'fk_project',
963 'mrp_mo' => 'fk_project',
964 'entrepot' => 'fk_project'
965 );
966 foreach ($listoftables as $key => $value) {
967 if (is_array($value)) {
968 if (!isModEnabled($value['module'])) {
969 continue;
970 }
971 $fieldname = $value['field'];
972 } else {
973 $fieldname = $value;
974 }
975 $sql = "UPDATE ".MAIN_DB_PREFIX.$key." SET ".$fieldname." = NULL where ".$fieldname." = ".((int) $this->id);
976
977 $resql = $this->db->query($sql);
978 if (!$resql) {
979 $this->errors[] = $this->db->lasterror();
980 $error++;
981 break;
982 }
983 }
984
985 // Remove linked categories.
986 if (!$error) {
987 $sql = "DELETE FROM ".MAIN_DB_PREFIX."categorie_project";
988 $sql .= " WHERE fk_project = ".((int) $this->id);
989
990 $result = $this->db->query($sql);
991 if (!$result) {
992 $error++;
993 $this->errors[] = $this->db->lasterror();
994 }
995 }
996
997 // Fetch tasks
998 $this->getLinesArray($user, 0);
999
1000 // Delete tasks
1001 $ret = $this->deleteTasks($user);
1002 if ($ret < 0) {
1003 $error++;
1004 }
1005
1006
1007 // Delete all child tables
1008 if (!$error) {
1009 $elements = array('categorie_project'); // elements to delete. TODO Make goodway to delete
1010 foreach ($elements as $table) {
1011 if (!$error) {
1012 $sql = "DELETE FROM ".MAIN_DB_PREFIX.$table;
1013 $sql .= " WHERE fk_project = ".((int) $this->id);
1014
1015 $result = $this->db->query($sql);
1016 if (!$result) {
1017 $error++;
1018 $this->errors[] = $this->db->lasterror();
1019 }
1020 }
1021 }
1022 }
1023
1024 if (!$error) {
1025 $sql = "DELETE FROM ".MAIN_DB_PREFIX."projet_extrafields";
1026 $sql .= " WHERE fk_object = ".((int) $this->id);
1027
1028 $resql = $this->db->query($sql);
1029 if (!$resql) {
1030 $this->errors[] = $this->db->lasterror();
1031 $error++;
1032 }
1033 }
1034
1035 // Delete project
1036 if (!$error) {
1037 $sql = "DELETE FROM ".MAIN_DB_PREFIX."projet";
1038 $sql .= " WHERE rowid=".((int) $this->id);
1039
1040 $resql = $this->db->query($sql);
1041 if (!$resql) {
1042 $this->errors[] = $langs->trans("CantRemoveProject", $langs->transnoentitiesnoconv("ProjectOverview"));
1043 $error++;
1044 }
1045 }
1046
1047
1048
1049 if (empty($error)) {
1050 // We remove directory
1051 $projectref = dol_sanitizeFileName($this->ref);
1052 if ($conf->project->dir_output) {
1053 $dir = $conf->project->dir_output."/".$projectref;
1054 if (file_exists($dir)) {
1055 $res = @dol_delete_dir_recursive($dir);
1056 if (!$res) {
1057 $this->errors[] = 'ErrorFailToDeleteDir';
1058 $error++;
1059 }
1060 }
1061 }
1062
1063 if (!$notrigger) {
1064 // Call trigger
1065 $result = $this->call_trigger('PROJECT_DELETE', $user);
1066
1067 if ($result < 0) {
1068 $error++;
1069 }
1070 // End call triggers
1071 }
1072 }
1073
1074 if (empty($error)) {
1075 $this->db->commit();
1076 return 1;
1077 } else {
1078 foreach ($this->errors as $errmsg) {
1079 dol_syslog(get_class($this)."::delete ".$errmsg, LOG_ERR);
1080 $this->error .= ($this->error ? ', '.$errmsg : $errmsg);
1081 }
1082 dol_syslog(get_class($this)."::delete ".$this->error, LOG_ERR);
1083 $this->db->rollback();
1084 return -1;
1085 }
1086 }
1087
1096 public function getElementCount($type, $tablename, $projectkey = 'fk_projet')
1097 {
1098 if ($this->id <= 0) {
1099 return 0;
1100 }
1101
1102 if ($type == 'agenda') {
1103 $sql = "SELECT COUNT(id) as nb FROM ".MAIN_DB_PREFIX."actioncomm WHERE fk_project = ".((int) $this->id)." AND entity IN (".getEntity('agenda').")";
1104 } elseif ($type == 'expensereport') {
1105 $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);
1106 } elseif ($type == 'project_task') {
1107 $sql = "SELECT DISTINCT COUNT(pt.rowid) as nb FROM ".MAIN_DB_PREFIX."projet_task as pt WHERE pt.fk_projet = ".((int) $this->id);
1108 } elseif ($type == 'element_time') { // Case we want to duplicate line foreach user
1109 $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);
1110 } elseif ($type == 'stock_mouvement') {
1111 $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";
1112 } elseif ($type == 'loan') {
1113 $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);
1114 } else {
1115 $sql = "SELECT COUNT(rowid) as nb FROM ".MAIN_DB_PREFIX.$tablename." WHERE ".$projectkey." = ".((int) $this->id)." AND entity IN (".getEntity($type).")";
1116 }
1117
1118 $result = $this->db->query($sql);
1119
1120 if (!$result) {
1121 return 0;
1122 }
1123
1124 $obj = $this->db->fetch_object($result);
1125
1126 $this->db->free($result);
1127
1128 return $obj->nb;
1129 }
1130
1137 public function deleteTasks($user)
1138 {
1139 $countTasks = count($this->lines);
1140 $deleted = false;
1141 if ($countTasks) {
1142 foreach ($this->lines as $task) {
1143 if ($task->hasChildren() <= 0) { // If there is no children (or error to detect them)
1144 $deleted = true;
1145 $ret = $task->delete($user);
1146 if ($ret <= 0) {
1147 $this->errors[] = $this->db->lasterror();
1148 return -1;
1149 }
1150 }
1151 }
1152 }
1153 $this->getLinesArray($user);
1154 if ($deleted && count($this->lines) < $countTasks) {
1155 if (count($this->lines)) {
1156 $this->deleteTasks($user);
1157 }
1158 }
1159
1160 return 1;
1161 }
1162
1170 public function setValid($user, $notrigger = 0)
1171 {
1172 global $langs;
1173
1174 $error = 0;
1175
1176 // Protection
1177 if ($this->status == self::STATUS_VALIDATED) {
1178 dol_syslog(get_class($this)."::validate action abandoned: already validated", LOG_WARNING);
1179 return 0;
1180 }
1181
1182 // Check parameters
1183 if (preg_match('/^'.preg_quote($langs->trans("CopyOf").' ').'/', $this->title)) {
1184 $this->error = $langs->trans("ErrorFieldFormat", $langs->transnoentities("Label")).'. '.$langs->trans('RemoveString', $langs->transnoentitiesnoconv("CopyOf"));
1185 return -1;
1186 }
1187
1188 $this->db->begin();
1189
1190 $sql = "UPDATE ".MAIN_DB_PREFIX."projet";
1191 $sql .= " SET fk_statut = ".self::STATUS_VALIDATED;
1192 $sql .= " WHERE rowid = ".((int) $this->id);
1193 //$sql .= " AND entity = ".((int) $conf->entity); // Disabled, when we use the ID for the where, we must not add any other search condition
1194
1195 dol_syslog(get_class($this)."::setValid", LOG_DEBUG);
1196 $resql = $this->db->query($sql);
1197 if ($resql) {
1198 // Call trigger
1199 if (empty($notrigger)) {
1200 $result = $this->call_trigger('PROJECT_VALIDATE', $user);
1201 if ($result < 0) {
1202 $error++;
1203 }
1204 // End call triggers
1205 }
1206
1207 if (!$error) {
1208 $this->statut = 1;
1209 $this->status = 1;
1210 $this->db->commit();
1211 return 1;
1212 } else {
1213 $this->db->rollback();
1214 $this->error = implode(',', $this->errors);
1215 dol_syslog(get_class($this)."::setValid ".$this->error, LOG_ERR);
1216 return -1;
1217 }
1218 } else {
1219 $this->db->rollback();
1220 $this->error = $this->db->lasterror();
1221 return -1;
1222 }
1223 }
1224
1231 public function setClose($user)
1232 {
1233 $now = dol_now();
1234
1235 $error = 0;
1236
1237 if ($this->statut != self::STATUS_CLOSED) {
1238 $this->db->begin();
1239
1240 $sql = "UPDATE ".MAIN_DB_PREFIX."projet";
1241 $sql .= " SET fk_statut = ".self::STATUS_CLOSED.", fk_user_close = ".((int) $user->id).", date_close = '".$this->db->idate($now)."'";
1242 $sql .= " WHERE rowid = ".((int) $this->id);
1243 $sql .= " AND fk_statut = ".self::STATUS_VALIDATED;
1244
1245 if (getDolGlobalString('PROJECT_USE_OPPORTUNITIES')) {
1246 // TODO What to do if fk_opp_status is not code 'WON' or 'LOST'
1247 }
1248
1249 dol_syslog(get_class($this)."::setClose", LOG_DEBUG);
1250 $resql = $this->db->query($sql);
1251 if ($resql) {
1252 // Call trigger
1253 $result = $this->call_trigger('PROJECT_CLOSE', $user);
1254 if ($result < 0) {
1255 $error++;
1256 }
1257 // End call triggers
1258
1259 if (!$error) {
1260 $this->statut = 2;
1261 $this->db->commit();
1262 return 1;
1263 } else {
1264 $this->db->rollback();
1265 $this->error = implode(',', $this->errors);
1266 dol_syslog(get_class($this)."::setClose ".$this->error, LOG_ERR);
1267 return -1;
1268 }
1269 } else {
1270 $this->db->rollback();
1271 $this->error = $this->db->lasterror();
1272 return -1;
1273 }
1274 }
1275
1276 return 0;
1277 }
1278
1285 public function getLibStatut($mode = 0)
1286 {
1287 return $this->LibStatut(isset($this->statut) ? $this->statut : $this->status, $mode);
1288 }
1289
1290 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1298 public function LibStatut($status, $mode = 0)
1299 {
1300 // phpcs:enable
1301 global $langs;
1302
1303 if (is_null($status)) {
1304 return '';
1305 }
1306
1307 $statustrans = array(
1308 0 => 'status0',
1309 1 => 'status4',
1310 2 => 'status6',
1311 );
1312
1313 $statusClass = 'status0';
1314 if (!empty($statustrans[$status])) {
1315 $statusClass = $statustrans[$status];
1316 }
1317
1318 return dolGetStatus($langs->transnoentitiesnoconv($this->labelStatus[$status]), $langs->transnoentitiesnoconv($this->labelStatusShort[$status]), '', $statusClass, $mode);
1319 }
1320
1328 public function getTooltipContentArray($params)
1329 {
1330 global $conf, $langs;
1331
1332 $langs->load('projects');
1333 $option = $params['option'] ?? '';
1334 $moreinpopup = $params['moreinpopup'] ?? '';
1335
1336 $datas = [];
1337 if ($option != 'nolink') {
1338 $datas['picto'] = img_picto('', $this->picto, 'class="pictofixedwidth"').' <u class="paddingrightonly">'.$langs->trans("Project").'</u>';
1339 }
1340 if (isset($this->status)) {
1341 $datas['picto'] .= ' '.$this->getLibStatut(5);
1342 }
1343 $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
1344 $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
1345 if (isset($this->public)) {
1346 $datas['visibility'] = '<br><b>'.$langs->trans("Visibility").":</b> ";
1347 $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"));
1348 }
1349 if (!empty($this->thirdparty_name)) {
1350 $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
1351 }
1352 if (!empty($this->date_start)) {
1353 $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
1354 }
1355 if (!empty($this->date_end)) {
1356 $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
1357 }
1358 if ($moreinpopup) {
1359 $datas['moreinpopup'] = '<br>'.$moreinpopup;
1360 }
1361
1362 return $datas;
1363 }
1364
1379 public function getNomUrl($withpicto = 0, $option = '', $addlabel = 0, $moreinpopup = '', $sep = ' - ', $notooltip = 0, $save_lastsearch_value = -1, $morecss = '', $save_pageforbacktolist = '')
1380 {
1381 global $conf, $langs, $user, $hookmanager;
1382
1383 if (!empty($conf->dol_no_mouse_hover)) {
1384 $notooltip = 1; // Force disable tooltips
1385 }
1386
1387 $result = '';
1388 if (getDolGlobalString('PROJECT_OPEN_ALWAYS_ON_TAB')) {
1389 $option = getDolGlobalString('PROJECT_OPEN_ALWAYS_ON_TAB');
1390 }
1391 $params = [
1392 'id' => $this->id,
1393 'objecttype' => $this->element,
1394 'moreinpopup' => $moreinpopup,
1395 'option' => $option,
1396 ];
1397 $classfortooltip = 'classfortooltip';
1398 $dataparams = '';
1399 if (getDolGlobalInt('MAIN_ENABLE_AJAX_TOOLTIP')) {
1400 $classfortooltip = 'classforajaxtooltip';
1401 $dataparams = ' data-params="'.dol_escape_htmltag(json_encode($params)).'"';
1402 $label = '';
1403 } else {
1404 $label = implode($this->getTooltipContentArray($params));
1405 }
1406
1407 $url = '';
1408 if ($option != 'nolink') {
1409 if (preg_match('/\.php$/', $option)) {
1410 $url = dol_buildpath($option, 1).'?id='.$this->id;
1411 } elseif ($option == 'task') {
1412 $url = DOL_URL_ROOT.'/projet/tasks.php?id='.$this->id;
1413 } elseif ($option == 'preview') {
1414 $url = DOL_URL_ROOT.'/projet/element.php?id='.$this->id;
1415 } elseif ($option == 'eventorganization') {
1416 $url = DOL_URL_ROOT.'/eventorganization/conferenceorbooth_list.php?projectid='.$this->id;
1417 } else {
1418 $url = DOL_URL_ROOT.'/projet/card.php?id='.$this->id;
1419 }
1420 // Add param to save lastsearch_values or not
1421 $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
1422 if ($save_lastsearch_value == -1 && isset($_SERVER["PHP_SELF"]) && preg_match('/list\.php/', $_SERVER["PHP_SELF"])) {
1423 $add_save_lastsearch_values = 1;
1424 }
1425 if ($add_save_lastsearch_values) {
1426 $url .= '&save_lastsearch_values=1';
1427 }
1428 $add_save_backpagefor = ($save_pageforbacktolist ? 1 : 0);
1429 if ($add_save_backpagefor) {
1430 $url .= "&save_pageforbacktolist=".urlencode($save_pageforbacktolist);
1431 }
1432 }
1433
1434 $linkclose = '';
1435 if (empty($notooltip) && $user->hasRight('projet', 'lire')) {
1436 if (getDolGlobalString('MAIN_OPTIMIZEFORTEXTBROWSER')) {
1437 $label = $langs->trans("ShowProject");
1438 $linkclose .= ' alt="'.dol_escape_htmltag($label, 1).'"';
1439 }
1440 $linkclose .= ($label ? ' title="'.dol_escape_htmltag($label, 1).'"' : ' title="tocomplete"');
1441 $linkclose .= $dataparams.' class="'.$classfortooltip.($morecss ? ' '.$morecss : '').'"';
1442 } else {
1443 $linkclose = ($morecss ? ' class="'.$morecss.'"' : '');
1444 }
1445
1446 $picto = 'projectpub';
1447 if (!$this->public) {
1448 $picto = 'project';
1449 }
1450
1451 $linkstart = '<a href="'.$url.'"';
1452 $linkstart .= $linkclose.'>';
1453 $linkend = '</a>';
1454
1455 $result .= $linkstart;
1456 if ($withpicto) {
1457 $result .= img_object(($notooltip ? '' : $label), $picto, 'class="pictofixedwidth em088"', 0, 0, $notooltip ? 0 : 1);
1458 }
1459 if ($withpicto != 2) {
1460 $result .= $this->ref;
1461 }
1462 $result .= $linkend;
1463 if ($withpicto != 2) {
1464 $result .= (($addlabel && $this->title) ? '<span class="opacitymedium">'.$sep.dol_trunc($this->title, ($addlabel > 1 ? $addlabel : 0)).'</span>' : '');
1465 }
1466
1467 global $action;
1468 $hookmanager->initHooks(array('projectdao'));
1469 $parameters = array('id' => $this->id, 'getnomurl' => &$result);
1470 $reshook = $hookmanager->executeHooks('getNomUrl', $parameters, $this, $action); // Note that $action and $object may have been modified by some hooks
1471 if ($reshook > 0) {
1472 $result = $hookmanager->resPrint;
1473 } else {
1474 $result .= $hookmanager->resPrint;
1475 }
1476
1477 return $result;
1478 }
1479
1487 public function initAsSpecimen()
1488 {
1489 global $user, $langs, $conf;
1490
1491 $now = dol_now();
1492
1493 // Initialise parameters
1494 $this->id = 0;
1495 $this->ref = 'SPECIMEN';
1496 $this->entity = $conf->entity;
1497 $this->specimen = 1;
1498 $this->socid = 1;
1499 $this->date_c = $now;
1500 $this->date_m = $now;
1501 $this->date_start = $now;
1502 $this->date_end = $now + (3600 * 24 * 365);
1503 $this->note_public = 'SPECIMEN';
1504 $this->note_private = 'Private Note';
1505 $this->fk_project = 0;
1506 $this->opp_amount = 20000;
1507 $this->budget_amount = 10000;
1508
1509 $this->usage_opportunity = 1;
1510 $this->usage_task = 1;
1511 $this->usage_bill_time = 1;
1512 $this->usage_organize_event = 1;
1513
1514 /*
1515 $nbp = mt_rand(1, 9);
1516 $xnbp = 0;
1517 while ($xnbp < $nbp)
1518 {
1519 $line = new Task($this->db);
1520 $line->fk_project = 0;
1521 $line->label = $langs->trans("Label") . " " . $xnbp;
1522 $line->description = $langs->trans("Description") . " " . $xnbp;
1523
1524 $this->lines[]=$line;
1525 $xnbp++;
1526 }
1527 */
1528
1529 return 1;
1530 }
1531
1539 public function restrictedProjectArea(User $user, $mode = 'read')
1540 {
1541 // To verify role of users
1542 $userAccess = 0;
1543 if (($mode == 'read' && $user->hasRight('projet', 'all', 'lire')) || ($mode == 'write' && $user->hasRight('projet', 'all', 'creer')) || ($mode == 'delete' && $user->hasRight('projet', 'all', 'supprimer'))) {
1544 $userAccess = 1;
1545 } elseif ($this->public && (($mode == 'read' && $user->hasRight('projet', 'lire')) || ($mode == 'write' && $user->hasRight('projet', 'creer')) || ($mode == 'delete' && $user->hasRight('projet', 'supprimer')))) {
1546 $userAccess = 1;
1547 } else { // No access due to permission to read all projects, so we check if we are a contact of project
1548 foreach (array('internal', 'external') as $source) {
1549 $userRole = $this->liste_contact(4, $source);
1550 $num = count($userRole);
1551
1552 $nblinks = 0;
1553 while ($nblinks < $num) {
1554 if ($source == 'internal' && $user->id == $userRole[$nblinks]['id']) { // $userRole[$nblinks]['id'] is id of user (llx_user) for internal contacts
1555 if ($mode == 'read' && $user->hasRight('projet', 'lire')) {
1556 $userAccess++;
1557 }
1558 if ($mode == 'write' && $user->hasRight('projet', 'creer')) {
1559 $userAccess++;
1560 }
1561 if ($mode == 'delete' && $user->hasRight('projet', 'supprimer')) {
1562 $userAccess++;
1563 }
1564 }
1565 if ($source == 'external' && $user->socid > 0 && $user->socid == $userRole[$nblinks]['socid']) { // $userRole[$nblinks]['id'] is id of contact (llx_socpeople) or external contacts
1566 if ($mode == 'read' && $user->hasRight('projet', 'lire')) {
1567 $userAccess++;
1568 }
1569 if ($mode == 'write' && $user->hasRight('projet', 'creer')) {
1570 $userAccess++;
1571 }
1572 if ($mode == 'delete' && $user->hasRight('projet', 'supprimer')) {
1573 $userAccess++;
1574 }
1575 }
1576 $nblinks++;
1577 }
1578 }
1579 //if (empty($nblinks)) // If nobody has permission, we grant creator
1580 //{
1581 // if ((!empty($this->user_author_id) && $this->user_author_id == $user->id))
1582 // {
1583 // $userAccess = 1;
1584 // }
1585 //}
1586 }
1587
1588 return ($userAccess ? $userAccess : -1);
1589 }
1590
1601 public function getProjectsAuthorizedForUser($user, $mode = 0, $list = 0, $socid = 0, $filter = '')
1602 {
1603 $projects = array();
1604 $temp = array();
1605
1606 $sql = "SELECT ".(($mode == 0 || $mode == 1) ? "DISTINCT " : "")."p.rowid, p.ref";
1607 $sql .= " FROM ".MAIN_DB_PREFIX."projet as p";
1608 if ($mode == 0) {
1609 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."element_contact as ec ON ec.element_id = p.rowid";
1610 } elseif ($mode == 1) {
1611 $sql .= ", ".MAIN_DB_PREFIX."element_contact as ec";
1612 } elseif ($mode == 2) {
1613 // No filter. Use this if user has permission to see all project
1614 }
1615 $sql .= " WHERE p.entity IN (".getEntity('project').")";
1616 // Internal users must see project he is contact to even if project linked to a third party he can't see.
1617 //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).")";
1618 if ($socid > 0) {
1619 $sql .= " AND (p.fk_soc IS NULL OR p.fk_soc = 0 OR p.fk_soc = ".((int) $socid).")";
1620 }
1621
1622 // Get id of types of contacts for projects (This list never contains a lot of elements)
1623 $listofprojectcontacttype = array();
1624 $sql2 = "SELECT ctc.rowid, ctc.code FROM ".MAIN_DB_PREFIX."c_type_contact as ctc";
1625 $sql2 .= " WHERE ctc.element = '".$this->db->escape($this->element)."'";
1626 $sql2 .= " AND ctc.source = 'internal'";
1627 $resql = $this->db->query($sql2);
1628 if ($resql) {
1629 while ($obj = $this->db->fetch_object($resql)) {
1630 $listofprojectcontacttype[$obj->rowid] = $obj->code;
1631 }
1632 } else {
1633 dol_print_error($this->db);
1634 }
1635 if (count($listofprojectcontacttype) == 0) {
1636 $listofprojectcontacttype[0] = '0'; // To avoid syntax error if not found
1637 }
1638
1639 if ($mode == 0) {
1640 $sql .= " AND ( p.public = 1";
1641 $sql .= " OR ( ec.fk_c_type_contact IN (".$this->db->sanitize(implode(',', array_keys($listofprojectcontacttype))).")";
1642 $sql .= " AND ec.fk_socpeople = ".((int) $user->id).")";
1643 $sql .= " )";
1644 } elseif ($mode == 1) {
1645 $sql .= " AND ec.element_id = p.rowid";
1646 $sql .= " AND (";
1647 $sql .= " ( ec.fk_c_type_contact IN (".$this->db->sanitize(implode(',', array_keys($listofprojectcontacttype))).")";
1648 $sql .= " AND ec.fk_socpeople = ".((int) $user->id).")";
1649 $sql .= " )";
1650 } elseif ($mode == 2) {
1651 // No filter. Use this if user has permission to see all project
1652 }
1653
1654 // Manage filter
1655 $errormessage = '';
1656 $sql .= forgeSQLFromUniversalSearchCriteria($filter, $errormessage);
1657 if ($errormessage) {
1658 $this->errors[] = $errormessage;
1659 dol_syslog(__METHOD__.' '.implode(',', $this->errors), LOG_ERR);
1660 $sql .= $filter;
1661 }
1662
1663 //print $sql;
1664
1665 $resql = $this->db->query($sql);
1666 if ($resql) {
1667 $num = $this->db->num_rows($resql);
1668 $i = 0;
1669 while ($i < $num) {
1670 $row = $this->db->fetch_row($resql);
1671 $projects[$row[0]] = $row[1];
1672 $temp[] = $row[0];
1673 $i++;
1674 }
1675
1676 $this->db->free($resql);
1677
1678 if ($list) {
1679 if (empty($temp)) {
1680 return '0';
1681 }
1682 $result = implode(',', $temp);
1683 return $result;
1684 }
1685 } else {
1686 dol_print_error($this->db);
1687 }
1688
1689 return $projects;
1690 }
1691
1707 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)
1708 {
1709 global $langs, $conf;
1710
1711 $error = 0;
1712 $clone_project_id = 0; // For static toolcheck
1713
1714 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);
1715
1716 $now = dol_mktime(0, 0, 0, idate('m', dol_now()), idate('d', dol_now()), idate('Y', dol_now()));
1717
1718 $clone_project = new Project($this->db);
1719
1720 $clone_project->context['createfromclone'] = 'createfromclone';
1721
1722 $this->db->begin();
1723
1724 // Load source object
1725 $clone_project->fetch($fromid);
1726 $clone_project->fetch_optionals();
1727 if ($newthirdpartyid > 0) {
1728 $clone_project->socid = $newthirdpartyid;
1729 }
1730 $clone_project->fetch_thirdparty();
1731
1732 $orign_dt_start = $clone_project->date_start;
1733 $orign_project_ref = $clone_project->ref;
1734
1735 $clone_project->id = 0;
1736 if ($move_date) {
1737 $clone_project->date_start = $now;
1738 if (!(empty($clone_project->date_end))) {
1739 $clone_project->date_end = $clone_project->date_end + ($now - $orign_dt_start);
1740 }
1741 }
1742
1743 $clone_project->date_c = $now;
1744
1745 if (!$clone_note) {
1746 $clone_project->note_private = '';
1747 $clone_project->note_public = '';
1748 }
1749
1750 //Generate next ref
1751 $defaultref = '';
1752 $obj = !getDolGlobalString('PROJECT_ADDON') ? 'mod_project_simple' : $conf->global->PROJECT_ADDON;
1753 // Search template files
1754 $file = '';
1755 $classname = '';
1756 $filefound = 0;
1757 $dirmodels = array_merge(array('/'), (array) $conf->modules_parts['models']);
1758 foreach ($dirmodels as $reldir) {
1759 $file = dol_buildpath($reldir."core/modules/project/".$obj.'.php', 0);
1760 if (file_exists($file)) {
1761 $filefound = 1;
1762 dol_include_once($reldir."core/modules/project/".$obj.'.php');
1763 $modProject = new $obj();
1764 $defaultref = $modProject->getNextValue(is_object($clone_project->thirdparty) ? $clone_project->thirdparty : null, $clone_project);
1765 break;
1766 }
1767 }
1768 if (is_numeric($defaultref) && $defaultref <= 0) {
1769 $defaultref = '';
1770 }
1771
1772 $clone_project->ref = $defaultref;
1773 $clone_project->title = $langs->trans("CopyOf").' '.$clone_project->title;
1774
1775 // Create clone
1776 $result = $clone_project->create($user, $notrigger);
1777
1778 // Other options
1779 if ($result < 0) {
1780 $this->error .= $clone_project->error;
1781 $error++;
1782 }
1783
1784 if (!$error) {
1785 //Get the new project id
1786 $clone_project_id = $clone_project->id;
1787
1788 //Note Update
1789 if (!$clone_note) {
1790 $clone_project->note_private = '';
1791 $clone_project->note_public = '';
1792 } else {
1793 $this->db->begin();
1794 $res = $clone_project->update_note(dol_html_entity_decode($clone_project->note_public, ENT_QUOTES | ENT_HTML5), '_public');
1795 if ($res < 0) {
1796 $this->error .= $clone_project->error;
1797 $error++;
1798 $this->db->rollback();
1799 } else {
1800 $this->db->commit();
1801 }
1802
1803 $this->db->begin();
1804 $res = $clone_project->update_note(dol_html_entity_decode($clone_project->note_private, ENT_QUOTES | ENT_HTML5), '_private');
1805 if ($res < 0) {
1806 $this->error .= $clone_project->error;
1807 $error++;
1808 $this->db->rollback();
1809 } else {
1810 $this->db->commit();
1811 }
1812 }
1813
1814 //Duplicate contact
1815 if ($clone_contact) {
1816 $origin_project = new Project($this->db);
1817 $origin_project->fetch($fromid);
1818
1819 foreach (array('internal', 'external') as $source) {
1820 $tab = $origin_project->liste_contact(-1, $source);
1821 if (is_array($tab) && count($tab) > 0) {
1822 foreach ($tab as $contacttoadd) {
1823 $clone_project->add_contact($contacttoadd['id'], $contacttoadd['code'], $contacttoadd['source'], $notrigger);
1824 if ($clone_project->error == 'DB_ERROR_RECORD_ALREADY_EXISTS') {
1825 $langs->load("errors");
1826 $this->error .= $langs->trans("ErrorThisContactIsAlreadyDefinedAsThisType");
1827 $error++;
1828 } else {
1829 if ($clone_project->error != '') {
1830 $this->error .= $clone_project->error;
1831 $error++;
1832 }
1833 }
1834 }
1835 } elseif ($tab < 0) {
1836 $this->error .= $origin_project->error;
1837 $error++;
1838 }
1839 }
1840 }
1841
1842 //Duplicate file
1843 if ($clone_project_file) {
1844 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
1845
1846 $clone_project_dir = $conf->project->dir_output."/".dol_sanitizeFileName($defaultref);
1847 $ori_project_dir = $conf->project->dir_output."/".dol_sanitizeFileName($orign_project_ref);
1848
1849 if (dol_mkdir($clone_project_dir) >= 0) {
1850 $filearray = dol_dir_list($ori_project_dir, "files", 0, '', '(\.meta|_preview.*\.png)$', '', SORT_ASC, 1);
1851 foreach ($filearray as $key => $file) {
1852 $rescopy = dol_copy($ori_project_dir.'/'.$file['name'], $clone_project_dir.'/'.$file['name'], 0, 1);
1853 if (is_numeric($rescopy) && $rescopy < 0) {
1854 $this->error .= $langs->trans("ErrorFailToCopyFile", $ori_project_dir.'/'.$file['name'], $clone_project_dir.'/'.$file['name']);
1855 $error++;
1856 }
1857 }
1858 } else {
1859 $this->error .= $langs->trans('ErrorInternalErrorDetected').':dol_mkdir';
1860 $error++;
1861 }
1862 }
1863
1864 //Duplicate task
1865 if ($clone_task) {
1866 require_once DOL_DOCUMENT_ROOT.'/projet/class/task.class.php';
1867
1868 $taskstatic = new Task($this->db);
1869
1870 // Security check
1871 $socid = 0;
1872 if ($user->socid > 0) {
1873 $socid = $user->socid;
1874 }
1875
1876 $tasksarray = $taskstatic->getTasksArray(0, 0, $fromid, $socid, 0);
1877
1878 $tab_conv_child_parent = array();
1879
1880 // Loop on each task, to clone it
1881 foreach ($tasksarray as $tasktoclone) {
1882 $result_clone = $taskstatic->createFromClone($user, $tasktoclone->id, $clone_project_id, $tasktoclone->fk_task_parent, $move_date, true, false, $clone_task_file, true, false);
1883 if ($result_clone <= 0) {
1884 $this->error .= $taskstatic->error;
1885 $error++;
1886 } else {
1887 $new_task_id = $result_clone;
1888 $taskstatic->fetch($tasktoclone->id);
1889
1890 //manage new parent clone task id
1891 // if the current task has child we store the original task id and the equivalent clone task id
1892 if (($taskstatic->hasChildren()) && !array_key_exists($tasktoclone->id, $tab_conv_child_parent)) {
1893 $tab_conv_child_parent[$tasktoclone->id] = $new_task_id;
1894 }
1895 }
1896 }
1897
1898 //Parse all clone node to be sure to update new parent
1899 $tasksarray = $taskstatic->getTasksArray(0, 0, $clone_project_id, $socid, 0);
1900 foreach ($tasksarray as $task_cloned) {
1901 $taskstatic->fetch($task_cloned->id);
1902 if ($taskstatic->fk_task_parent != 0) {
1903 $taskstatic->fk_task_parent = $tab_conv_child_parent[$taskstatic->fk_task_parent];
1904 }
1905 $res = $taskstatic->update($user, $notrigger);
1906 if ($result_clone <= 0) {
1907 $this->error .= $taskstatic->error;
1908 $error++;
1909 }
1910 }
1911 }
1912 }
1913
1914 unset($clone_project->context['createfromclone']);
1915
1916 if (!$error && $clone_project_id != 0) {
1917 $this->db->commit();
1918 return $clone_project_id;
1919 } else {
1920 $this->db->rollback();
1921 dol_syslog(get_class($this)."::createFromClone nbError: ".$error." error : ".$this->error, LOG_ERR);
1922 return -1;
1923 }
1924 }
1925
1926
1933 public function shiftTaskDate($old_project_dt_start)
1934 {
1935 global $user, $langs, $conf;
1936
1937 $error = 0;
1938 $result = 0;
1939
1940 $taskstatic = new Task($this->db);
1941
1942 // Security check
1943 $socid = 0;
1944 if ($user->socid > 0) {
1945 $socid = $user->socid;
1946 }
1947
1948 $tasksarray = $taskstatic->getTasksArray(0, 0, $this->id, $socid, 0);
1949
1950 foreach ($tasksarray as $tasktoshiftdate) {
1951 $to_update = false;
1952 // Fetch only if update of date will be made
1953 if ((!empty($tasktoshiftdate->date_start)) || (!empty($tasktoshiftdate->date_end))) {
1954 //dol_syslog(get_class($this)."::shiftTaskDate to_update", LOG_DEBUG);
1955 $to_update = true;
1956 $task = new Task($this->db);
1957 $result = $task->fetch($tasktoshiftdate->id);
1958 if (!$result) {
1959 $error++;
1960 $this->error .= $task->error;
1961 }
1962 }
1963 //print "$this->date_start + $tasktoshiftdate->date_start - $old_project_dt_start";exit;
1964
1965 //Calculate new task start date with difference between old proj start date and origin task start date
1966 if (!empty($tasktoshiftdate->date_start)) {
1967 $task->date_start = $this->date_start + ($tasktoshiftdate->date_start - $old_project_dt_start);
1968 }
1969
1970 //Calculate new task end date with difference between origin proj end date and origin task end date
1971 if (!empty($tasktoshiftdate->date_end)) {
1972 $task->date_end = $this->date_start + ($tasktoshiftdate->date_end - $old_project_dt_start);
1973 }
1974
1975 if ($to_update) {
1976 $result = $task->update($user);
1977 if (!$result) {
1978 $error++;
1979 $this->error .= $task->error;
1980 }
1981 }
1982 }
1983 if ($error != 0) {
1984 return -1;
1985 }
1986 return $result;
1987 }
1988
1989
1990 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1998 public function update_element($tableName, $elementSelectId)
1999 {
2000 // phpcs:enable
2001 $sql = "UPDATE ".MAIN_DB_PREFIX.$tableName;
2002
2003 if ($tableName == "actioncomm") {
2004 $sql .= " SET fk_project=".$this->id;
2005 $sql .= " WHERE id=".((int) $elementSelectId);
2006 } elseif (in_array($tableName, ["entrepot","mrp_mo","stocktransfer_stocktransfer"])) {
2007 $sql .= " SET fk_project=".$this->id;
2008 $sql .= " WHERE rowid=".((int) $elementSelectId);
2009 } else {
2010 $sql .= " SET fk_projet=".$this->id;
2011 $sql .= " WHERE rowid=".((int) $elementSelectId);
2012 }
2013
2014 dol_syslog(get_class($this)."::update_element", LOG_DEBUG);
2015 $resql = $this->db->query($sql);
2016 if (!$resql) {
2017 $this->error = $this->db->lasterror();
2018 return -1;
2019 } else {
2020 return 1;
2021 }
2022 }
2023
2024 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2034 public function remove_element($tableName, $elementSelectId, $projectfield = 'fk_projet')
2035 {
2036 // phpcs:enable
2037 $sql = "UPDATE ".MAIN_DB_PREFIX.$tableName;
2038
2039 if ($tableName == "actioncomm") {
2040 $sql .= " SET fk_project=NULL";
2041 $sql .= " WHERE id=".((int) $elementSelectId);
2042 } else {
2043 $sql .= " SET ".$projectfield."=NULL";
2044 $sql .= " WHERE rowid=".((int) $elementSelectId);
2045 }
2046
2047 dol_syslog(get_class($this)."::remove_element", LOG_DEBUG);
2048 $resql = $this->db->query($sql);
2049 if (!$resql) {
2050 $this->error = $this->db->lasterror();
2051 return -1;
2052 } else {
2053 return 1;
2054 }
2055 }
2056
2067 public function generateDocument($modele, $outputlangs, $hidedetails = 0, $hidedesc = 0, $hideref = 0)
2068 {
2069 global $conf, $langs;
2070
2071 $langs->load("projects");
2072
2073 if (!dol_strlen($modele)) {
2074 $modele = 'baleine';
2075
2076 if ($this->model_pdf) {
2077 $modele = $this->model_pdf;
2078 } elseif (getDolGlobalString('PROJECT_ADDON_PDF')) {
2079 $modele = getDolGlobalString('PROJECT_ADDON_PDF');
2080 }
2081 }
2082
2083 $modelpath = "core/modules/project/doc/";
2084
2085 return $this->commonGenerateDocument($modelpath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref);
2086 }
2087
2088
2098 public function loadTimeSpent($datestart, $taskid = 0, $userid = 0)
2099 {
2100 $this->weekWorkLoad = array();
2101 $this->weekWorkLoadPerTask = array();
2102
2103 if (empty($datestart)) {
2104 dol_print_error(null, 'Error datestart parameter is empty');
2105 }
2106
2107 $sql = "SELECT ptt.rowid as taskid, ptt.element_duration, ptt.element_date, ptt.element_datehour, ptt.fk_element";
2108 $sql .= " FROM ".MAIN_DB_PREFIX."element_time AS ptt, ".MAIN_DB_PREFIX."projet_task as pt";
2109 $sql .= " WHERE ptt.fk_element = pt.rowid";
2110 $sql .= " AND ptt.elementtype = 'task'";
2111 $sql .= " AND pt.fk_projet = ".((int) $this->id);
2112 $sql .= " AND (ptt.element_date >= '".$this->db->idate($datestart)."' ";
2113 $sql .= " AND ptt.element_date <= '".$this->db->idate(dol_time_plus_duree($datestart, 1, 'w') - 1)."')";
2114 if ($taskid) {
2115 $sql .= " AND ptt.fk_element=".((int) $taskid);
2116 }
2117 if (is_numeric($userid)) {
2118 $sql .= " AND ptt.fk_user=".((int) $userid);
2119 }
2120
2121 //print $sql;
2122 $resql = $this->db->query($sql);
2123 if ($resql) {
2124 $daylareadyfound = array();
2125
2126 $num = $this->db->num_rows($resql);
2127 $i = 0;
2128 // Loop on each record found, so each couple (project id, task id)
2129 while ($i < $num) {
2130 $obj = $this->db->fetch_object($resql);
2131 $day = $this->db->jdate($obj->element_date); // task_date is date without hours
2132 if (empty($daylareadyfound[$day])) {
2133 $this->weekWorkLoad[$day] = $obj->element_duration;
2134 $this->weekWorkLoadPerTask[$day][$obj->fk_element] = $obj->element_duration;
2135 } else {
2136 $this->weekWorkLoad[$day] += $obj->element_duration;
2137 $this->weekWorkLoadPerTask[$day][$obj->fk_element] += $obj->element_duration;
2138 }
2139 $daylareadyfound[$day] = 1;
2140 $i++;
2141 }
2142 $this->db->free($resql);
2143 return 1;
2144 } else {
2145 $this->error = "Error ".$this->db->lasterror();
2146 dol_syslog(get_class($this)."::fetch ".$this->error, LOG_ERR);
2147 return -1;
2148 }
2149 }
2150
2160 public function loadTimeSpentMonth($datestart, $taskid = 0, $userid = 0)
2161 {
2162 $this->monthWorkLoad = array();
2163 $this->monthWorkLoadPerTask = array();
2164
2165 if (empty($datestart)) {
2166 dol_print_error(null, 'Error datestart parameter is empty');
2167 }
2168
2169 $sql = "SELECT ptt.rowid as taskid, ptt.element_duration, ptt.element_date, ptt.element_datehour, ptt.fk_element";
2170 $sql .= " FROM ".MAIN_DB_PREFIX."element_time AS ptt, ".MAIN_DB_PREFIX."projet_task as pt";
2171 $sql .= " WHERE ptt.fk_element = pt.rowid";
2172 $sql .= " AND ptt.elementtype = 'task'";
2173 $sql .= " AND pt.fk_projet = ".((int) $this->id);
2174 $sql .= " AND (ptt.element_date >= '".$this->db->idate($datestart)."' ";
2175 $sql .= " AND ptt.element_date <= '".$this->db->idate(dol_time_plus_duree($datestart, 1, 'm') - 1)."')";
2176 if ($taskid) {
2177 $sql .= " AND ptt.fk_element=".((int) $taskid);
2178 }
2179 if (is_numeric($userid)) {
2180 $sql .= " AND ptt.fk_user=".((int) $userid);
2181 }
2182
2183 //print $sql;
2184 $resql = $this->db->query($sql);
2185 if ($resql) {
2186 $weekalreadyfound = array();
2187
2188 $num = $this->db->num_rows($resql);
2189 $i = 0;
2190 // Loop on each record found, so each couple (project id, task id)
2191 while ($i < $num) {
2192 $obj = $this->db->fetch_object($resql);
2193 if (!empty($obj->element_date)) {
2194 $date = explode('-', $obj->element_date);
2195 $week_number = getWeekNumber($date[2], $date[1], $date[0]);
2196 }
2197 '@phan-var-force int $week_number'; // Needed because phan considers it might be null
2198 if (empty($weekalreadyfound[$week_number])) {
2199 $this->monthWorkLoad[$week_number] = $obj->element_duration;
2200 $this->monthWorkLoadPerTask[$week_number][$obj->fk_element] = $obj->element_duration;
2201 } else {
2202 $this->monthWorkLoad[$week_number] += $obj->element_duration;
2203 $this->monthWorkLoadPerTask[$week_number][$obj->fk_element] += $obj->element_duration;
2204 }
2205 $weekalreadyfound[$week_number] = 1;
2206 $i++;
2207 }
2208 $this->db->free($resql);
2209 return 1;
2210 } else {
2211 $this->error = "Error ".$this->db->lasterror();
2212 dol_syslog(get_class($this)."::fetch ".$this->error, LOG_ERR);
2213 return -1;
2214 }
2215 }
2216
2217 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2224 public function load_board($user)
2225 {
2226 // phpcs:enable
2227 global $conf, $langs;
2228
2229 // For external user, no check is done on company because readability is managed by public status of project and assignment.
2230 //$socid=$user->socid;
2231
2232 $response = new WorkboardResponse();
2233 $response->warning_delay = $conf->project->warning_delay / 60 / 60 / 24;
2234 $response->label = $langs->trans("OpenedProjects");
2235 $response->labelShort = $langs->trans("Opened");
2236 $response->url = DOL_URL_ROOT.'/projet/list.php?search_project_user=-1&search_status=1&mainmenu=project';
2237 $response->img = img_object('', "projectpub");
2238 $response->nbtodo = 0;
2239 $response->nbtodolate = 0;
2240
2241 $sql = "SELECT p.rowid, p.fk_statut as status, p.fk_opp_status, p.datee as datee";
2242 $sql .= " FROM (".MAIN_DB_PREFIX."projet as p";
2243 $sql .= ")";
2244 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."societe as s on p.fk_soc = s.rowid";
2245 // For external user, no check is done on company permission because readability is managed by public status of project and assignment.
2246 //if (! $user->rights->societe->client->voir && ! $socid) $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."societe_commerciaux as sc ON sc.fk_soc = s.rowid";
2247 $sql .= " WHERE p.fk_statut = 1";
2248 $sql .= " AND p.entity IN (".getEntity('project').')';
2249
2250
2251 $projectsListId = null;
2252 if (!$user->hasRight("projet", "all", "lire")) {
2253 $response->url = DOL_URL_ROOT.'/projet/list.php?search_status=1&mainmenu=project';
2254 $projectsListId = $this->getProjectsAuthorizedForUser($user, 0, 1);
2255 if (empty($projectsListId)) {
2256 return $response;
2257 }
2258
2259 $sql .= " AND p.rowid IN (".$this->db->sanitize($projectsListId).")";
2260 }
2261
2262 // No need to check company, as filtering of projects must be done by getProjectsAuthorizedForUser
2263 //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).")";
2264 // For external user, no check is done on company permission because readability is managed by public status of project and assignment.
2265 //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))";
2266
2267 //print $sql;
2268 $resql = $this->db->query($sql);
2269 if ($resql) {
2270 $project_static = new Project($this->db);
2271
2272
2273 // This assignment in condition is not a bug. It allows walking the results.
2274 while ($obj = $this->db->fetch_object($resql)) {
2275 $response->nbtodo++;
2276
2277 $project_static->statut = $obj->status;
2278 $project_static->opp_status = $obj->fk_opp_status;
2279 $project_static->date_end = $this->db->jdate($obj->datee);
2280
2281 if ($project_static->hasDelay()) {
2282 $response->nbtodolate++;
2283 }
2284 }
2285
2286 return $response;
2287 }
2288
2289 $this->error = $this->db->error();
2290 return -1;
2291 }
2292
2301 public static function replaceThirdparty(DoliDB $dbs, $origin_id, $dest_id)
2302 {
2303 $tables = array(
2304 'projet'
2305 );
2306
2307 return CommonObject::commonReplaceThirdparty($dbs, $origin_id, $dest_id, $tables);
2308 }
2309
2310
2316 public function loadStateBoard()
2317 {
2318 global $user;
2319
2320 $this->nb = array();
2321
2322 $sql = "SELECT count(p.rowid) as nb";
2323 $sql .= " FROM ".MAIN_DB_PREFIX."projet as p";
2324 $sql .= " WHERE";
2325 $sql .= " p.entity IN (".getEntity('project').")";
2326 if (!$user->hasRight('projet', 'all', 'lire')) {
2327 $projectsListId = $this->getProjectsAuthorizedForUser($user, 0, 1);
2328 $sql .= "AND p.rowid IN (".$this->db->sanitize($projectsListId).")";
2329 }
2330
2331 $resql = $this->db->query($sql);
2332 if ($resql) {
2333 while ($obj = $this->db->fetch_object($resql)) {
2334 $this->nb["projects"] = $obj->nb;
2335 }
2336 $this->db->free($resql);
2337 return 1;
2338 } else {
2339 dol_print_error($this->db);
2340 $this->error = $this->db->error();
2341 return -1;
2342 }
2343 }
2344
2345
2351 public function hasDelay()
2352 {
2353 global $conf;
2354
2355 if (!($this->statut == self::STATUS_VALIDATED)) {
2356 return false;
2357 }
2358 if (!$this->date_end) {
2359 return false;
2360 }
2361
2362 $now = dol_now();
2363
2364 return ($this->date_end) < ($now - $conf->project->warning_delay);
2365 }
2366
2367
2374 public function info($id)
2375 {
2376 $sql = 'SELECT c.rowid, datec as datec, tms as datem,';
2377 $sql .= ' date_close as datecloture,';
2378 $sql .= ' fk_user_creat as fk_user_author, fk_user_close as fk_user_cloture';
2379 $sql .= ' FROM '.MAIN_DB_PREFIX.'projet as c';
2380 $sql .= ' WHERE c.rowid = '.((int) $id);
2381 $result = $this->db->query($sql);
2382 if ($result) {
2383 if ($this->db->num_rows($result)) {
2384 $obj = $this->db->fetch_object($result);
2385
2386 $this->id = $obj->rowid;
2387
2388 $this->user_creation_id = $obj->fk_user_author;
2389 $this->user_closing_id = $obj->fk_user_cloture;
2390
2391 $this->date_creation = $this->db->jdate($obj->datec);
2392 $this->date_modification = $this->db->jdate($obj->datem);
2393 $this->date_cloture = $this->db->jdate($obj->datecloture);
2394 }
2395
2396 $this->db->free($result);
2397 } else {
2398 dol_print_error($this->db);
2399 }
2400 }
2401
2412 public function setCategories($categories)
2413 {
2414 require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
2415 return parent::setCategoriesCommon($categories, Categorie::TYPE_PROJECT);
2416 }
2417
2418
2426 public function getLinesArray($user, $loadRoleMode = 1)
2427 {
2428 require_once DOL_DOCUMENT_ROOT.'/projet/class/task.class.php';
2429 $taskstatic = new Task($this->db);
2430
2431 $this->lines = $taskstatic->getTasksArray(0, $user, $this->id, 0, 0, '', '-1', '', 0, 0, array(), 0, array(), 0, $loadRoleMode);
2432 return 1;
2433 }
2434
2452 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 = '')
2453 {
2454 global $conf, $langs;
2455 // TODO EMAIL
2456
2457 return 1;
2458 }
2467 public function getKanbanView($option = '', $arraydata = null, $size = '')
2468 {
2469 global $conf, $langs;
2470
2471 $selected = (empty($arraydata['selected']) ? 0 : $arraydata['selected']);
2472
2473 if (empty($size)) {
2474 if (empty($conf->dol_optimize_smallscreen)) {
2475 $size = 'large';
2476 } else {
2477 $size = 'small';
2478 }
2479 }
2480
2481 $return = '<div class="box-flex-item '.($size == 'small' ? 'box-flex-item-small' : '').' box-flex-grow-zero">';
2482 $return .= '<div class="info-box info-box-sm">';
2483 $return .= '<span class="info-box-icon bg-infobox-action">';
2484 $return .= img_picto('', $this->public ? 'projectpub' : $this->picto);
2485 //$return .= '<i class="fa fa-dol-action"></i>'; // Can be image
2486 $return .= '</span>';
2487 $return .= '<div class="info-box-content">';
2488 $return .= '<span class="info-box-ref inline-block tdoverflowmax150 valignmiddle">'.(method_exists($this, 'getNomUrl') ? $this->getNomUrl() : $this->ref);
2489 if ($this->hasDelay()) {
2490 $return .= img_warning($langs->trans('Late'));
2491 }
2492 $return .= '</span>';
2493 if ($selected >= 0) {
2494 $return .= '<input id="cb'.$this->id.'" class="flat checkforselect fright" type="checkbox" name="toselect[]" value="'.$this->id.'"'.($selected ? ' checked="checked"' : '').'>';
2495 }
2496 // Date
2497 /*
2498 if (property_exists($this, 'date_start') && $this->date_start) {
2499 $return .= '<br><span class="info-box-label">'.dol_print_date($this->date_start, 'day').'</>';
2500 }
2501 if (property_exists($this, 'date_end') && $this->date_end) {
2502 if ($this->date_start) {
2503 $return .= ' - ';
2504 } else {
2505 $return .= '<br>';
2506 }
2507 $return .= '<span class="info-box-label">'.dol_print_date($this->date_end, 'day').'</span>';
2508 }*/
2509 if (property_exists($this, 'thirdparty') && is_object($this->thirdparty)) {
2510 $return .= '<br><div class="info-box-ref tdoverflowmax150 inline-block valignmiddle">'.$this->thirdparty->getNomUrl(1);
2511 $return .= '</div><div class="inline-block valignmiddle">';
2512 $return .= dol_print_phone($this->thirdparty->phone, $this->thirdparty->country_code, 0, $this->thirdparty->id, 'tel', 'hidenum', 'phone', $this->thirdparty->phone, 0, 'marginleftonly');
2513 $return .= '</div>';
2514 }
2515 if (!empty($arraydata['assignedusers'])) {
2516 $return .= '<br>';
2517 if ($this->public) {
2518 $return .= img_picto($langs->trans('Visibility').': '.$langs->trans('SharedProject'), 'world', 'class="paddingrightonly valignmiddle"');
2519 //print $langs->trans('SharedProject');
2520 } else {
2521 $return .= img_picto($langs->trans('Visibility').': '.$langs->trans('PrivateProject'), 'private', 'class="paddingrightonly valignmiddle"');
2522 //print $langs->trans('PrivateProject');
2523 }
2524
2525 $return .= ' <span class="small valignmiddle">'.$arraydata['assignedusers'].'</span>';
2526 }
2527 /*if (property_exists($this, 'user_author_id')) {
2528 $return .= '<br><span class="info-box-label opacitymedium">'.$langs->trans("Author").'</span>';
2529 $return .= '<span> : '.$user->getNomUrl(1).'</span>';
2530 }*/
2531 $return .= '<br><div>'; // start div line status
2532 if ($this->usage_opportunity && $this->opp_status_code) {
2533 //$return .= '<br><span class="info-bo-label opacitymedium">'.$langs->trans("OpportunityStatusShort").'</span>';
2534 //$return .= '<div class="small inline-block">'.dol_trunc($langs->trans("OppStatus".$this->opp_status_code), 5).'</div>';
2535 $return .= '<div class="opacitymedium small marginrightonly inline-block" title="'.dol_escape_htmltag($langs->trans("OppStatus".$this->opp_status_code)).'">'.round($this->opp_percent).'%</div>';
2536 $return .= ' <div class="amount small marginrightonly inline-block">'.price($this->opp_amount).'</div>';
2537 }
2538 if (method_exists($this, 'getLibStatut')) {
2539 $return .= '<div class="info-box-status small inline-block valignmiddle">'.$this->getLibStatut(3).'</div>';
2540 }
2541 $return .= '</div>'; // end div line status
2542
2543 $return .= '</div>';
2544 $return .= '</div>';
2545 $return .= '</div>';
2546
2547 return $return;
2548 }
2549
2555 public function getChildren()
2556 {
2557 $children = [];
2558 $sql = 'SELECT rowid,title';
2559 $sql .= ' FROM '.MAIN_DB_PREFIX.'projet';
2560 $sql .= ' WHERE fk_project = '.((int) $this->id);
2561 $sql .= ' ORDER BY title';
2562 $result = $this->db->query($sql);
2563 if ($result) {
2564 $n = $this->db->num_rows($result);
2565 while ($n) {
2566 $children[] = $this->db->fetch_object($result);
2567 $n--;
2568 }
2569 $this->db->free($result);
2570 } else {
2571 dol_print_error($this->db);
2572 }
2573
2574 return $children;
2575 }
2576
2581 public function createWeeklyReport()
2582 {
2583 global $mysoc, $user;
2584
2585 $now = dol_now();
2586 $nowDate = dol_getdate($now, true);
2587
2588 $errormesg = '';
2589 $errorsMsg = array();
2590
2591 $firstDayOfWeekTS = dol_get_first_day_week($nowDate['mday'], $nowDate['mon'], $nowDate['year']);
2592
2593 $firstDayOfWeekDate = dol_mktime(0, 0, 0, $nowDate['mon'], $firstDayOfWeekTS['first_day'], $nowDate['year']);
2594
2595 $lastWeekStartTS = dol_time_plus_duree($firstDayOfWeekDate, -7, 'd');
2596
2597 $lastWeekEndTS = dol_time_plus_duree($lastWeekStartTS, 6, 'd');
2598
2599 $startDate = dol_print_date($lastWeekStartTS, '%Y-%m-%d 00:00:00');
2600 $endDate = dol_print_date($lastWeekEndTS, '%Y-%m-%d 23:59:59');
2601
2602 $sql = "SELECT
2603 u.rowid AS user_id,
2604 CONCAT(u.firstname, ' ', u.lastname) AS name,
2605 u.email,u.weeklyhours,
2606 SUM(et.element_duration) AS total_seconds
2607 FROM
2608 ".MAIN_DB_PREFIX."element_time AS et
2609 JOIN
2610 ".MAIN_DB_PREFIX."user AS u ON et.fk_user = u.rowid
2611 WHERE
2612 et.element_date BETWEEN '".$this->db->escape($startDate)."' AND '".$this->db->escape($endDate)."'
2613 AND et.elementtype = 'task'
2614 GROUP BY
2615 et.fk_user";
2616
2617 $resql = $this->db->query($sql);
2618 if (!$resql) {
2619 dol_print_error($this->db);
2620 return -1;
2621 } else {
2622 $reportContent = "<span>Weekly time report from $startDate to $endDate </span><br><br>";
2623 $reportContent .= '<table border="1" style="border-collapse: collapse;">';
2624 $reportContent .= '<tr><th>Nom d\'utilisateur</th><th>Temps saisi (heures)</th><th>Temps travaillé par semaine (heures)</th></tr>';
2625
2626 $weekendEnabled = 0;
2627 $to = '';
2628 $nbMailSend = 0;
2629 $error = 0;
2630 $errors_to = '';
2631 while ($obj = $this->db->fetch_object($resql)) {
2632 $to = $obj->email;
2633 $numHolidays = num_public_holiday($lastWeekStartTS, $lastWeekEndTS, $mysoc->country_code, 1);
2634 if (getDolGlobalString('MAIN_NON_WORKING_DAYS_INCLUDE_SATURDAY') && getDolGlobalString('MAIN_NON_WORKING_DAYS_INCLUDE_SUNDAY')) {
2635 $numHolidays = $numHolidays - 2;
2636 $weekendEnabled = 2;
2637 }
2638
2639 $dailyHours = $obj->weeklyhours / (7 - $weekendEnabled);
2640
2641 // Adjust total on seconde
2642 $adjustedSeconds = $obj->total_seconds + ($numHolidays * $dailyHours * 3600);
2643
2644 $totalHours = round($adjustedSeconds / 3600, 2);
2645
2646 $reportContent .= "<tr><td>{$obj->name}</td><td>{$totalHours}</td><td>".round($obj->weeklyhours, 2)."</td></tr>";
2647
2648 $reportContent .= '</table>';
2649
2650 require_once DOL_DOCUMENT_ROOT.'/core/class/CMailFile.class.php';
2651
2652 // PREPARE EMAIL
2653 $errormesg = '';
2654
2655 $subject = 'Rapport hebdomadaire des temps travaillés';
2656
2657 $from = getDolGlobalString('MAIN_MAIL_EMAIL_FROM');
2658 if (empty($from)) {
2659 $errormesg = "Failed to get sender into global setup MAIN_MAIL_EMAIL_FROM";
2660 $error++;
2661 }
2662
2663 $mail = new CMailFile($subject, $to, $from, $reportContent, array(), array(), array(), '', '', 0, -1, '', '', 0, 'text/html');
2664
2665 if ($mail->sendfile()) {
2666 $nbMailSend++;
2667
2668 // Add a line into event table
2669 require_once DOL_DOCUMENT_ROOT.'/comm/action/class/actioncomm.class.php';
2670
2671 // Insert record of emails sent
2672 $actioncomm = new ActionComm($this->db);
2673
2674 $actioncomm->type_code = 'AC_OTH_AUTO'; // Event insert into agenda automatically
2675 $actioncomm->socid = $this->thirdparty->id; // To link to a company
2676 $actioncomm->contact_id = 0;
2677
2678 $actioncomm->code = 'AC_EMAIL';
2679 $actioncomm->label = 'createWeeklyReportOK()';
2680 $actioncomm->fk_project = $this->id;
2681 $actioncomm->datep = dol_now();
2682 $actioncomm->datef = $actioncomm->datep;
2683 $actioncomm->percentage = -1; // Not applicable
2684 $actioncomm->authorid = $user->id; // User saving action
2685 $actioncomm->userownerid = $user->id; // Owner of action
2686 // Fields when action is an email (content should be added into note)
2687 $actioncomm->email_msgid = $mail->msgid;
2688 $actioncomm->email_subject = $subject;
2689 $actioncomm->email_from = $from;
2690 $actioncomm->email_sender = '';
2691 $actioncomm->email_to = $to;
2692
2693 $actioncomm->errors_to = $errors_to;
2694
2695 $actioncomm->elementtype = 'project_task';
2696 $actioncomm->fk_element = (int) $this->element;
2697
2698 $actioncomm->create($user);
2699 } else {
2700 $errormesg = $mail->error.' : '.$to;
2701 $error++;
2702
2703 // Add a line into event table
2704 require_once DOL_DOCUMENT_ROOT.'/comm/action/class/actioncomm.class.php';
2705
2706 // Insert record of emails sent
2707 $actioncomm = new ActionComm($this->db);
2708
2709 $actioncomm->type_code = 'AC_OTH_AUTO'; // Event insert into agenda automatically
2710 $actioncomm->socid = $this->thirdparty->id; // To link to a company
2711 $actioncomm->contact_id = 0;
2712
2713 $actioncomm->code = 'AC_EMAIL';
2714 $actioncomm->label = 'createWeeklyReportKO()';
2715 $actioncomm->note_private = $errormesg;
2716 $actioncomm->fk_project = $this->id;
2717 $actioncomm->datep = dol_now();
2718 $actioncomm->datef = $actioncomm->datep;
2719 $actioncomm->authorid = $user->id; // User saving action
2720 $actioncomm->userownerid = $user->id; // Owner of action
2721 // Fields when action is an email (content should be added into note)
2722 $actioncomm->email_msgid = $mail->msgid;
2723 $actioncomm->email_from = $from;
2724 $actioncomm->email_sender = '';
2725 $actioncomm->email_to = $to;
2726
2727 $actioncomm->errors_to = $errors_to;
2728
2729 $actioncomm->elementtype = 'project_task';
2730 $actioncomm->fk_element = (int) $this->element;
2731
2732 $actioncomm->create($user);
2733 }
2734 $this->db->commit();
2735 }
2736 }
2737 if (!empty($errormesg)) {
2738 $errorsMsg[] = $errormesg;
2739 }
2740
2741 if (!$error) {
2742 $this->output .= 'Nb of emails sent : '.$nbMailSend;
2743 dol_syslog(__METHOD__." end - ".$this->output, LOG_INFO);
2744 return 0;
2745 } else {
2746 $this->error = 'Nb of emails sent : '.$nbMailSend.', '.(empty($errorsMsg) ? $error : implode(', ', $errorsMsg));
2747 dol_syslog(__METHOD__." end - ".$this->error, LOG_INFO);
2748 return $error;
2749 }
2750 }
2751}
print $langs trans("AuditedSecurityEvents").'</strong >< span class="opacitymedium"></span >< br > status
Or an array listing all the potential status of the object: array: int of the status => translated la...
Definition security.php:637
$object ref
Definition info.php:79
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.
$user_author_id
Id of project creator. Not defined if shared project.
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.
$public
Tell if this is a public or private project.
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 clicable 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 member 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 tasks.
Class to manage Dolibarr users.
dol_get_first_day_week($day, $month, $year, $gm=false)
Return first day of week for a date.
Definition date.lib.php:670
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:764
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)
dol_print_phone($phone, $countrycode='', $cid=0, $socid=0, $addlink='', $separ="&nbsp;", $withpicto='', $titlealt='', $adddivfloat=0, $morecss='')
Format phone numbers according to country.
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)
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_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 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)
publicphonebutton2 phonegreen basiclayout basiclayout TotalHT VATCode TotalVAT TotalLT1 TotalLT2 TotalTTC TotalHT clearboth nowraponall TAKEPOS_SHOW_SUBPRICE right right right takeposterminal SELECT e e e e e statut
Definition invoice.php:1991