This commit is contained in:
Frédéric FRANCE 2023-04-24 20:24:34 +02:00 committed by GitHub
parent 06f8291e07
commit 60b308b394
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -114,22 +114,42 @@ class Facture extends CommonInvoice
public $author;
/**
* @var int ID
* @deprecated
* @see $fk_user_author
*/
public $user_author;
/**
* @var int ID
*/
public $fk_user_author;
/**
* @var int ID
* @deprecated
* @see $fk_user_valid
*/
public $user_valid;
/**
* @var int ID
*/
public $fk_user_valid;
/**
* @var int ID
* @deprecated
* @see $fk_uesr_modif
*/
public $user_modification;
/**
* @var int ID
*/
public $fk_user_modif;
public $date; // Date invoice
public $datem;