2
0
forked from Wavyzz/dolibarr

NEW multilangs in fetch_lines

This commit is contained in:
ptibogxiv
2019-06-25 15:41:20 +02:00
committed by GitHub
parent 1bce2f085e
commit 9e88bf1f1c

View File

@@ -1890,8 +1890,9 @@ class Commande extends CommonOrder
* @param int $only_product Return only physical products
* @return int <0 if KO, >0 if OK
*/
public function fetch_lines($only_product = 0)
public function fetch_lines($only_product = 0, $loadalsotranslation = 0)
{
global $langs, $conf;
// phpcs:enable
$this->lines=array();
@@ -1983,6 +1984,13 @@ class Commande extends CommonOrder
$line->multicurrency_total_ttc = $objp->multicurrency_total_ttc;
$line->fetch_optionals();
// multilangs
if (! empty($conf->global->MAIN_MULTILANGS) && ! empty($objp->fk_product) && ! empty($loadalsotranslation)) {
$line = new Product($this->db);
$line->fetch($objp->fk_product);
$line->getMultiLangs();
}
$this->lines[$i] = $line;