32require_once DOL_DOCUMENT_ROOT.
'/core/class/commonobject.class.php';
33require_once DOL_DOCUMENT_ROOT.
'/fichinter/class/fichinterligne.class.php';
34require_once DOL_DOCUMENT_ROOT.
'/core/class/commonsignedobject.class.php';
35require_once DOL_DOCUMENT_ROOT.
'/subtotals/class/commonsubtotal.class.php';
45 use CommonSignedObject;
52 public $TRIGGER_PREFIX =
'FICHINTER';
54 public $fields = array(
55 'rowid' => array(
'type' =>
'integer',
'label' =>
'TechnicalID',
'enabled' => 1,
'visible' => -1,
'notnull' => 1,
'position' => 10),
56 'fk_soc' => array(
'type' =>
'integer:Societe:societe/class/societe.class.php',
'label' =>
'ThirdParty',
'enabled' =>
'isModEnabled("societe")',
'visible' => -1,
'notnull' => 1,
'position' => 15),
57 'fk_projet' => array(
'type' =>
'integer:Project:projet/class/project.class.php:1:(fk_statut:=:1)',
'label' =>
'Project',
'enabled' =>
'isModEnabled("project")',
'visible' => -1,
'position' => 20),
58 'fk_contrat' => array(
'type' =>
'integer:Contrat:contrat/class/contrat.class.php',
'label' =>
'Contract',
'enabled' =>
'isModEnabled("contract")',
'visible' => -1,
'position' => 25),
59 'ref' => array(
'type' =>
'varchar(30)',
'label' =>
'Ref',
'enabled' => 1,
'visible' => -1,
'notnull' => 1,
'showoncombobox' => 1,
'position' => 30),
60 'ref_ext' => array(
'type' =>
'varchar(255)',
'label' =>
'RefExt',
'enabled' => 1,
'visible' => 0,
'position' => 35),
61 'ref_client' => array(
'type' =>
'varchar(255)',
'label' =>
'RefCustomer',
'enabled' => 1,
'visible' => -1,
'position' => 36),
62 'entity' => array(
'type' =>
'integer',
'label' =>
'Entity',
'default' =>
'1',
'enabled' => 1,
'visible' => -2,
'notnull' => 1,
'position' => 40,
'index' => 1),
63 'tms' => array(
'type' =>
'timestamp',
'label' =>
'DateModification',
'enabled' => 1,
'visible' => -1,
'notnull' => 1,
'position' => 45),
64 'datec' => array(
'type' =>
'datetime',
'label' =>
'DateCreation',
'enabled' => 1,
'visible' => -1,
'position' => 50),
65 'date_valid' => array(
'type' =>
'datetime',
'label' =>
'DateValidation',
'enabled' => 1,
'visible' => -1,
'position' => 55),
66 'datei' => array(
'type' =>
'date',
'label' =>
'Datei',
'enabled' => 1,
'visible' => -1,
'position' => 60),
67 'fk_user_author' => array(
'type' =>
'integer:User:user/class/user.class.php',
'label' =>
'UserAuthor',
'enabled' => 1,
'visible' => -1,
'position' => 65),
68 'fk_user_modif' => array(
'type' =>
'integer:User:user/class/user.class.php',
'label' =>
'UserModif',
'enabled' => 1,
'visible' => -2,
'notnull' => -1,
'position' => 70),
69 'fk_user_valid' => array(
'type' =>
'integer:User:user/class/user.class.php',
'label' =>
'UserValidation',
'enabled' => 1,
'visible' => -1,
'position' => 75),
70 'dateo' => array(
'type' =>
'date',
'label' =>
'Dateo',
'enabled' => 1,
'visible' => -1,
'position' => 85),
71 'datee' => array(
'type' =>
'date',
'label' =>
'Datee',
'enabled' => 1,
'visible' => -1,
'position' => 90),
72 'datet' => array(
'type' =>
'date',
'label' =>
'Datet',
'enabled' => 1,
'visible' => -1,
'position' => 95),
73 'duree' => array(
'type' =>
'integer',
'label' =>
'Duree',
'enabled' => 1,
'visible' => -1,
'position' => 100),
74 'signed_status' => array(
'type' =>
'smallint(6)',
'label' =>
'SignedStatus',
'enabled' => 1,
'visible' => -1,
'position' => 101,
'arrayofkeyval' => array(0 =>
'NoSignature', 1 =>
'SignedSender', 2 =>
'SignedReceiver', 3 =>
'SignedReceiverOnline', 9 =>
'SignedAll')),
75 'description' => array(
'type' =>
'html',
'label' =>
'Description',
'enabled' => 1,
'visible' => -1,
'position' => 105,
'showoncombobox' => 2),
76 'note_private' => array(
'type' =>
'html',
'label' =>
'NotePrivate',
'enabled' => 1,
'visible' => 0,
'position' => 110),
77 'note_public' => array(
'type' =>
'html',
'label' =>
'NotePublic',
'enabled' => 1,
'visible' => 0,
'position' => 115),
78 'model_pdf' => array(
'type' =>
'varchar(255)',
'label' =>
'PDFTemplate',
'enabled' => 1,
'visible' => 0,
'position' => 120),
79 'last_main_doc' => array(
'type' =>
'varchar(255)',
'label' =>
'LastMainDoc',
'enabled' => 1,
'visible' => -1,
'position' => 125),
80 'import_key' => array(
'type' =>
'varchar(14)',
'label' =>
'ImportId',
'enabled' => 1,
'visible' => -2,
'position' => 130),
81 'extraparams' => array(
'type' =>
'varchar(255)',
'label' =>
'Extraparams',
'enabled' => 1,
'visible' => -1,
'position' => 135),
82 'fk_statut' => array(
'type' =>
'integer',
'label' =>
'Status',
'enabled' => 1,
'visible' => -1,
'position' => 500),
88 public $element =
'fichinter';
93 public $fk_element =
'fk_fichinter';
98 public $table_element =
'fichinter';
103 public $table_element_line =
'fichinterdet';
108 public $class_element_line =
'FichinterLigne';
113 public $picto =
'intervention';
184 public $fk_contrat = 0;
200 public $extraparams = array();
205 public $lines = array();
232 public $date_delivery;
238 public $delivery_date_receipt;
244 public $user_author_id;
269 $sql =
"SELECT count(fi.rowid) as nb";
270 $sql .=
" FROM ".MAIN_DB_PREFIX.
"fichinter as fi";
271 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"societe as s ON fi.fk_soc = s.rowid";
272 if (!$user->hasRight(
'societe',
'client',
'voir')) {
273 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.
"societe_commerciaux as sc ON s.rowid = sc.fk_soc";
274 $sql .=
" WHERE sc.fk_user = ".((int) $user->id);
277 $sql .=
" ".$clause.
" fi.entity IN (".
getEntity(
'intervention').
")";
279 $resql = $this->db->query($sql);
281 while ($obj = $this->db->fetch_object($resql)) {
282 $this->nb[
"interventions"] = $obj->nb;
284 $this->db->free($resql);
288 $this->error = $this->db->error();
300 public function create($user, $notrigger = 0)
307 if (!empty($this->ref)) {
310 $this->error =
'ErrorRefAlreadyExists';
311 dol_syslog(get_class($this).
"::create ".$this->error, LOG_WARNING);
312 $this->db->rollback();
316 if (!is_numeric($this->duration)) {
319 if (!empty($this->ref_client)) {
320 $this->ref_client = trim($this->ref_client);
323 if ($this->socid <= 0) {
324 $this->error =
'ErrorFicheinterCompanyDoesNotExist';
325 dol_syslog(get_class($this).
"::create ".$this->error, LOG_ERR);
331 $result = $soc->fetch($this->socid);
337 $sql =
"INSERT INTO ".MAIN_DB_PREFIX.
"fichinter (";
341 $sql .=
", ref_client";
343 $sql .=
", fk_user_author";
344 $sql .=
", fk_user_modif";
345 $sql .=
", description";
346 $sql .=
", model_pdf";
347 $sql .=
", fk_projet";
348 $sql .=
", fk_contrat";
349 $sql .=
", fk_statut";
350 $sql .=
", signed_status";
351 $sql .=
", note_private";
352 $sql .=
", note_public";
355 $sql .= ((int) $this->socid);
356 $sql .=
", '".$this->db->idate($now).
"'";
357 $sql .=
", '".$this->db->escape($this->ref).
"'";
358 $sql .=
", ".($this->ref_client ?
"'".$this->db->escape($this->ref_client).
"'" :
"null");
359 $sql .=
", ".((int) $this->entity);
360 $sql .=
", ".((int) $user->id);
361 $sql .=
", ".((int) $user->id);
362 $sql .=
", ".($this->description ?
"'".$this->db->escape($this->
description).
"'" :
"null");
363 $sql .=
", '".$this->db->escape($this->model_pdf).
"'";
364 $sql .=
", ".((int) $this->fk_project > 0 ? ((
int) $this->fk_project) : 0);
365 $sql .=
", ".((int) $this->fk_contrat > 0 ? ((
int) $this->fk_contrat) : 0);
366 $sql .=
", ".((int) $this->
status);
367 $sql .=
", ".((int) $this->signed_status);
368 $sql .=
", ".($this->note_private ?
"'".$this->db->escape($this->note_private).
"'" :
"null");
369 $sql .=
", ".($this->note_public ?
"'".$this->db->escape($this->note_public).
"'" :
"null");
372 dol_syslog(get_class($this).
"::create", LOG_DEBUG);
373 $result = $this->db->query($sql);
375 $this->
id = $this->db->last_insert_id(MAIN_DB_PREFIX.
"fichinter");
378 $this->ref =
'(PROV'.$this->id.
')';
379 $sql =
'UPDATE '.MAIN_DB_PREFIX.
"fichinter SET ref='".$this->db->escape($this->ref).
"' WHERE rowid=".((int) $this->
id);
381 dol_syslog(get_class($this).
"::create", LOG_DEBUG);
382 $resql = $this->db->query($sql);
396 if (!$error && $this->origin && $this->origin_id) {
404 if (!$error && !$notrigger) {
406 $result = $this->call_trigger(
'FICHINTER_CREATE', $user);
417 $this->db->rollback();
418 $this->error = implode(
',', $this->errors);
419 dol_syslog(get_class($this).
"::create ".$this->error, LOG_ERR);
423 $this->error = $this->db->error();
424 $this->db->rollback();
436 public function update($user, $notrigger = 0)
440 if (!is_numeric($this->duration)) {
443 if (!
dol_strlen((
string) $this->fk_project)) {
444 $this->fk_project = 0;
446 if (!empty($this->ref_client)) {
447 $this->ref_client = trim($this->ref_client);
454 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"fichinter SET ";
455 $sql .=
"description = '".$this->db->escape($this->
description).
"'";
456 $sql .=
", duree = ".((int) $this->duration);
457 $sql .=
", ref_client = ".($this->ref_client ?
"'".$this->db->escape($this->ref_client).
"'" :
"null");
458 if ((
int) $this->fk_project > 0) {
459 $sql .=
", fk_projet = ".((int) $this->fk_project);
461 if (isset($this->datec)) {
462 $sql .=
", datec = ".($this->datec ?
"'".$this->db->idate($this->datec).
"'" :
"null");
464 if (isset($this->datev)) {
465 $sql .=
", date_valid = ".($this->datev ?
"'".$this->db->idate($this->datev).
"'" :
"null");
467 if (isset($this->datet)) {
468 $sql .=
", datet = ".($this->datet ?
"'".$this->db->idate($this->datet).
"'" :
"null");
470 $sql .=
", note_private = ".($this->note_private ?
"'".$this->db->escape($this->note_private).
"'" :
"null");
471 $sql .=
", note_public = ".($this->note_public ?
"'".$this->db->escape($this->note_public).
"'" :
"null");
472 $sql .=
", fk_user_modif = ".((int) $user->id);
473 $sql .=
" WHERE rowid = ".((int) $this->
id);
475 dol_syslog(get_class($this).
"::update", LOG_DEBUG);
476 if ($this->db->query($sql)) {
482 if (!$error && !$notrigger) {
484 $result = $this->call_trigger(
'FICHINTER_MODIFY', $user);
487 $this->db->rollback();
496 $this->error = $this->db->error();
497 $this->db->rollback();
510 public function fetch($rowid, $ref =
'', $ref_ext =
'')
512 $sql =
"SELECT f.rowid, f.ref, f.ref_client, f.description, f.fk_soc, f.fk_statut as status, f.signed_status,";
513 $sql .=
" f.datec, f.dateo, f.datee, f.datet,";
514 $sql .=
" f.date_valid as datev,";
515 $sql .=
" f.tms as datem,";
516 $sql .=
" f.fk_user_author, f.fk_user_modif,";
517 $sql .=
" f.duree, f.fk_projet as fk_project, f.note_public, f.note_private, f.model_pdf, f.last_main_doc, f.extraparams, fk_contrat, f.entity as entity";
518 $sql .=
" FROM ".MAIN_DB_PREFIX.
"fichinter as f";
519 $sql .=
" WHERE f.entity IN (".getEntity(
'intervention').
")";
521 $sql .=
" AND f.ref = '".$this->db->escape($ref).
"'";
522 } elseif ($ref_ext) {
523 $sql .=
" AND f.ref_ext = '".$this->db->escape($ref_ext).
"'";
525 $sql .=
" AND f.rowid = ".((int) $rowid);
528 $resql = $this->db->query($sql);
530 if ($this->db->num_rows($resql)) {
531 $obj = $this->db->fetch_object($resql);
533 $this->
id = $obj->rowid;
534 $this->
ref = $obj->ref;
535 $this->ref_client = $obj->ref_client;
537 $this->socid = $obj->fk_soc;
538 $this->
status = $obj->status;
539 $this->statut = $obj->status;
540 $this->signed_status = $obj->signed_status;
541 $this->duration = $obj->duree;
542 $this->datec = $this->db->jdate($obj->datec);
543 $this->dateo = $this->db->jdate($obj->dateo);
544 $this->datee = $this->db->jdate($obj->datee);
545 $this->datet = $this->db->jdate($obj->datet);
546 $this->datev = $this->db->jdate($obj->datev);
547 $this->datem = $this->db->jdate($obj->datem);
548 $this->fk_project = $obj->fk_project;
549 $this->note_public = $obj->note_public;
550 $this->note_private = $obj->note_private;
551 $this->model_pdf = $obj->model_pdf;
552 $this->fk_contrat = $obj->fk_contrat;
553 $this->entity = $obj->entity;
555 $this->user_author_id = $this->user_creation_id = $obj->fk_user_author;
556 $this->user_modification_id = $obj->fk_user_modif;
558 $this->extraparams = is_null($obj->extraparams) ? [] : (array) json_decode($obj->extraparams,
true);
560 $this->last_main_doc = $obj->last_main_doc;
572 $this->db->free($resql);
578 $this->error = $this->db->lasterror();
594 if ($this->
status <= self::STATUS_DRAFT) {
598 dol_syslog(get_class($this).
"::setDraft", LOG_DEBUG);
604 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"fichinter";
605 $sql .=
" SET fk_statut = ".self::STATUS_DRAFT;
606 $sql .=
" WHERE rowid = ".((int) $this->
id);
608 $resql = $this->db->query($sql);
611 $result = $this->call_trigger(
'FICHINTER_UNVALIDATE', $user);
622 $this->db->rollback();
626 $this->db->rollback();
627 $this->error = $this->db->lasterror();
642 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
646 if ($this->
status != self::STATUS_VALIDATED) {
652 if ((preg_match(
'/^[\(]?PROV/i', $this->
ref) || empty($this->
ref))) {
659 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"fichinter";
660 $sql .=
" SET fk_statut = 1";
661 $sql .=
", ref = '".$this->db->escape($num).
"'";
662 $sql .=
", date_valid = '".$this->db->idate($now).
"'";
663 $sql .=
", fk_user_valid = ".($user->id > 0 ? (int) $user->id :
"null");
664 $sql .=
" WHERE rowid = ".((int) $this->
id);
665 $sql .=
" AND entity IN (".getEntity(
'intervention').
")";
667 $sql .=
" AND fk_statut = 0";
669 dol_syslog(get_class($this).
"::setValid", LOG_DEBUG);
670 $resql = $this->db->query($sql);
676 if (!$error && !$notrigger) {
678 $result = $this->call_trigger(
'FICHINTER_VALIDATE', $user);
686 $this->oldref = $this->ref;
689 if (preg_match(
'/^[\(]?PROV/i', $this->
ref)) {
690 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
693 $sql =
'UPDATE '.MAIN_DB_PREFIX.
"ecm_files set filename = CONCAT('".$this->db->escape($this->newref).
"', SUBSTR(filename, ".(strlen($this->
ref) + 1).
")), filepath = 'ficheinter/".$this->db->escape($this->newref).
"'";
694 $sql .=
" WHERE filename LIKE '".$this->db->escape($this->
ref).
"%' AND filepath = 'ficheinter/".$this->db->escape($this->
ref).
"' and entity = ".((int) $this->entity);
695 $resql = $this->db->query($sql);
698 $this->error = $this->db->lasterror();
700 $sql =
'UPDATE '.MAIN_DB_PREFIX.
"ecm_files set filepath = 'ficheinter/".$this->db->escape($this->newref).
"'";
701 $sql .=
" WHERE filepath = 'ficheinter/".$this->db->escape($this->
ref).
"' and entity = ".((int)
$conf->entity);
702 $resql = $this->db->query($sql);
705 $this->error = $this->db->lasterror();
711 $dirsource =
$conf->ficheinter->dir_output.
'/'.$oldref;
712 $dirdest =
$conf->ficheinter->dir_output.
'/'.$newref;
713 if (!$error && file_exists($dirsource)) {
714 dol_syslog(get_class($this).
"::setValid rename dir ".$dirsource.
" into ".$dirdest);
716 if (@rename($dirsource, $dirdest)) {
719 $listoffiles =
dol_dir_list(
$conf->ficheinter->dir_output.
'/'.$newref,
'files', 1,
'^'.preg_quote($oldref,
'/'));
720 foreach ($listoffiles as $fileentry) {
721 $dirsource = $fileentry[
'name'];
722 $dirdest = preg_replace(
'/^'.preg_quote($oldref,
'/').
'/', $newref, $dirsource);
723 $dirsource = $fileentry[
'path'].
'/'.$dirsource;
724 $dirdest = $fileentry[
'path'].
'/'.$dirdest;
725 @rename($dirsource, $dirdest);
737 $this->date_validation = $now;
741 $this->db->rollback();
742 dol_syslog(get_class($this).
"::setValid ".$this->error, LOG_ERR);
763 if ($this->
status == self::STATUS_CLOSED) {
770 $sql =
'UPDATE ' . MAIN_DB_PREFIX . $this->table_element;
771 $sql .=
' SET fk_statut = ' . self::STATUS_CLOSED .
',';
772 $sql .=
" datet = '" . $this->db->idate($now) .
"',";
773 $sql .=
" fk_user_modif = " . ((int) $user->id);
774 $sql .=
" WHERE rowid = " . ((int) $this->
id);
776 $sql .=
" AND entity IN (".getEntity(
'intervention').
")";
778 if ($this->db->query($sql)) {
781 $result = $this->call_trigger(
'FICHINTER_CLOSE', $user);
794 $this->db->rollback();
798 $this->error = $this->db->lasterror();
799 $this->db->rollback();
814 $this->author =
new User($this->db);
815 $this->author->fetch($this->user_creation_id);
817 $thm = $this->author->thm;
819 foreach ($this->lines as $line) {
820 $amount += ($line->duration / 60 / 60 * (float) $thm);
838 public function generateDocument($modele, $outputlangs, $hidedetails = 0, $hidedesc = 0, $hideref = 0, $moreparams =
null)
842 $outputlangs->load(
"interventions");
847 if (!empty($this->model_pdf)) {
848 $modele = $this->model_pdf;
854 $modelpath =
"core/modules/fichinter/doc/";
856 return $this->
commonGenerateDocument($modelpath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams);
867 return $this->
LibStatut((isset($this->statut) ? $this->statut : $this->status), $mode);
883 if (empty($this->labelStatus) || empty($this->labelStatusShort)) {
884 $langs->load(
"interventions");
885 $langs->load(
"propal");
889 $this->labelStatus[
self::STATUS_BILLED] = $langs->transnoentitiesnoconv(
'StatusInterInvoiced');
893 $this->labelStatusShort[
self::STATUS_BILLED] = $langs->transnoentitiesnoconv(
'StatusInterInvoiced');
897 $statuscode =
'status'.$status;
898 if ($status == self::STATUS_BILLED || $status == self::STATUS_CLOSED) {
899 $statuscode =
'status6';
903 $status_label = $this->signed_status ? $this->labelStatus[$status] . $signed_label : $this->labelStatus[$status];
904 $status_label_short = $this->signed_status ? $this->labelStatusShort[$status] . $signed_label : $this->labelStatusShort[$status];
906 return dolGetStatus($status_label, $status_label_short,
'', $statuscode, $mode);
919 $langs->load(
'interventions');
922 $datas[
'picto'] =
img_picto(
'', $this->picto).
' <u class="paddingrightonly">'.$langs->trans(
"ShowIntervention").
'</u>';
923 $datas[
'picto'] .=
' '.$this->getLibStatut(5);
924 $datas[
'ref'] =
'<br><b>'.$langs->trans(
'Ref').
':</b> '.$this->ref;
939 public function getNomUrl($withpicto = 0, $option =
'', $notooltip = 0, $save_lastsearch_value = -1, $morecss =
'')
941 global
$conf, $langs, $hookmanager;
943 if (!empty(
$conf->dol_no_mouse_hover)) {
950 'objecttype' => $this->element,
953 $classfortooltip =
'classfortooltip';
956 $classfortooltip =
'classforajaxtooltip';
957 $dataparams =
' data-params="'.dol_escape_htmltag(json_encode($params)).
'"';
963 $url = DOL_URL_ROOT.
'/fichinter/card.php?id='.$this->id;
965 if ($option !==
'nolink') {
967 $add_save_lastsearch_values = ($save_lastsearch_value == 1 ? 1 : 0);
968 if ($save_lastsearch_value == -1 && isset($_SERVER[
"PHP_SELF"]) && preg_match(
'/list\.php/', $_SERVER[
"PHP_SELF"])) {
969 $add_save_lastsearch_values = 1;
971 if ($add_save_lastsearch_values) {
972 $url .=
'&save_lastsearch_values=1';
977 if (empty($notooltip)) {
979 $label = $langs->trans(
"ShowIntervention");
980 $linkclose .=
' alt="'.dolPrintHTMLForAttribute($label).
'"';
982 $linkclose .= ($label ?
' title="'.dolPrintHTMLForAttribute($label).
'"' :
' title="tocomplete"');
983 $linkclose .= $dataparams.
' class="'.$classfortooltip.($morecss ?
' '.$morecss :
'').
'"';
985 $linkclose = ($morecss ?
' class="'.$morecss.
'"' :
'');
988 if ($option ==
'nolink') {
989 $linkstart =
'<span';
991 $linkstart =
'<a href="'.$url.
'"';
993 $linkstart .= $linkclose.
'>';
994 if ($option ==
'nolink') {
995 $linkend =
'</span>';
1000 $result .= $linkstart;
1002 $result .=
img_object(($notooltip ?
'' : $label), ($this->picto ? $this->picto :
'generic'), ($notooltip ? (($withpicto != 2) ?
'class="paddingright"' :
'') :
'class="'.(($withpicto != 2) ?
'paddingright ' :
'').
'"'), 0, 0, $notooltip ? 0 : 1);
1005 if ($withpicto != 2) {
1006 $result .= $this->ref;
1009 $result .= $linkend;
1012 $hookmanager->initHooks(array(
'interventiondao'));
1013 $parameters = array(
'id' => $this->
id,
'getnomurl' => &$result);
1014 $reshook = $hookmanager->executeHooks(
'getNomUrl', $parameters, $this, $action);
1016 $result = $hookmanager->resPrint;
1018 $result .= $hookmanager->resPrint;
1034 global
$conf, $db, $langs;
1035 $langs->load(
"interventions");
1044 $dirmodels = array_merge(array(
'/'), (array)
$conf->modules_parts[
'models']);
1046 foreach ($dirmodels as $reldir) {
1050 $mybool = ((bool) @include_once $dir.$file) || $mybool;
1058 $obj =
new $classname();
1059 '@phan-var-force ModeleNumRefFicheinter $obj';
1061 $numref = $obj->getNextValue($soc, $this);
1063 if ($numref !=
"") {
1070 $langs->load(
"errors");
1071 print $langs->trans(
"Error").
" ".$langs->trans(
"Error_FICHEINTER_ADDON_NotDefined");
1084 $sql =
"SELECT f.rowid,";
1085 $sql .=
" f.datec,";
1086 $sql .=
" f.tms as date_modification,";
1087 $sql .=
" f.date_valid as datev,";
1088 $sql .=
" f.fk_user_author,";
1089 $sql .=
" f.fk_user_modif as fk_user_modification,";
1090 $sql .=
" f.fk_user_valid";
1091 $sql .=
" FROM ".MAIN_DB_PREFIX.
"fichinter as f";
1092 $sql .=
" WHERE f.rowid = ".((int) $id);
1094 $resql = $this->db->query($sql);
1096 if ($this->db->num_rows($resql)) {
1097 $obj = $this->db->fetch_object($resql);
1099 $this->
id = $obj->rowid;
1101 $this->date_creation = $this->db->jdate($obj->datec);
1102 $this->date_modification = $this->db->jdate($obj->date_modification);
1103 $this->date_validation = $this->db->jdate($obj->datev);
1105 $this->user_creation_id = $obj->fk_user_author;
1106 $this->user_validation_id = $obj->fk_user_valid;
1107 $this->user_modification_id = $obj->fk_user_modification;
1109 $this->db->free($resql);
1122 public function delete(
User $user, $notrigger = 0)
1124 global
$conf, $langs;
1125 require_once DOL_DOCUMENT_ROOT.
'/core/lib/files.lib.php';
1133 $result = $this->call_trigger(
'FICHINTER_DELETE', $user);
1136 $this->db->rollback();
1152 $this->error =
'ErrorFailToDeleteLinkedContact';
1158 $main = MAIN_DB_PREFIX.
'fichinterdet';
1159 $ef = $main.
"_extrafields";
1160 $sql =
"DELETE FROM ".$this->db->sanitize($ef).
" WHERE fk_object IN (SELECT rowid FROM ".$this->db->sanitize($main).
" WHERE fk_fichinter = ".((int) $this->
id).
")";
1162 $resql = $this->db->query($sql);
1169 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"fichinterdet";
1170 $sql .=
" WHERE fk_fichinter = ".((int) $this->
id);
1172 $resql = $this->db->query($sql);
1188 $sql =
"DELETE FROM ".MAIN_DB_PREFIX.
"fichinter";
1189 $sql .=
" WHERE rowid = ".((int) $this->
id);
1192 $resql = $this->db->query($sql);
1205 if ($conf->ficheinter->dir_output) {
1206 $dir =
$conf->ficheinter->dir_output.
"/".$fichinterref;
1207 $file =
$conf->ficheinter->dir_output.
"/".$fichinterref.
"/".$fichinterref.
".pdf";
1208 if (file_exists($file)) {
1212 $langs->load(
"errors");
1213 $this->error = $langs->trans(
"ErrorFailToDeleteFile", $file);
1217 if (file_exists($dir)) {
1219 $langs->load(
"errors");
1220 $this->error = $langs->trans(
"ErrorFailToDeleteDir", $dir);
1228 $this->db->commit();
1231 $this->db->rollback();
1247 if ($user->hasRight(
'ficheinter',
'creer')) {
1248 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"fichinter";
1249 $sql .=
" SET datei = '".$this->db->idate($delivery_date_receipt).
"'";
1250 $sql .=
" WHERE rowid = ".((int) $this->
id);
1251 $sql .=
" AND fk_statut = 0";
1253 if ($this->db->query($sql)) {
1254 $this->date_delivery = $delivery_date_receipt;
1255 $this->delivery_date_receipt = $delivery_date_receipt;
1258 $this->error = $this->db->error();
1259 dol_syslog(
"Fichinter::set_date_delivery Erreur SQL");
1278 if ($user->hasRight(
'ficheinter',
'creer')) {
1279 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"fichinter ";
1280 $sql .=
" SET description = '".$this->db->escape($description).
"',";
1281 $sql .=
" fk_user_modif = ".((int) $user->id);
1282 $sql .=
" WHERE rowid = ".((int) $this->
id);
1284 if ($this->db->query($sql)) {
1288 $this->error = $this->db->error();
1289 dol_syslog(
"Fichinter::set_description Erreur SQL");
1309 if ($user->hasRight(
'ficheinter',
'creer')) {
1310 $sql =
"UPDATE ".MAIN_DB_PREFIX.
"fichinter ";
1311 $sql .=
" SET fk_contrat = ".((int) $contractid);
1312 $sql .=
" WHERE rowid = ".((int) $this->
id);
1314 if ($this->db->query($sql)) {
1315 $this->fk_contrat = $contractid;
1318 $this->error = $this->db->error();
1339 global $hookmanager, $langs;
1340 $langs->load(
"errors");
1347 foreach ($this->lines as $line) {
1348 $line->fetch_optionals();
1352 $objFrom = clone $this;
1355 if (!empty($socid) && $socid != $this->socid) {
1356 $objsoc =
new Societe($this->db);
1358 if ($objsoc->fetch($socid) > 0) {
1359 $this->socid = $objsoc->id;
1362 $this->fk_project = 0;
1363 $this->fk_delivery_address = 0;
1375 $this->user_author_id = $user->id;
1376 $this->user_validation_id = 0;
1377 $this->date_creation =
'';
1378 $this->date_validation =
'';
1379 $this->signed_status = 0;
1381 $this->ref_client =
'';
1383 if (!$clone_notes) {
1384 $this->note_private =
'';
1385 $this->note_public =
'';
1389 $this->context[
'createfromclone'] =
'createfromclone';
1390 $result = $this->
create($user);
1397 foreach ($this->lines as $line) {
1398 $this->
addline($user, $this->
id, $line->desc, $line->datei, $line->duration, $line->array_options);
1402 if (is_object($hookmanager)) {
1403 $parameters = array(
'objFrom' => $objFrom);
1405 $reshook = $hookmanager->executeHooks(
'createFrom', $parameters, $this, $action);
1414 if ($clone_contacts) {
1415 foreach (array(
'internal',
'external') as $source) {
1416 $tab = $objFrom->liste_contact(-1, $source);
1417 if (is_array($tab) && count($tab) > 0) {
1418 foreach ($tab as $contacttoadd) {
1420 $contacttoadd[
'id'],
1421 $contacttoadd[
'code'],
1422 $contacttoadd[
'source']
1424 if ($this->error ==
'DB_ERROR_RECORD_ALREADY_EXISTS') {
1425 $this->error .= $langs->trans(
"ErrorThisContactIsAlreadyDefinedAsThisType");
1427 } elseif ($retAddContact < 0) {
1431 } elseif ($tab < 0) {
1432 $this->error .= $objFrom->error;
1438 unset($this->context[
'createfromclone']);
1442 $this->db->commit();
1445 $this->db->rollback();
1465 public function addline($user, $fichinterid, $desc, $date_intervention, $duration, $array_options = [], $type = 0, $rang = -1, $special_code = 0)
1467 dol_syslog(get_class($this).
"::addline $fichinterid, $desc, $date_intervention, $duration, $type, $rang, $special_code");
1469 if ($this->
status == self::STATUS_DRAFT) {
1475 $line->fk_fichinter = $fichinterid;
1476 $line->desc = $desc;
1477 $line->date = $date_intervention;
1478 $line->datei = $date_intervention;
1479 $line->duration = $duration;
1480 $line->product_type = $type;
1481 $line->rang = $rang;
1482 $line->special_code = $special_code;
1485 if (is_array($array_options) && count($array_options) > 0) {
1486 $line->array_options = $array_options;
1489 $result = $line->insert($user);
1492 $this->db->commit();
1495 $this->error = $this->db->error();
1496 $this->db->rollback();
1520 $this->
ref =
'SPECIMEN';
1521 $this->ref_client =
'SPECIMEN CLIENT';
1522 $this->specimen = 1;
1524 $this->datec = $now;
1525 $this->note_private =
'Private note';
1526 $this->note_public =
'SPECIMEN';
1527 $this->duration = 0;
1528 $this->user_creation_id = 1;
1531 while ($xnbp < $nbp) {
1533 $line->desc = $langs->trans(
"Description").
" ".$xnbp;
1534 $line->date = ($now - 3600 * (1 + $xnbp));
1535 $line->datei = ($now - 3600 * (1 + $xnbp));
1536 $line->duration = 600;
1537 $line->fk_fichinter = 0;
1538 $this->lines[$xnbp] = $line;
1541 $this->duration += $line->duration;
1556 $this->lines = array();
1558 $sql =
"SELECT rowid, fk_fichinter, description, duree, date, rang, extraparams";
1559 $sql .=
" FROM ".MAIN_DB_PREFIX.
"fichinterdet";
1560 $sql .=
" WHERE fk_fichinter = ".((int) $this->
id);
1561 $sql .=
" ORDER BY rang ASC, date ASC";
1563 dol_syslog(get_class($this).
"::fetch_lines", LOG_DEBUG);
1565 $resql = $this->db->query($sql);
1567 $num = $this->db->num_rows($resql);
1570 $objp = $this->db->fetch_object($resql);
1573 $line->id = $objp->rowid;
1574 $line->fk_fichinter = $objp->fk_fichinter;
1575 $line->desc = $objp->description;
1576 $line->duration = $objp->duree;
1578 $line->qty = round($objp->duree / 3600, 2);
1579 $line->date = $this->db->jdate($objp->date);
1580 $line->datei = $this->db->jdate($objp->date);
1581 $line->rang = $objp->rang;
1582 $line->product_type = 1;
1583 $line->fetch_optionals();
1585 $line->extraparams = !empty($objp->extraparams) ? (array) json_decode($objp->extraparams,
true) : array();
1587 $this->lines[$i] = $line;
1590 $this->db->free($resql);
1594 $this->error = $this->db->error();
1628 require_once DOL_DOCUMENT_ROOT.
'/categories/class/categorie.class.php';
1629 return parent::setCategoriesCommon($categories, Categorie::TYPE_FICHINTER);
1643 if ($user->hasRight(
'ficheinter',
'creer')) {
1650 $sql =
"UPDATE ".MAIN_DB_PREFIX.$this->table_element.
" SET ref_client = ".(empty($ref_client) ?
'NULL' :
"'".$this->db->escape($ref_client).
"'");
1651 $sql .=
" WHERE rowid = ".((int) $this->
id);
1653 dol_syslog(__METHOD__.
' $this->id='.$this->id.
', ref_client='.$ref_client, LOG_DEBUG);
1654 $resql = $this->db->query($sql);
1656 $this->errors[] = $this->db->error();
1661 $this->ref_client = $ref_client;
1664 if (!$notrigger && empty($error)) {
1666 $result = $this->call_trigger(
'FICHINTER_MODIFY', $user);
1674 $this->db->commit();
1677 foreach ($this->errors as $errmsg) {
1678 dol_syslog(__METHOD__.
' Error: '.$errmsg, LOG_ERR);
1679 $this->error .= ($this->error ?
', '.$errmsg : $errmsg);
1681 $this->db->rollback();
1696 public function getKanbanView($option =
'', $arraydata =
null)
1700 $selected = (empty($arraydata[
'selected']) ? 0 : $arraydata[
'selected']);
1702 $return =
'<div class="box-flex-item box-flex-grow-zero">';
1703 $return .=
'<div class="info-box info-box-sm">';
1704 $return .=
'<span class="info-box-icon bg-infobox-action">';
1706 $return .=
'</span>';
1707 $return .=
'<div class="info-box-content">';
1708 $return .=
'<span class="info-box-ref inline-block tdoverflowmax150 valignmiddle">' . $this->
getNomUrl() .
'</span>';
1709 if ($selected >= 0) {
1710 $return .=
'<input id="cb'.$this->id.
'" class="flat checkforselect fright" type="checkbox" name="toselect[]" value="'.$this->
id.
'"'.($selected ?
' checked="checked"' :
'').
'>';
1712 if (!empty($arraydata[
'thirdparty'])) {
1713 $tmpthirdparty = $arraydata[
'thirdparty'];
1714 '@phan-var-force Societe $tmpthirdparty';
1716 $return .=
'<br><span class="info-box-label">'.$tmpthirdparty->getNomUrl(1).
'</span>';
1718 if (!empty($this->duration)) {
1719 $return .=
'<br><span class="info-box-label ">'.$langs->trans(
"Duration").
' : '.
convertSecondToTime($this->duration,
'allhourmin').
'</span>';
1721 $return .=
'<br><div class="info-box-status">'.$this->getLibStatut(3).
'</div>';
1722 $return .=
'</div>';
1723 $return .=
'</div>';
1724 $return .=
'</div>';
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...
deleteEcmFiles($mode=0)
Delete related files of object in database.
add_object_linked($origin=null, $origin_id=null, $f_user=null, $notrigger=0)
Add an object link into llx_element_element.
commonGenerateDocument($modelspath, $modele, $outputlangs, $hidedetails, $hidedesc, $hideref, $moreparams=null)
Common function for all objects extending CommonObject for generating documents.
deleteObjectLinked($sourceid=null, $sourcetype='', $targetid=null, $targettype='', $rowid=0, $f_user=null, $notrigger=0)
Delete all links between an object $this.
setErrorsFromObject($object)
setErrorsFromObject
static isExistingObject($element, $id, $ref='', $ref_ext='')
Check if an object id or ref exists If you don't need or want to instantiate the object and just need...
deleteExtraFields()
Delete all extra fields values for the current object.
static commonReplaceThirdparty(DoliDB $dbs, $origin_id, $dest_id, array $tables, $ignoreerrors=0)
Function used to replace a thirdparty id with another one.
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.
add_contact($fk_socpeople, $type_contact, $source='external', $notrigger=0)
Add a link between element $this->element and a contact.
Class to manage Dolibarr database access.
const STATUS_BILLED
Billed.
initAsSpecimen()
Initialise an instance with random values.
createFromClone(User $user, $socid=0, $clone_contacts=false, $clone_notes=false)
Load an object from its id and create a new one in database.
getLibStatut($mode=0)
Returns the label status.
update($user, $notrigger=0)
Update an intervention.
static replaceThirdparty(DoliDB $dbs, $origin_id, $dest_id)
Function used to replace a thirdparty id with another one.
setClose($user, $notrigger=0)
Close intervention.
const STATUS_DRAFT
Draft status.
create($user, $notrigger=0)
Create an intervention into data base.
setCategories($categories)
Sets object to given categories.
set_description($user, $description)
Define the label of the intervention.
getTooltipContentArray($params)
getTooltipContentArray
set_date_delivery($user, $delivery_date_receipt)
Defines a delivery date of the receipt of intervention.
const STATUS_VALIDATED
Validated status.
fetch($rowid, $ref='', $ref_ext='')
Fetch a intervention.
const STATUS_CLOSED
Closed.
setDraft($user)
Set status to draft.
getNextNumRef($soc)
Returns the next non used reference of intervention depending on the module numbering assets within F...
getAmount()
Returns amount based on user thm.
addline($user, $fichinterid, $desc, $date_intervention, $duration, $array_options=[], $type=0, $rang=-1, $special_code=0)
Adding a line of intervention into data base.
setRefClient($user, $ref_client, $notrigger=0)
Set customer reference number.
set_contrat($user, $contractid)
Link intervention to a contract.
LibStatut($status, $mode=0)
Returns the label of a status.
setValid($user, $notrigger=0)
Validate a intervention.
loadStateBoard()
Load indicators into this->nb for board.
getNomUrl($withpicto=0, $option='', $notooltip=0, $save_lastsearch_value=-1, $morecss='')
Return clickable name (with picto eventually)
__construct($db)
Constructor.
generateDocument($modele, $outputlangs, $hidedetails=0, $hidedesc=0, $hideref=0, $moreparams=null)
Create a document onto disk according to template module.
info($id)
Load information on object.
fetch_lines()
Load array lines ->lines.
Class to manage intervention lines.
Class to manage third parties objects (customers, suppliers, prospects...)
Class to manage Dolibarr users.
print $langs trans("Ref").' m titre as m m statut as status
Or an array listing all the potential status of the object: array: int of the status => translated la...
getLibSignedStatus(int $mode=0)
Returns the label for signed status.
convertSecondToTime($iSecond, $format='all', $lengthOfDay=86400, $lengthOfWeek=7)
Return, in clear text, value of a number of seconds in days, hours and minutes.
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_file($file, $disableglob=0, $nophperrors=0, $nohook=0, $object=null, $allowdotdot=false, $indexdatabase=1, $nolog=0)
Remove a file or several files with a mask.
dol_delete_dir_recursive($dir, $count=0, $nophperrors=0, $onlysub=0, &$countdeleted=0, $indexdatabase=1, $nolog=0, $level=0)
Remove a directory $dir and its subdirectories (or only files and subdirectories)
dol_dir_list($utf8_path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0, $nbsecondsold=0)
Scan a directory and return a list of files/directories.
dol_delete_preview($object)
Delete all preview files linked to object instance.
dol_now($mode='gmt')
Return date for now.
setEntity($currentobject)
Set entity id to use when to create an object.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2, $allowothertags=array())
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 '.
img_object($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $allowothertags=array())
Show a picto called object_picto (generic function)
dol_sanitizeFileName($str, $newstr='_', $unaccent=1, $includequotes=0, $allowdash=0)
Clean a string to use it as a file name.
dol_strlen($string, $stringencoding='UTF-8')
Make a strlen call.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dolGetStatus($statusLabel='', $statusLabelShort='', $html='', $statusType='status0', $displayMode=0, $url='', $params=array())
Output the badge of a status.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_clone($srcobject, $native=2)
Create a clone of instance of object (new instance with same value for each properties) With native =...
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
dol_syslog($message, $level=LOG_INFO, $ident=0, $suffixinfilename='', $restricttologhandler='', $logcontext=null)
Write log message into outputs.
getEntity($element, $shared=1, $currentobject=null)
Get list of entity id to use.
print $langs trans("Show") . '< td style="' . $timeColor . '" align="center"> s</td > badge status0 badge status4 badge status3 Error badge status8< td align="center">< span class="badge ' . $badge . '"></span ></td >< td align="center">< a href="#" class="button button-small" onclick="openLogModal(this)" data-req="' . dol_escape_htmltag($reqSafe) . '" data-res="' . dol_escape_htmltag($resSafe) . '" data-err="' . dol_escape_htmltag($errSafe) . '">< span class="fa fa-search-plus"></span ></a ></td ></tr >< tr >< td colspan="' . $colspan . '" class="opacitymedium"></td ></tr ></table ></div ></form > logModal none logModal none s a JSON string
buildzip.php