Code comment

This commit is contained in:
Laurent Destailleur 2021-12-13 16:09:06 +01:00
parent 49853adf82
commit 85dc6006c4

View File

@ -913,10 +913,11 @@ class Contrat extends CommonObject
return -3;
}
// Now set the global properties on contract not stored into database.
$this->nbofservices = count($this->lines);
$this->total_ttc = price2num($total_ttc); // TODO For the moment value is false as value is not stored in database for line linked to products
$this->total_tva = price2num($total_vat); // TODO For the moment value is false as value is not stored in database for line linked to products
$this->total_ht = price2num($total_ht); // TODO For the moment value is false as value is not stored in database for line linked to products
$this->total_ttc = price2num($total_ttc);
$this->total_tva = price2num($total_vat);
$this->total_ht = price2num($total_ht);
return $this->lines;
}