This commit is contained in:
Laurent Destailleur 2022-06-14 18:14:24 +02:00
parent ff26031dc6
commit 86f7cbb46c
2 changed files with 13 additions and 4 deletions

View File

@ -178,7 +178,6 @@ if ($action == 'add') {
$newinter->entity = $object->entity;
$newinter->duree = $object->duree;
$newinter->datei = $object->date;
$newinter->description = $object->description;
$newinter->note_private = $object->note_private;

View File

@ -1473,9 +1473,19 @@ class FichinterLigne extends CommonObjectLine
*/
public $fk_fichinter;
public $desc; // Description ligne
public $datei; // Date intervention
public $duration; // Duree de l'intervention
public $desc; // Description ligne
/**
* @var int Date of intervention
*/
public $date; // Date intervention
/**
* @var int Date of intervention
* @deprecated
*/
public $datei; // Date intervention
public $duration; // Duration of intervention
public $rang = 0;
/**