SD-29 ajout des top + boutons retour

This commit is contained in:
Claire DELBOS 2017-04-03 09:37:15 +02:00
parent 9817683d99
commit b3ff8e1398
6 changed files with 19 additions and 3 deletions

View File

@ -80,8 +80,9 @@ Clé de dédoublonnage : <br/>
Référence <input type="text" name="profil" value="<?=$this->reference?>" /> Référence <input type="text" name="profil" value="<?=$this->reference?>" />
<?php if ($this->edit) { ?> <?php if ($this->edit) { ?>
<a id="save" href="<?=$this->url(array('controller'=>'profil', 'action'=>'save', 'id'=>$this->id))?>">Modifier</a> <a id="save" class="btn btn-sm btn-primary" href="<?=$this->url(array('controller'=>'profil', 'action'=>'save', 'id'=>$this->id))?>">Modifier</a>
<?php } else {?> <?php } else {?>
<a id="save" href="<?=$this->url(array('controller'=>'profil', 'action'=>'save'))?>">Sauvegarder</a> <a id="save" class="btn btn-sm btn-primary" href="<?=$this->url(array('controller'=>'profil', 'action'=>'save'))?>">Sauvegarder</a>
<?php }?> <?php }?>
<a id="return" class="btn btn-sm btn-info" href="<?=$this->url(array('controller'=>'index', 'action'=>'index'))?>">Retour</a>
</div> </div>

View File

@ -5,4 +5,5 @@
<li><?=$item?></li> <li><?=$item?></li>
<?php }?> <?php }?>
</ol> </ol>
<a id="return" class="btn btn-sm btn-info" href="<?=$this->url(array('controller'=>'index', 'action'=>'index'))?>">Retour</a>
</div> </div>

View File

@ -45,6 +45,7 @@ function setListChecked(){
var chp=tab[i]; var chp=tab[i];
document.getElementById('help'+chp).checked=true; document.getElementById('help'+chp).checked=true;
} }
$('input[name=<?=$this->key?>]').val(iref);
} }
</script> </script>
<?php endif;?> <?php endif;?>

View File

@ -24,6 +24,7 @@ Aucun profils d'enrichissement.
</div> </div>
<p> <p>
<a href="<?=$this->url(array('controller'=>'profil', 'action'=>'create'))?>">Créer un nouveau profil</a> <a id="return" class="btn btn-sm btn-info" href="<?=$this->url(array('controller'=>'index', 'action'=>'index'))?>">Retour</a>
<a class="btn btn-sm btn-danger" href="<?=$this->url(array('controller'=>'profil', 'action'=>'create'))?>">Créer un nouveau profil</a>
</p> </p>

View File

@ -558,6 +558,16 @@ class Scores_Extract_Dict
'help' => "", 'help' => "",
'columns' => array() 'columns' => array()
), ),
'topContentieuxDE'=> array(
'lib' => 'Greffe Top Contentieux DE',
'help' => "Présence de contentieux DE",
'columns' => array()
),
'topContentieuxDF'=> array(
'lib' => 'Greffe Top Contentieux DF',
'help' => "Présence de contentieux DF",
'columns' => array()
),
'nbContentieuxDE'=> array( 'nbContentieuxDE'=> array(
'lib' => 'Greffe Nbre Contentieux DE', 'lib' => 'Greffe Nbre Contentieux DE',
'help' => "Nbre de contentieux DE", 'help' => "Nbre de contentieux DE",

View File

@ -232,6 +232,8 @@ $tabDico = array(
'cle' => array( 'cle' => array(
'nbContentieuxDE' => 'SUM(IF(qualite="DE",1,0)) as nbContentieuxDE', 'nbContentieuxDE' => 'SUM(IF(qualite="DE",1,0)) as nbContentieuxDE',
'nbContentieuxDF' => 'SUM(IF(qualite="DF",1,0)) as nbContentieuxDF', 'nbContentieuxDF' => 'SUM(IF(qualite="DF",1,0)) as nbContentieuxDF',
'topContentieuxDE' => 'IF(SUM(IF(qualite="DE",1,0))>0,1,0) as topContentieuxDE',
'topContentieuxDF' => 'IF(SUM(IF(qualite="DF",1,0))>0,1,0) as topContentieuxDF',
), ),
'where' => ' WHERE entSiren=$siren', 'where' => ' WHERE entSiren=$siren',
), ),