This commit is contained in:
Frédéric FRANCE 2023-02-20 20:43:23 +01:00
parent 341a9ad283
commit 3a94290ef7
2 changed files with 31 additions and 1 deletions

View File

@ -83,6 +83,16 @@ class ProductCombination
*/ */
public $variation_ref_ext = ''; public $variation_ref_ext = '';
/**
* @var string error
*/
public $error;
/**
* @var string[] array of errors
*/
public $errors = array();
/** /**
* Constructor * Constructor
* *
@ -1043,6 +1053,16 @@ class ProductCombinationLevel
*/ */
public $variation_price_percentage = false; public $variation_price_percentage = false;
/**
* @var string error
*/
public $error;
/**
* @var string[] array of errors
*/
public $errors = array();
/** /**
* Constructor * Constructor
* *
@ -1114,7 +1134,7 @@ class ProductCombinationLevel
/** /**
* Assign vars form an stdclass like sql obj * Assign vars form an stdclass like sql obj
* *
* @param int $obj Object resultset * @param Object $obj Object resultset
* @return int <0 KO, >0 OK * @return int <0 KO, >0 OK
*/ */
public function fetchFormObj($obj) public function fetchFormObj($obj)

View File

@ -52,6 +52,16 @@ class ProductCombination2ValuePair
*/ */
public $fk_prod_attr_val; public $fk_prod_attr_val;
/**
* @var string error
*/
public $error;
/**
* @var string[] array of errors
*/
public $errors = array();
/** /**
* Constructor * Constructor
* *