Issue #0001805: Surveillance - Changer "Raison Sociale" par "Dénomination Sociale".
This commit is contained in:
parent
1542b5753f
commit
e81e090230
@ -284,7 +284,7 @@ class SurveillanceController extends Zend_Controller_Action
|
||||
$this->view->assign('triMode', $triMode);
|
||||
|
||||
$q = $request->getParam('q', null);
|
||||
if ( $q == 'Siren, Référence, Raison Sociale' ) { $q = null; }
|
||||
if ( $q == 'Siren, Référence, Dénomination Sociale' ) { $q = null; }
|
||||
$this->view->assign('q', $q);
|
||||
|
||||
$detail = true;
|
||||
@ -410,7 +410,7 @@ class SurveillanceController extends Zend_Controller_Action
|
||||
$this->view->assign('ref', $ref);
|
||||
|
||||
$rs = $request->getParam('rs', null);
|
||||
if ( $rs == 'Raison Sociale' ) { $rs = null; }
|
||||
if ( $rs == 'Dénomination Sociale' ) { $rs = null; }
|
||||
$this->view->assign('rs', $rs);
|
||||
|
||||
$tri = $request->getParam('tri', 'siren');
|
||||
|
@ -50,7 +50,7 @@ par
|
||||
<select name="tri">
|
||||
<option value="siren"<?=($this->tri=='siren')? ' selected' : ''?>>Siren</option>
|
||||
<option value="ref"<?=($this->tri=='ref')? ' selected' : ''?>>Référence</option>
|
||||
<option value="rs"<?=($this->tri=='rs')? ' selected' : ''?>>Raison Sociale</option>
|
||||
<option value="rs"<?=($this->tri=='rs')? ' selected' : ''?>>Dénomination Sociale</option>
|
||||
<option value="dateAjout"<?=($this->tri=='dateAjout')? ' selected' : ''?>>Date d'ajout</option>
|
||||
<option value="dateDerEnvoi"<?=($this->tri=='dateDerEnvoi')? ' selected' : ''?>>Date d'envoi</option>
|
||||
</select>
|
||||
@ -58,7 +58,7 @@ par
|
||||
|
||||
<div class="paragraph" id="formSurveillance">
|
||||
<form name="recherche" action="<?=$this->url(array('controller'=>'surveillance', 'action'=>'liste'))?>">
|
||||
<input type="text" name="q" class="search" value="<?=($this->q != null)? $this->q : "Siren, Référence, Raison Sociale"?>" />
|
||||
<input type="text" name="q" class="search" value="<?=($this->q != null)? $this->q : "Siren, Référence, Dénomination Sociale"?>" />
|
||||
<input type="submit" value="Rechercher" class="submit"/>
|
||||
</form>
|
||||
</div>
|
||||
@ -89,7 +89,7 @@ par
|
||||
<thead>
|
||||
<tr>
|
||||
<th width="75">Siren</th>
|
||||
<th width="150">Raison Sociale</th>
|
||||
<th width="150">Dénomination Sociale</th>
|
||||
<th width="90">Référence</th>
|
||||
<th width="150">Surveillance</th>
|
||||
<th width="75">Ajout le</th>
|
||||
@ -276,11 +276,11 @@ $(document).ready(function() {
|
||||
});
|
||||
|
||||
$('input[name=q]').focusin(function(){
|
||||
var txt = 'Siren, Référence, Raison Sociale';
|
||||
var txt = 'Siren, Référence, Dénomination Sociale';
|
||||
var val = $(this).val();
|
||||
if ( val == '' || val == txt ) { $(this).val(''); }
|
||||
}).focusout(function(){
|
||||
var txt = 'Siren, Référence, Raison Sociale';
|
||||
var txt = 'Siren, Référence, Dénomination Sociale';
|
||||
var val = $(this).val();
|
||||
if ( val == '' ){ $(this).val(txt); }
|
||||
});
|
||||
|
@ -25,7 +25,7 @@ Tri par
|
||||
<select name="tri">
|
||||
<option value="siren"<?=($this->tri=='siren')? ' selected' : ''?>>Siren</option>
|
||||
<option value="ref"<?=($this->tri=='ref')? ' selected' : ''?>>Référence</option>
|
||||
<option value="rs"<?=($this->tri=='rs')? ' selected' : ''?>>Raison Sociale</option>
|
||||
<option value="rs"<?=($this->tri=='rs')? ' selected' : ''?>>Dénomination Sociale</option>
|
||||
<option value="dateAjout"<?=($this->tri=='dateAjout')? ' selected' : ''?>>Date d'ajout</option>
|
||||
<option value="dateDerEnvoi"<?=($this->tri=='dateDerEnvoi')? ' selected' : ''?>>Date d'envoi</option>
|
||||
</select>
|
||||
@ -35,7 +35,7 @@ Tri par
|
||||
<form name="recherche" action="<?=$this->url(array('controller'=>'surveillance', 'action'=>'portefeuille'))?>">
|
||||
<input type="text" name="siren" class="search" value="<?=($this->siren != null)? $this->siren : "Siren"?>" /><br/>
|
||||
<input type="text" name="ref" class="search" value="<?=($this->ref != null)? $this->ref : "Référence"?>" /><br/>
|
||||
<input type="text" name="rs" class="search" value="<?=($this->rs != null)? $this->rs : "Raison Sociale"?>" />
|
||||
<input type="text" name="rs" class="search" value="<?=($this->rs != null)? $this->rs : "Dénomination Sociale"?>" />
|
||||
<input type="submit" value="Rechercher" class="submit"/>
|
||||
</form>
|
||||
</div>
|
||||
@ -68,7 +68,7 @@ if (count($this->portefeuille)>0) {
|
||||
<thead>
|
||||
<tr>
|
||||
<th>Siren</th>
|
||||
<th>Raison Sociale</th>
|
||||
<th>Dénomination Sociale</th>
|
||||
<th>Référence</th>
|
||||
<th class="score">Score</th>
|
||||
<th>Encours demandé</th>
|
||||
@ -222,11 +222,11 @@ $(document).ready(function(){
|
||||
});
|
||||
|
||||
$('input[name=rs]').focusin(function(){
|
||||
var txt = 'Raison Sociale';
|
||||
var txt = 'Dénomination Sociale';
|
||||
var val = $(this).val();
|
||||
if ( val == '' || val == txt ) { $(this).val(''); }
|
||||
}).focusout(function(){
|
||||
var txt = 'Raison Sociale';
|
||||
var txt = 'Dénomination Sociale';
|
||||
var val = $(this).val();
|
||||
if ( val == '' ){ $(this).val(txt); }
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user