This commit is contained in:
Frédéric FRANCE 2023-04-26 09:23:38 +02:00
parent 06f8291e07
commit 74ff77d8b2

View File

@ -117,6 +117,11 @@ abstract class CommonObject
*/ */
public $array_options = array(); public $array_options = array();
/**
* @var array Array with all fields and their property. Do not use it as a static var. It may be modified by constructor.
*/
public $fields = array();
/** /**
* @var mixed Array to store alternative languages values of object * @var mixed Array to store alternative languages values of object
*/ */
@ -2637,6 +2642,8 @@ abstract class CommonObject
switch ($this->element) { switch ($this->element) {
case 'propal': case 'propal':
/** @var Propal $this */
/** @var PropaleLigne $line */
$this->updateline( $this->updateline(
$line->id, $line->id,
$line->subprice, $line->subprice,
@ -2663,6 +2670,8 @@ abstract class CommonObject
); );
break; break;
case 'commande': case 'commande':
/** @var Commande $this */
/** @var OrderLine $line */
$this->updateline( $this->updateline(
$line->id, $line->id,
($line->description ? $line->description : $line->desc), ($line->description ? $line->description : $line->desc),
@ -2689,6 +2698,8 @@ abstract class CommonObject
); );
break; break;
case 'facture': case 'facture':
/** @var Facture $this */
/** @var FactureLigne $line */
$this->updateline( $this->updateline(
$line->id, $line->id,
($line->description ? $line->description : $line->desc), ($line->description ? $line->description : $line->desc),