This commit is contained in:
Michael RICOIS 2013-10-25 14:21:30 +00:00
parent 1d6492ac4b
commit 2529350998
2 changed files with 10 additions and 6 deletions

View File

@ -835,7 +835,10 @@ class FinanceController extends Zend_Controller_Action
'amortissements' => 'Amortissements',
'provisions' => 'Provisions',
'creancesDettes' => 'Créances, Dettes',
'affectation' => 'Affectation'
'resultatfiscal' => 'Résultat fiscal',
'deficit' => 'Déficit',
'affectation' => 'Affectation',
'annexe16' => 'Valeur ajoutée',
),
'S' => array(
'actif' => 'Actif',

View File

@ -31,13 +31,14 @@
<td width="200" class="StyleInfoLib">Millesime</td>
<td width="350" class="StyleInfoData">
<select name="date">
<?php foreach ($this->type as $champType => $name):?>
<?php foreach ($this->liste[$champType] as $element):?>
<?php foreach ($this->type as $champType => $name) {?>
<?php foreach ($this->liste[$champType] as $element) {?>
<option value="<?=$element.':'.$champType?>"<?=($this->date == $element && $champType == $this->champType)? ' selected': '';?>>
<?=$this->dateFunction->dateT('Ymd', 'd/m/Y', $element).' '.$name;?>
<?php $date = new Zend_Date($element, 'yyyyMMdd'); ?>
<?=$date->toString('dd/MM/yyyy').' '.$name;?>
</option>
<?php endforeach;?>
<?php endforeach;?>
<?php }?>
<?php }?>
</select>
<input type="submit" value="OK" />
</td>