Formattage
This commit is contained in:
parent
eaddebacdb
commit
f7763a5404
@ -297,11 +297,11 @@ class MBilans
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Liste les bilans disponibles au format numérique (et non PDF image) pour une entreprise
|
||||
* @param boolean $accesPartenaire
|
||||
* Accès autorisé aux partenaires distant si le bilan est absenr
|
||||
* Accès autorisé aux partenaires distant si le bilan est absent
|
||||
* @param number $nbMaxBilans
|
||||
* Nombre de bilans maximums retournés
|
||||
* @return array
|
||||
@ -419,7 +419,7 @@ class MBilans
|
||||
$ret = $this->iDb->select('jo.bilans',
|
||||
'dateProvPartenaire, dateExercice, dateExercicePre, dureeExercice, dureeExercicePre, monnaie, typeBilan, monnaieOrigine, unite, postes, partenaire, id, confidentiel, dateInsert',
|
||||
"siren='$this->siren' AND typeBilan='$typeBilan' AND dateExercice='$millesimeDB' $strSansBilansWeb", false, MYSQL_ASSOC);
|
||||
|
||||
|
||||
if ( $accesPartenaire ) {
|
||||
$iGreffe = new MGreffes($this->iDb);
|
||||
if ( count($ret) == 0 ) {
|
||||
@ -437,14 +437,14 @@ class MBilans
|
||||
}
|
||||
}
|
||||
$tabBilan = $iGreffe->getBilan($this->siren, $refPart);
|
||||
|
||||
|
||||
if ($tabBilan)
|
||||
{
|
||||
$strPostes='';
|
||||
foreach ($tabBilan['POSTES'] as $poste=>$valeur) {
|
||||
$strPostes.="$poste=$valeur;";
|
||||
}
|
||||
|
||||
|
||||
$tabInsert=array(
|
||||
'siren' => $this->siren,
|
||||
'dateProvPartenaire'=> $tabBilan['DATE_FRAICHE_BILAN'],
|
||||
@ -462,7 +462,7 @@ class MBilans
|
||||
if (!$this->iDb->insert('jo.bilans', $tabInsert, true)) {
|
||||
$this->iDb->update('jo.bilans', $tabInsert, "siren='$this->siren' AND typeBilan='$typeBilan' AND dateExercice='$millesimeDB'");
|
||||
}
|
||||
|
||||
|
||||
$ret = $this->iDb->select('jo.bilans', 'dateProvPartenaire, dateExercice, dateExercicePre, dureeExercice, dureeExercicePre, monnaie, typeBilan, monnaieOrigine, unite, postes, partenaire, id, confidentiel, dateInsert', "siren='$this->siren' AND typeBilan='$typeBilan' AND dateExercice='$millesimeDB'", true);
|
||||
if (count($ret) > 0) {
|
||||
$bilan = $ret[0];
|
||||
@ -470,11 +470,11 @@ class MBilans
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (count($ret) > 0) {
|
||||
$bilan = $ret[0];
|
||||
}
|
||||
|
||||
|
||||
$tabBilan = $tabBilanPre = $bilanPre = array();
|
||||
|
||||
if ($bilan !== null)
|
||||
@ -978,7 +978,7 @@ class MBilans
|
||||
}
|
||||
else $bilanRN[$posteRN]=$bilanRS[$formule];
|
||||
}
|
||||
|
||||
|
||||
//Variation de stock (matières premières et approvisionnement)
|
||||
if ( is_numeric($bilanRS['240']) && $bilanRS['240'] != 0 ) {
|
||||
$bilanRN['BL'] = $bilanRS['050'];
|
||||
|
Loading…
Reference in New Issue
Block a user