Explorar o código

Merge pull request #22341 from frederic34/patch-5

Update doc in facture.class.php
Laurent Destailleur %!s(int64=2) %!d(string=hai) anos
pai
achega
6f32e89b21
Modificáronse 1 ficheiros con 13 adicións e 3 borrados
  1. 13 3
      htdocs/compta/facture/class/facture.class.php

+ 13 - 3
htdocs/compta/facture/class/facture.class.php

@@ -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;