Update facture.class.php

This commit is contained in:
Frédéric FRANCE 2022-09-21 09:42:44 +02:00 committed by GitHub
parent 4e15fdd715
commit f53e3e9cce
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -129,22 +129,32 @@ class Facture extends CommonInvoice
/**
* @var int Date expected for delivery
* @deprecated
* @see delivery_date
*/
public $date_livraison; // deprecated; Use delivery_date instead.
public $date_livraison;
/**
* @var int Date expected for delivery
*/
public $delivery_date; // Date expected of shipment (date starting shipment, not the reception that occurs some days after)
/**
* @var string customer ref
* @deprecated
* @see ref_customer
*/
public $ref_client;
/**
* @var string customer ref
*/
public $ref_client; // deprecated; use ref_customer instead
public $ref_customer;
/**
* @var int Ref Int
* @deprecated
*/
public $ref_int; // deprecated
public $ref_int;
//Check constants for types
public $type = self::TYPE_STANDARD;