713,12 → 713,9 |
static function baseflor_ligne($obs, &$ligne) { |
// Attention la fonction suppose que l'on ait fait appel à baseflor_preload avant |
// d'être appelée |
$ligne = array_merge($ligne, self::$baseflor_col)); |
if(! $obs['nom_ret_nn']) { |
return; |
} |
|
if(! self::referenceTableExiste()) { |
if(!$obs['nom_ret_nn'] || !self::referenceTableExiste()) { |
$ligne = array_merge($ligne, array_fill_keys(self::$baseflor_col, "")); |
return; |
} |
|
731,7 → 728,7 |
$ligne = array_merge($ligne, self::$cache['getBaseflor'][$cache_id]); |
return; |
} else { |
$ligne = array_merge($ligne, array_fill(0, count(self::$baseflor_col), " ")); |
$ligne = array_merge($ligne, array_fill_keys(self::$baseflor_col, "")); |
return; |
} |
} |