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 $sql .= $filter;
1655 //print $sql;
1656
1657 $resql = $this->db->query($sql);
1658 if ($resql) {
1659 $num = $this->db->num_rows($resql);
1660 $i = 0;
1661 while ($i < $num) {
1662 $row = $this->db->fetch_row($resql);
1663 $projects[$row[0]] = $row[1];
1664 $temp[] = $row[0];
1665 $i++;
1666 }
1667
1668 $this->db->free($resql);
1669
1670 if ($list) {
1671 if (empty($temp)) {
1672 return '0';
1673 }
1674 $result = implode(',', $temp);
1675 return $result;
1676 }
1677 } else {
1678 dol_print_error($this->db);
1679 }
1680
1681 return $projects;
1682 }
1683
1699 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)
1700 {
1701 global $langs, $conf;
1702
1703 $error = 0;
1704 $clone_project_id = 0; // For static toolcheck
1705
1706 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);
1707
1708 $now = dol_mktime(0, 0, 0, idate('m', dol_now()), idate('d', dol_now()), idate('Y', dol_now()));
1709
1710 $clone_project = new Project($this->db);
1711
1712 $clone_project->context['createfromclone'] = 'createfromclone';
1713
1714 $this->db->begin();
1715
1716 // Load source object
1717 $clone_project->fetch($fromid);
1718 $clone_project->fetch_optionals();
1719 if ($newthirdpartyid > 0) {
1720 $clone_project->socid = $newthirdpartyid;
1721 }
1722 $clone_project->fetch_thirdparty();
1723
1724 $orign_dt_start = $clone_project->date_start;
1725 $orign_project_ref = $clone_project->ref;
1726
1727 $clone_project->id = 0;
1728 if ($move_date) {
1729 $clone_project->date_start = $now;
1730 if (!(empty($clone_project->date_end))) {
1731 $clone_project->date_end = $clone_project->date_end + ($now - $orign_dt_start);
1732 }
1733 }
1734
1735 $clone_project->date_c = $now;
1736
1737 if (!$clone_note) {
1738 $clone_project->note_private = '';
1739 $clone_project->note_public = '';
1740 }
1741
1742 //Generate next ref
1743 $defaultref = '';
1744 $obj = !getDolGlobalString('PROJECT_ADDON') ? 'mod_project_simple' : $conf->global->PROJECT_ADDON;
1745 // Search template files
1746 $file = '';
1747 $classname = '';
1748 $filefound = 0;
1749 $dirmodels = array_merge(array('/'), (array) $conf->modules_parts['models']);
1750 foreach ($dirmodels as $reldir) {
1751 $file = dol_buildpath($reldir."core/modules/project/".$obj.'.php', 0);
1752 if (file_exists($file)) {
1753 $filefound = 1;
1754 dol_include_once($reldir."core/modules/project/".$obj.'.php');
1755 $modProject = new $obj();
1756 $defaultref = $modProject->getNextValue(is_object($clone_project->thirdparty) ? $clone_project->thirdparty : null, $clone_project);
1757 break;
1758 }
1759 }
1760 if (is_numeric($defaultref) && $defaultref <= 0) {
1761 $defaultref = '';
1762 }
1763
1764 $clone_project->ref = $defaultref;
1765 $clone_project->title = $langs->trans("CopyOf").' '.$clone_project->title;
1766
1767 // Create clone
1768 $result = $clone_project->create($user, $notrigger);
1769
1770 // Other options
1771 if ($result < 0) {
1772 $this->error .= $clone_project->error;
1773 $error++;
1774 }
1775
1776 if (!$error) {
1777 //Get the new project id
1778 $clone_project_id = $clone_project->id;
1779
1780 //Note Update
1781 if (!$clone_note) {
1782 $clone_project->note_private = '';
1783 $clone_project->note_public = '';
1784 } else {
1785 $this->db->begin();
1786 $res = $clone_project->update_note(dol_html_entity_decode($clone_project->note_public, ENT_QUOTES | ENT_HTML5), '_public');
1787 if ($res < 0) {
1788 $this->error .= $clone_project->error;
1789 $error++;
1790 $this->db->rollback();
1791 } else {
1792 $this->db->commit();
1793 }
1794
1795 $this->db->begin();
1796 $res = $clone_project->update_note(dol_html_entity_decode($clone_project->note_private, ENT_QUOTES | ENT_HTML5), '_private');
1797 if ($res < 0) {
1798 $this->error .= $clone_project->error;
1799 $error++;
1800 $this->db->rollback();
1801 } else {
1802 $this->db->commit();
1803 }
1804 }
1805
1806 //Duplicate contact
1807 if ($clone_contact) {
1808 $origin_project = new Project($this->db);
1809 $origin_project->fetch($fromid);
1810
1811 foreach (array('internal', 'external') as $source) {
1812 $tab = $origin_project->liste_contact(-1, $source);
1813 if (is_array($tab) && count($tab) > 0) {
1814 foreach ($tab as $contacttoadd) {
1815 $clone_project->add_contact($contacttoadd['id'], $contacttoadd['code'], $contacttoadd['source'], $notrigger);
1816 if ($clone_project->error == 'DB_ERROR_RECORD_ALREADY_EXISTS') {
1817 $langs->load("errors");
1818 $this->error .= $langs->trans("ErrorThisContactIsAlreadyDefinedAsThisType");
1819 $error++;
1820 } else {
1821 if ($clone_project->error != '') {
1822 $this->error .= $clone_project->error;
1823 $error++;
1824 }
1825 }
1826 }
1827 } elseif ($tab < 0) {
1828 $this->error .= $origin_project->error;
1829 $error++;
1830 }
1831 }
1832 }
1833
1834 //Duplicate file
1835 if ($clone_project_file) {
1836 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
1837
1838 $clone_project_dir = $conf->project->dir_output."/".dol_sanitizeFileName($defaultref);
1839 $ori_project_dir = $conf->project->dir_output."/".dol_sanitizeFileName($orign_project_ref);
1840
1841 if (dol_mkdir($clone_project_dir) >= 0) {
1842 $filearray = dol_dir_list($ori_project_dir, "files", 0, '', '(\.meta|_preview.*\.png)$', '', SORT_ASC, 1);
1843 foreach ($filearray as $key => $file) {
1844 $rescopy = dol_copy($ori_project_dir.'/'.$file['name'], $clone_project_dir.'/'.$file['name'], 0, 1);
1845 if (is_numeric($rescopy) && $rescopy < 0) {
1846 $this->error .= $langs->trans("ErrorFailToCopyFile", $ori_project_dir.'/'.$file['name'], $clone_project_dir.'/'.$file['name']);
1847 $error++;
1848 }
1849 }
1850 } else {
1851 $this->error .= $langs->trans('ErrorInternalErrorDetected').':dol_mkdir';
1852 $error++;
1853 }
1854 }
1855
1856 //Duplicate task
1857 if ($clone_task) {
1858 require_once DOL_DOCUMENT_ROOT.'/projet/class/task.class.php';
1859
1860 $taskstatic = new Task($this->db);
1861
1862 // Security check
1863 $socid = 0;
1864 if ($user->socid > 0) {
1865 $socid = $user->socid;
1866 }
1867
1868 $tasksarray = $taskstatic->getTasksArray(0, 0, $fromid, $socid, 0);
1869
1870 $tab_conv_child_parent = array();
1871
1872 // Loop on each task, to clone it
1873 foreach ($tasksarray as $tasktoclone) {
1874 $result_clone = $taskstatic->createFromClone($user, $tasktoclone->id, $clone_project_id, $tasktoclone->fk_task_parent, $move_date, true, false, $clone_task_file, true, false);
1875 if ($result_clone <= 0) {
1876 $this->error .= $taskstatic->error;
1877 $error++;
1878 } else {
1879 $new_task_id = $result_clone;
1880 $taskstatic->fetch($tasktoclone->id);
1881
1882 //manage new parent clone task id
1883 // if the current task has child we store the original task id and the equivalent clone task id
1884 if (($taskstatic->hasChildren()) && !array_key_exists($tasktoclone->id, $tab_conv_child_parent)) {
1885 $tab_conv_child_parent[$tasktoclone->id] = $new_task_id;
1886 }
1887 }
1888 }
1889
1890 //Parse all clone node to be sure to update new parent
1891 $tasksarray = $taskstatic->getTasksArray(0, 0, $clone_project_id, $socid, 0);
1892 foreach ($tasksarray as $task_cloned) {
1893 $taskstatic->fetch($task_cloned->id);
1894 if ($taskstatic->fk_task_parent != 0) {
1895 $taskstatic->fk_task_parent = $tab_conv_child_parent[$taskstatic->fk_task_parent];
1896 }
1897 $res = $taskstatic->update($user, $notrigger);
1898 if ($result_clone <= 0) {
1899 $this->error .= $taskstatic->error;
1900 $error++;
1901 }
1902 }
1903 }
1904 }
1905
1906 unset($clone_project->context['createfromclone']);
1907
1908 if (!$error && $clone_project_id != 0) {
1909 $this->db->commit();
1910 return $clone_project_id;
1911 } else {
1912 $this->db->rollback();
1913 dol_syslog(get_class($this)."::createFromClone nbError: ".$error." error : ".$this->error, LOG_ERR);
1914 return -1;
1915 }
1916 }
1917
1918
1925 public function shiftTaskDate($old_project_dt_start)
1926 {
1927 global $user, $langs, $conf;
1928
1929 $error = 0;
1930 $result = 0;
1931
1932 $taskstatic = new Task($this->db);
1933
1934 // Security check
1935 $socid = 0;
1936 if ($user->socid > 0) {
1937 $socid = $user->socid;
1938 }
1939
1940 $tasksarray = $taskstatic->getTasksArray(0, 0, $this->id, $socid, 0);
1941
1942 foreach ($tasksarray as $tasktoshiftdate) {
1943 $to_update = false;
1944 // Fetch only if update of date will be made
1945 if ((!empty($tasktoshiftdate->date_start)) || (!empty($tasktoshiftdate->date_end))) {
1946 //dol_syslog(get_class($this)."::shiftTaskDate to_update", LOG_DEBUG);
1947 $to_update = true;
1948 $task = new Task($this->db);
1949 $result = $task->fetch($tasktoshiftdate->id);
1950 if (!$result) {
1951 $error++;
1952 $this->error .= $task->error;
1953 }
1954 }
1955 //print "$this->date_start + $tasktoshiftdate->date_start - $old_project_dt_start";exit;
1956
1957 //Calculate new task start date with difference between old proj start date and origin task start date
1958 if (!empty($tasktoshiftdate->date_start)) {
1959 $task->date_start = $this->date_start + ($tasktoshiftdate->date_start - $old_project_dt_start);
1960 }
1961
1962 //Calculate new task end date with difference between origin proj end date and origin task end date
1963 if (!empty($tasktoshiftdate->date_end)) {
1964 $task->date_end = $this->date_start + ($tasktoshiftdate->date_end - $old_project_dt_start);
1965 }
1966
1967 if ($to_update) {
1968 $result = $task->update($user);
1969 if (!$result) {
1970 $error++;
1971 $this->error .= $task->error;
1972 }
1973 }
1974 }
1975 if ($error != 0) {
1976 return -1;
1977 }
1978 return $result;
1979 }
1980
1981
1982 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
1990 public function update_element($tableName, $elementSelectId)
1991 {
1992 // phpcs:enable
1993 $sql = "UPDATE ".MAIN_DB_PREFIX.$tableName;
1994
1995 if ($tableName == "actioncomm") {
1996 $sql .= " SET fk_project=".$this->id;
1997 $sql .= " WHERE id=".((int) $elementSelectId);
1998 } elseif (in_array($tableName, ["entrepot","mrp_mo","stocktransfer_stocktransfer"])) {
1999 $sql .= " SET fk_project=".$this->id;
2000 $sql .= " WHERE rowid=".((int) $elementSelectId);
2001 } else {
2002 $sql .= " SET fk_projet=".$this->id;
2003 $sql .= " WHERE rowid=".((int) $elementSelectId);
2004 }
2005
2006 dol_syslog(get_class($this)."::update_element", LOG_DEBUG);
2007 $resql = $this->db->query($sql);
2008 if (!$resql) {
2009 $this->error = $this->db->lasterror();
2010 return -1;
2011 } else {
2012 return 1;
2013 }
2014 }
2015
2016 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2026 public function remove_element($tableName, $elementSelectId, $projectfield = 'fk_projet')
2027 {
2028 // phpcs:enable
2029 $sql = "UPDATE ".MAIN_DB_PREFIX.$tableName;
2030
2031 if ($tableName == "actioncomm") {
2032 $sql .= " SET fk_project=NULL";
2033 $sql .= " WHERE id=".((int) $elementSelectId);
2034 } else {
2035 $sql .= " SET ".$projectfield."=NULL";
2036 $sql .= " WHERE rowid=".((int) $elementSelectId);
2037 }
2038
2039 dol_syslog(get_class($this)."::remove_element", LOG_DEBUG);
2040 $resql = $this->db->query($sql);
2041 if (!$resql) {
2042 $this->error = $this->db->lasterror();
2043 return -1;
2044 } else {
2045 return 1;
2046 }
2047 }
2048
2059 public function generateDocument($modele, $outputlangs, $hidedetails = 0, $hidedesc = 0, $hideref = 0)
2060 {
2061 global $conf, $langs;
2062
2063 $langs->load("projects");
2064
2065 if (!dol_strlen($modele)) {
2066 $modele = 'baleine';
2067
2068 if ($this->model_pdf) {
2069 $modele = $this->model_pdf;
2070 } elseif (getDolGlobalString('PROJECT_ADDON_PDF')) {
2071 $modele = getDolGlobalString('PROJECT_ADDON_PDF');
2072 }
2073 }
2074
2075 $modelpath = "core/modules/project/doc/";
2076
2077 return $this->commonGenerateDocument($modelpath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref);
2078 }
2079
2080
2090 public function loadTimeSpent($datestart, $taskid = 0, $userid = 0)
2091 {
2092 $this->weekWorkLoad = array();
2093 $this->weekWorkLoadPerTask = array();
2094
2095 if (empty($datestart)) {
2096 dol_print_error(null, 'Error datestart parameter is empty');
2097 }
2098
2099 $sql = "SELECT ptt.rowid as taskid, ptt.element_duration, ptt.element_date, ptt.element_datehour, ptt.fk_element";
2100 $sql .= " FROM ".MAIN_DB_PREFIX."element_time AS ptt, ".MAIN_DB_PREFIX."projet_task as pt";
2101 $sql .= " WHERE ptt.fk_element = pt.rowid";
2102 $sql .= " AND ptt.elementtype = 'task'";
2103 $sql .= " AND pt.fk_projet = ".((int) $this->id);
2104 $sql .= " AND (ptt.element_date >= '".$this->db->idate($datestart)."' ";
2105 $sql .= " AND ptt.element_date <= '".$this->db->idate(dol_time_plus_duree($datestart, 1, 'w') - 1)."')";
2106 if ($taskid) {
2107 $sql .= " AND ptt.fk_element=".((int) $taskid);
2108 }
2109 if (is_numeric($userid)) {
2110 $sql .= " AND ptt.fk_user=".((int) $userid);
2111 }
2112
2113 //print $sql;
2114 $resql = $this->db->query($sql);
2115 if ($resql) {
2116 $daylareadyfound = array();
2117
2118 $num = $this->db->num_rows($resql);
2119 $i = 0;
2120 // Loop on each record found, so each couple (project id, task id)
2121 while ($i < $num) {
2122 $obj = $this->db->fetch_object($resql);
2123 $day = $this->db->jdate($obj->element_date); // task_date is date without hours
2124 if (empty($daylareadyfound[$day])) {
2125 $this->weekWorkLoad[$day] = $obj->element_duration;
2126 $this->weekWorkLoadPerTask[$day][$obj->fk_element] = $obj->element_duration;
2127 } else {
2128 $this->weekWorkLoad[$day] += $obj->element_duration;
2129 $this->weekWorkLoadPerTask[$day][$obj->fk_element] += $obj->element_duration;
2130 }
2131 $daylareadyfound[$day] = 1;
2132 $i++;
2133 }
2134 $this->db->free($resql);
2135 return 1;
2136 } else {
2137 $this->error = "Error ".$this->db->lasterror();
2138 dol_syslog(get_class($this)."::fetch ".$this->error, LOG_ERR);
2139 return -1;
2140 }
2141 }
2142
2152 public function loadTimeSpentMonth($datestart, $taskid = 0, $userid = 0)
2153 {
2154 $this->monthWorkLoad = array();
2155 $this->monthWorkLoadPerTask = array();
2156
2157 if (empty($datestart)) {
2158 dol_print_error(null, 'Error datestart parameter is empty');
2159 }
2160
2161 $sql = "SELECT ptt.rowid as taskid, ptt.element_duration, ptt.element_date, ptt.element_datehour, ptt.fk_element";
2162 $sql .= " FROM ".MAIN_DB_PREFIX."element_time AS ptt, ".MAIN_DB_PREFIX."projet_task as pt";
2163 $sql .= " WHERE ptt.fk_element = pt.rowid";
2164 $sql .= " AND ptt.elementtype = 'task'";
2165 $sql .= " AND pt.fk_projet = ".((int) $this->id);
2166 $sql .= " AND (ptt.element_date >= '".$this->db->idate($datestart)."' ";
2167 $sql .= " AND ptt.element_date <= '".$this->db->idate(dol_time_plus_duree($datestart, 1, 'm') - 1)."')";
2168 if ($taskid) {
2169 $sql .= " AND ptt.fk_element=".((int) $taskid);
2170 }
2171 if (is_numeric($userid)) {
2172 $sql .= " AND ptt.fk_user=".((int) $userid);
2173 }
2174
2175 //print $sql;
2176 $resql = $this->db->query($sql);
2177 if ($resql) {
2178 $weekalreadyfound = array();
2179
2180 $num = $this->db->num_rows($resql);
2181 $i = 0;
2182 // Loop on each record found, so each couple (project id, task id)
2183 while ($i < $num) {
2184 $obj = $this->db->fetch_object($resql);
2185 if (!empty($obj->element_date)) {
2186 $date = explode('-', $obj->element_date);
2187 $week_number = getWeekNumber($date[2], $date[1], $date[0]);
2188 }
2189 '@phan-var-force int $week_number'; // Needed because phan considers it might be null
2190 if (empty($weekalreadyfound[$week_number])) {
2191 $this->monthWorkLoad[$week_number] = $obj->element_duration;
2192 $this->monthWorkLoadPerTask[$week_number][$obj->fk_element] = $obj->element_duration;
2193 } else {
2194 $this->monthWorkLoad[$week_number] += $obj->element_duration;
2195 $this->monthWorkLoadPerTask[$week_number][$obj->fk_element] += $obj->element_duration;
2196 }
2197 $weekalreadyfound[$week_number] = 1;
2198 $i++;
2199 }
2200 $this->db->free($resql);
2201 return 1;
2202 } else {
2203 $this->error = "Error ".$this->db->lasterror();
2204 dol_syslog(get_class($this)."::fetch ".$this->error, LOG_ERR);
2205 return -1;
2206 }
2207 }
2208
2209 // phpcs:disable PEAR.NamingConventions.ValidFunctionName.ScopeNotCamelCaps
2216 public function load_board($user)
2217 {
2218 // phpcs:enable
2219 global $conf, $langs;
2220
2221 // For external user, no check is done on company because readability is managed by public status of project and assignment.
2222 //$socid=$user->socid;
2223
2224 $response = new WorkboardResponse();
2225 $response->warning_delay = $conf->project->warning_delay / 60 / 60 / 24;
2226 $response->label = $langs->trans("OpenedProjects");
2227 $response->labelShort = $langs->trans("Opened");
2228 $response->url = DOL_URL_ROOT.'/projet/list.php?search_project_user=-1&search_status=1&mainmenu=project';
2229 $response->img = img_object('', "projectpub");
2230 $response->nbtodo = 0;
2231 $response->nbtodolate = 0;
2232
2233 $sql = "SELECT p.rowid, p.fk_statut as status, p.fk_opp_status, p.datee as datee";
2234 $sql .= " FROM (".MAIN_DB_PREFIX."projet as p";
2235 $sql .= ")";
2236 $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."societe as s on p.fk_soc = s.rowid";
2237 // For external user, no check is done on company permission because readability is managed by public status of project and assignment.
2238 //if (! $user->rights->societe->client->voir && ! $socid) $sql .= " LEFT JOIN ".MAIN_DB_PREFIX."societe_commerciaux as sc ON sc.fk_soc = s.rowid";
2239 $sql .= " WHERE p.fk_statut = 1";
2240 $sql .= " AND p.entity IN (".getEntity('project').')';
2241
2242
2243 $projectsListId = null;
2244 if (!$user->hasRight("projet", "all", "lire")) {
2245 $response->url = DOL_URL_ROOT.'/projet/list.php?search_status=1&mainmenu=project';
2246 $projectsListId = $this->getProjectsAuthorizedForUser($user, 0, 1);
2247 if (empty($projectsListId)) {
2248 return $response;
2249 }
2250
2251 $sql .= " AND p.rowid IN (".$this->db->sanitize($projectsListId).")";
2252 }
2253
2254 // No need to check company, as filtering of projects must be done by getProjectsAuthorizedForUser
2255 //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).")";
2256 // For external user, no check is done on company permission because readability is managed by public status of project and assignment.
2257 //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))";
2258
2259 //print $sql;
2260 $resql = $this->db->query($sql);
2261 if ($resql) {
2262 $project_static = new Project($this->db);
2263
2264
2265 // This assignment in condition is not a bug. It allows walking the results.
2266 while ($obj = $this->db->fetch_object($resql)) {
2267 $response->nbtodo++;
2268
2269 $project_static->statut = $obj->status;
2270 $project_static->opp_status = $obj->fk_opp_status;
2271 $project_static->date_end = $this->db->jdate($obj->datee);
2272
2273 if ($project_static->hasDelay()) {
2274 $response->nbtodolate++;
2275 }
2276 }
2277
2278 return $response;
2279 }
2280
2281 $this->error = $this->db->error();
2282 return -1;
2283 }
2284
2293 public static function replaceThirdparty(DoliDB $dbs, $origin_id, $dest_id)
2294 {
2295 $tables = array(
2296 'projet'
2297 );
2298
2299 return CommonObject::commonReplaceThirdparty($dbs, $origin_id, $dest_id, $tables);
2300 }
2301
2302
2308 public function loadStateBoard()
2309 {
2310 global $user;
2311
2312 $this->nb = array();
2313
2314 $sql = "SELECT count(p.rowid) as nb";
2315 $sql .= " FROM ".MAIN_DB_PREFIX."projet as p";
2316 $sql .= " WHERE";
2317 $sql .= " p.entity IN (".getEntity('project').")";
2318 if (!$user->hasRight('projet', 'all', 'lire')) {
2319 $projectsListId = $this->getProjectsAuthorizedForUser($user, 0, 1);
2320 $sql .= "AND p.rowid IN (".$this->db->sanitize($projectsListId).")";
2321 }
2322
2323 $resql = $this->db->query($sql);
2324 if ($resql) {
2325 while ($obj = $this->db->fetch_object($resql)) {
2326 $this->nb["projects"] = $obj->nb;
2327 }
2328 $this->db->free($resql);
2329 return 1;
2330 } else {
2331 dol_print_error($this->db);
2332 $this->error = $this->db->error();
2333 return -1;
2334 }
2335 }
2336
2337
2343 public function hasDelay()
2344 {
2345 global $conf;
2346
2347 if (!($this->statut == self::STATUS_VALIDATED)) {
2348 return false;
2349 }
2350 if (!$this->date_end) {
2351 return false;
2352 }
2353
2354 $now = dol_now();
2355
2356 return ($this->date_end) < ($now - $conf->project->warning_delay);
2357 }
2358
2359
2366 public function info($id)
2367 {
2368 $sql = 'SELECT c.rowid, datec as datec, tms as datem,';
2369 $sql .= ' date_close as datecloture,';
2370 $sql .= ' fk_user_creat as fk_user_author, fk_user_close as fk_user_cloture';
2371 $sql .= ' FROM '.MAIN_DB_PREFIX.'projet as c';
2372 $sql .= ' WHERE c.rowid = '.((int) $id);
2373 $result = $this->db->query($sql);
2374 if ($result) {
2375 if ($this->db->num_rows($result)) {
2376 $obj = $this->db->fetch_object($result);
2377
2378 $this->id = $obj->rowid;
2379
2380 $this->user_creation_id = $obj->fk_user_author;
2381 $this->user_closing_id = $obj->fk_user_cloture;
2382
2383 $this->date_creation = $this->db->jdate($obj->datec);
2384 $this->date_modification = $this->db->jdate($obj->datem);
2385 $this->date_cloture = $this->db->jdate($obj->datecloture);
2386 }
2387
2388 $this->db->free($result);
2389 } else {
2390 dol_print_error($this->db);
2391 }
2392 }
2393
2404 public function setCategories($categories)
2405 {
2406 require_once DOL_DOCUMENT_ROOT.'/categories/class/categorie.class.php';
2407 return parent::setCategoriesCommon($categories, Categorie::TYPE_PROJECT);
2408 }
2409
2410
2418 public function getLinesArray($user, $loadRoleMode = 1)
2419 {
2420 require_once DOL_DOCUMENT_ROOT.'/projet/class/task.class.php';
2421 $taskstatic = new Task($this->db);
2422
2423 $this->lines = $taskstatic->getTasksArray(0, $user, $this->id, 0, 0, '', '-1', '', 0, 0, array(), 0, array(), 0, $loadRoleMode);
2424 return 1;
2425 }
2426
2444 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 = '')
2445 {
2446 global $conf, $langs;
2447 // TODO EMAIL
2448
2449 return 1;
2450 }
2459 public function getKanbanView($option = '', $arraydata = null, $size = '')
2460 {
2461 global $conf, $langs;
2462
2463 $selected = (empty($arraydata['selected']) ? 0 : $arraydata['selected']);
2464
2465 if (empty($size)) {
2466 if (empty($conf->dol_optimize_smallscreen)) {
2467 $size = 'large';
2468 } else {
2469 $size = 'small';
2470 }
2471 }
2472
2473 $return = '<div class="box-flex-item '.($size == 'small' ? 'box-flex-item-small' : '').' box-flex-grow-zero">';
2474 $return .= '<div class="info-box info-box-sm">';
2475 $return .= '<span class="info-box-icon bg-infobox-action">';
2476 $return .= img_picto('', $this->public ? 'projectpub' : $this->picto);
2477 //$return .= '<i class="fa fa-dol-action"></i>'; // Can be image
2478 $return .= '</span>';
2479 $return .= '<div class="info-box-content">';
2480 $return .= '<span class="info-box-ref inline-block tdoverflowmax150 valignmiddle">'.(method_exists($this, 'getNomUrl') ? $this->getNomUrl() : $this->ref);
2481 if ($this->hasDelay()) {
2482 $return .= img_warning($langs->trans('Late'));
2483 }
2484 $return .= '</span>';
2485 if ($selected >= 0) {
2486 $return .= '<input id="cb'.$this->id.'" class="flat checkforselect fright" type="checkbox" name="toselect[]" value="'.$this->id.'"'.($selected ? ' checked="checked"' : '').'>';
2487 }
2488 // Date
2489 /*
2490 if (property_exists($this, 'date_start') && $this->date_start) {
2491 $return .= '<br><span class="info-box-label">'.dol_print_date($this->date_start, 'day').'</>';
2492 }
2493 if (property_exists($this, 'date_end') && $this->date_end) {
2494 if ($this->date_start) {
2495 $return .= ' - ';
2496 } else {
2497 $return .= '<br>';
2498 }
2499 $return .= '<span class="info-box-label">'.dol_print_date($this->date_end, 'day').'</span>';
2500 }*/
2501 if (property_exists($this, 'thirdparty') && is_object($this->thirdparty)) {
2502 $return .= '<br><div class="info-box-ref tdoverflowmax150 inline-block valignmiddle">'.$this->thirdparty->getNomUrl(1);
2503 $return .= '</div><div class="inline-block valignmiddle">';
2504 $return .= dol_print_phone($this->thirdparty->phone, $this->thirdparty->country_code, 0, $this->thirdparty->id, 'tel', 'hidenum', 'phone', $this->thirdparty->phone, 0, 'marginleftonly');
2505 $return .= '</div>';
2506 }
2507 if (!empty($arraydata['assignedusers'])) {
2508 $return .= '<br>';
2509 if ($this->public) {
2510 $return .= img_picto($langs->trans('Visibility').': '.$langs->trans('SharedProject'), 'world', 'class="paddingrightonly valignmiddle"');
2511 //print $langs->trans('SharedProject');
2512 } else {
2513 $return .= img_picto($langs->trans('Visibility').': '.$langs->trans('PrivateProject'), 'private', 'class="paddingrightonly valignmiddle"');
2514 //print $langs->trans('PrivateProject');
2515 }
2516
2517 $return .= ' <span class="small valignmiddle">'.$arraydata['assignedusers'].'</span>';
2518 }
2519 /*if (property_exists($this, 'user_author_id')) {
2520 $return .= '<br><span class="info-box-label opacitymedium">'.$langs->trans("Author").'</span>';
2521 $return .= '<span> : '.$user->getNomUrl(1).'</span>';
2522 }*/
2523 $return .= '<br><div>'; // start div line status
2524 if ($this->usage_opportunity && $this->opp_status_code) {
2525 //$return .= '<br><span class="info-bo-label opacitymedium">'.$langs->trans("OpportunityStatusShort").'</span>';
2526 //$return .= '<div class="small inline-block">'.dol_trunc($langs->trans("OppStatus".$this->opp_status_code), 5).'</div>';
2527 $return .= '<div class="opacitymedium small marginrightonly inline-block" title="'.dol_escape_htmltag($langs->trans("OppStatus".$this->opp_status_code)).'">'.round($this->opp_percent).'%</div>';
2528 $return .= ' <div class="amount small marginrightonly inline-block">'.price($this->opp_amount).'</div>';
2529 }
2530 if (method_exists($this, 'getLibStatut')) {
2531 $return .= '<div class="info-box-status small inline-block valignmiddle">'.$this->getLibStatut(3).'</div>';
2532 }
2533 $return .= '</div>'; // end div line status
2534
2535 $return .= '</div>';
2536 $return .= '</div>';
2537 $return .= '</div>';
2538
2539 return $return;
2540 }
2541
2547 public function getChildren()
2548 {
2549 $children = [];
2550 $sql = 'SELECT rowid,title';
2551 $sql .= ' FROM '.MAIN_DB_PREFIX.'projet';
2552 $sql .= ' WHERE fk_project = '.((int) $this->id);
2553 $sql .= ' ORDER BY title';
2554 $result = $this->db->query($sql);
2555 if ($result) {
2556 $n = $this->db->num_rows($result);
2557 while ($n) {
2558 $children[] = $this->db->fetch_object($result);
2559 $n--;
2560 }
2561 $this->db->free($result);
2562 } else {
2563 dol_print_error($this->db);
2564 }
2565
2566 return $children;
2567 }
2568
2573 public function createWeeklyReport()
2574 {
2575 global $mysoc, $user;
2576
2577 $now = dol_now();
2578 $nowDate = dol_getdate($now, true);
2579
2580 $errormesg = '';
2581 $errorsMsg = array();
2582
2583 $firstDayOfWeekTS = dol_get_first_day_week($nowDate['mday'], $nowDate['mon'], $nowDate['year']);
2584
2585 $firstDayOfWeekDate = dol_mktime(0, 0, 0, $nowDate['mon'], $firstDayOfWeekTS['first_day'], $nowDate['year']);
2586
2587 $lastWeekStartTS = dol_time_plus_duree($firstDayOfWeekDate, -7, 'd');
2588
2589 $lastWeekEndTS = dol_time_plus_duree($lastWeekStartTS, 6, 'd');
2590
2591 $startDate = dol_print_date($lastWeekStartTS, '%Y-%m-%d 00:00:00');
2592 $endDate = dol_print_date($lastWeekEndTS, '%Y-%m-%d 23:59:59');
2593
2594 $sql = "SELECT
2595 u.rowid AS user_id,
2596 CONCAT(u.firstname, ' ', u.lastname) AS name,
2597 u.email,u.weeklyhours,
2598 SUM(et.element_duration) AS total_seconds
2599 FROM
2600 ".MAIN_DB_PREFIX."element_time AS et
2601 JOIN
2602 ".MAIN_DB_PREFIX."user AS u ON et.fk_user = u.rowid
2603 WHERE
2604 et.element_date BETWEEN '".$this->db->escape($startDate)."' AND '".$this->db->escape($endDate)."'
2605 AND et.elementtype = 'task'
2606 GROUP BY
2607 et.fk_user";
2608
2609 $resql = $this->db->query($sql);
2610 if (!$resql) {
2611 dol_print_error($this->db);
2612 return -1;
2613 } else {
2614 $reportContent = "<span>Weekly time report from $startDate to $endDate </span><br><br>";
2615 $reportContent .= '<table border="1" style="border-collapse: collapse;">';
2616 $reportContent .= '<tr><th>Nom d\'utilisateur</th><th>Temps saisi (heures)</th><th>Temps travaillé par semaine (heures)</th></tr>';
2617
2618 $weekendEnabled = 0;
2619 $to = '';
2620 $nbMailSend = 0;
2621 $error = 0;
2622 $errors_to = '';
2623 while ($obj = $this->db->fetch_object($resql)) {
2624 $to = $obj->email;
2625 $numHolidays = num_public_holiday($lastWeekStartTS, $lastWeekEndTS, $mysoc->country_code, 1);
2626 if (getDolGlobalString('MAIN_NON_WORKING_DAYS_INCLUDE_SATURDAY') && getDolGlobalString('MAIN_NON_WORKING_DAYS_INCLUDE_SUNDAY')) {
2627 $numHolidays = $numHolidays - 2;
2628 $weekendEnabled = 2;
2629 }
2630
2631 $dailyHours = $obj->weeklyhours / (7 - $weekendEnabled);
2632
2633 // Adjust total on seconde
2634 $adjustedSeconds = $obj->total_seconds + ($numHolidays * $dailyHours * 3600);
2635
2636 $totalHours = round($adjustedSeconds / 3600, 2);
2637
2638 $reportContent .= "<tr><td>{$obj->name}</td><td>{$totalHours}</td><td>".round($obj->weeklyhours, 2)."</td></tr>";
2639
2640 $reportContent .= '</table>';
2641
2642 require_once DOL_DOCUMENT_ROOT.'/core/class/CMailFile.class.php';
2643
2644 // PREPARE EMAIL
2645 $errormesg = '';
2646
2647 $subject = 'Rapport hebdomadaire des temps travaillés';
2648
2649 $from = getDolGlobalString('MAIN_MAIL_EMAIL_FROM');
2650 if (empty($from)) {
2651 $errormesg = "Failed to get sender into global setup MAIN_MAIL_EMAIL_FROM";
2652 $error++;
2653 }
2654
2655 $mail = new CMailFile($subject, $to, $from, $reportContent, array(), array(), array(), '', '', 0, -1, '', '', 0, 'text/html');
2656
2657 if ($mail->sendfile()) {
2658 $nbMailSend++;
2659
2660 // Add a line into event table
2661 require_once DOL_DOCUMENT_ROOT.'/comm/action/class/actioncomm.class.php';
2662
2663 // Insert record of emails sent
2664 $actioncomm = new ActionComm($this->db);
2665
2666 $actioncomm->type_code = 'AC_OTH_AUTO'; // Event insert into agenda automatically
2667 $actioncomm->socid = $this->thirdparty->id; // To link to a company
2668 $actioncomm->contact_id = 0;
2669
2670 $actioncomm->code = 'AC_EMAIL';
2671 $actioncomm->label = 'createWeeklyReportOK()';
2672 $actioncomm->fk_project = $this->id;
2673 $actioncomm->datep = dol_now();
2674 $actioncomm->datef = $actioncomm->datep;
2675 $actioncomm->percentage = -1; // Not applicable
2676 $actioncomm->authorid = $user->id; // User saving action
2677 $actioncomm->userownerid = $user->id; // Owner of action
2678 // Fields when action is an email (content should be added into note)
2679 $actioncomm->email_msgid = $mail->msgid;
2680 $actioncomm->email_subject = $subject;
2681 $actioncomm->email_from = $from;
2682 $actioncomm->email_sender = '';
2683 $actioncomm->email_to = $to;
2684
2685 $actioncomm->errors_to = $errors_to;
2686
2687 $actioncomm->elementtype = 'project_task';
2688 $actioncomm->fk_element = (int) $this->element;
2689
2690 $actioncomm->create($user);
2691 } else {
2692 $errormesg = $mail->error.' : '.$to;
2693 $error++;
2694
2695 // Add a line into event table
2696 require_once DOL_DOCUMENT_ROOT.'/comm/action/class/actioncomm.class.php';
2697
2698 // Insert record of emails sent
2699 $actioncomm = new ActionComm($this->db);
2700
2701 $actioncomm->type_code = 'AC_OTH_AUTO'; // Event insert into agenda automatically
2702 $actioncomm->socid = $this->thirdparty->id; // To link to a company
2703 $actioncomm->contact_id = 0;
2704
2705 $actioncomm->code = 'AC_EMAIL';
2706 $actioncomm->label = 'createWeeklyReportKO()';
2707 $actioncomm->note_private = $errormesg;
2708 $actioncomm->fk_project = $this->id;
2709 $actioncomm->datep = dol_now();
2710 $actioncomm->datef = $actioncomm->datep;
2711 $actioncomm->authorid = $user->id; // User saving action
2712 $actioncomm->userownerid = $user->id; // Owner of action
2713 // Fields when action is an email (content should be added into note)
2714 $actioncomm->email_msgid = $mail->msgid;
2715 $actioncomm->email_from = $from;
2716 $actioncomm->email_sender = '';
2717 $actioncomm->email_to = $to;
2718
2719 $actioncomm->errors_to = $errors_to;
2720
2721 $actioncomm->elementtype = 'project_task';
2722 $actioncomm->fk_element = (int) $this->element;
2723
2724 $actioncomm->create($user);
2725 }
2726 $this->db->commit();
2727 }
2728 }
2729 if (!empty($errormesg)) {
2730 $errorsMsg[] = $errormesg;
2731 }
2732
2733 if (!$error) {
2734 $this->output .= 'Nb of emails sent : '.$nbMailSend;
2735 dol_syslog(__METHOD__." end - ".$this->output, LOG_INFO);
2736 return 0;
2737 } else {
2738 $this->error = 'Nb of emails sent : '.$nbMailSend.', '.(empty($errorsMsg) ? $error : implode(', ', $errorsMsg));
2739 dol_syslog(__METHOD__." end - ".$this->error, LOG_INFO);
2740 return $error;
2741 }
2742 }
2743}
print $langs trans("AuditedSecurityEvents").'</strong >< span class="opacitymedium"></span >< br > status
Or an array listing all the potential status of the object: array: int of the status => translated la...
Definition security.php:636
$object ref
Definition info.php:79
Class to manage agenda events (actions)
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:669
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:124
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:763
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.
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