issue #0001847 : Correction etat du bilan (note 0003888)
This commit is contained in:
parent
b3df12ddbe
commit
257fae95bd
@ -1389,14 +1389,17 @@ class FinanceController extends Zend_Controller_Action
|
||||
if ( $response === null ) {
|
||||
$this->view->assign('msg','Aucun bilan déposé.');
|
||||
} else {
|
||||
|
||||
$date = new Zend_Date($response->DateCloture, 'yyyy-MM-dd');
|
||||
$this->view->assign('DateCloture', $date->toString('dd/MM/yyyy'));
|
||||
$this->view->assign('DateClotureIso', $response->DateCloture);
|
||||
|
||||
if ( $response->SaisieDate!='' || $response->SaisieDate!='0000-00-00' ) {
|
||||
$this->view->assign('SaisieDateIso', $response->SaisieDate);
|
||||
$date = new Zend_Date($response->SaisieDate, 'yyyy-MM-dd');
|
||||
$this->view->assign('SaisieDate', $date->toString('dd/MM/yyyy'));
|
||||
}
|
||||
|
||||
$this->view->assign('SaisieLabel', $response->SaisieLabel);
|
||||
}
|
||||
}
|
||||
|
@ -2,7 +2,7 @@
|
||||
<?php if ( $this->DateClotureIso ) { ?>
|
||||
|
||||
Le dernier millésime déposé au greffe est le <?=$this->DateCloture?>.
|
||||
<?php if ( $this->SaisieDateIso && $this->SaisieCode=='00' ) {?>
|
||||
<?php if ( $this->SaisieDateIso && $this->SaisieCode == 0 ) {?>
|
||||
Le bilan a été saisie le <?=$this->SaisieDate?>.
|
||||
<?php } else {?>
|
||||
Le bilan n'a pas été saisie par la source officielle (<i><?=$this->SaisieLabel?>)</i>.
|
||||
|
Loading…
Reference in New Issue
Block a user