Update fournisseur.commande.class.php

This commit is contained in:
Laurent Destailleur 2021-10-11 11:04:21 +02:00 committed by GitHub
parent 6e60e1f453
commit b43dcb24f0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2927,11 +2927,11 @@ class CommandeFournisseur extends CommonOrder
$this->user_approve_id2 = $obj->fk_user_approve2;
}
$this->date_creation = $obj->datec;
$this->date_modification = $obj->datem;
$this->date_approve = $obj->datea;
$this->date_approve2 = $obj->datea2;
$this->date_validation = $obj->date_validation;
$this->date_creation = $this->db->jdate($obj->datec);
$this->date_modification = $this->db->jdate($obj->datem);
$this->date_approve = $this->db->jdate($obj->datea);
$this->date_approve2 = $this->db->jdate($obj->datea2);
$this->date_validation = $this->db->jdate($obj->date_validation);
}
$this->db->free($result);
} else {