clean code

This commit is contained in:
Frédéric France 2022-09-21 21:01:18 +02:00
parent caa54f7f11
commit 2247bc2ae4

View File

@ -255,6 +255,14 @@ class Product extends CommonObject
*/ */
public $status = 0; public $status = 0;
/**
* Status indicates whether the product is on sale '1' or not '0'
* @var int
* @deprecated
* @see $status
*/
public $tosell;
/** /**
* Status indicate whether the product is available for purchase '1' or not '0' * Status indicate whether the product is available for purchase '1' or not '0'
* *
@ -262,6 +270,14 @@ class Product extends CommonObject
*/ */
public $status_buy = 0; public $status_buy = 0;
/**
* Status indicate whether the product is available for purchase '1' or not '0'
* @var int
* @deprecated
* @see $status_buy
*/
public $tobuy;
/** /**
* Status indicates whether the product is a finished product '1' or a raw material '0' * Status indicates whether the product is a finished product '1' or a raw material '0'
* *