FIX 16.0 - copy title over ref on FactureFournisseurRec object

This commit is contained in:
atm-florian 2022-04-01 15:26:06 +02:00
parent a51c868a8e
commit 560b8dc04c

View File

@ -242,6 +242,7 @@ class FactureFournisseurRec extends CommonInvoice
// Clean parameters
$this->titre = empty($this->titre) ? '' : $this->titre;
$this->ref = $this->{$this->table_ref_field};
$this->ref_supplier = empty($this->ref_supplier) ? '' : $this->ref_supplier;
$this->usenewprice = empty($this->usenewprice) ? 0 : $this->usenewprice;
$this->suspended = empty($this->suspended) ? 0 : $this->suspended;
@ -583,6 +584,7 @@ class FactureFournisseurRec extends CommonInvoice
$this->id = $obj->rowid;
$this->titre = $obj->titre;
$this->ref = $this->{$this->table_ref_field};
$this->ref_supplier = $obj->ref_supplier;
$this->entity = $obj->entity;
$this->socid = $obj->fk_soc;