odea/application/views/default/scripts/gestion/customerparamadd.phtml

78 lines
2.0 KiB
PHTML
Raw Normal View History

<div id="dashboard">
<?=$this->message?>
<form name="profil" method="post" action="<?=$this->url(array('controller'=>'gestion', 'action'=>'customerparamadd'))?>">
<label>idClient</label>
<input type="text" name="idClient" />
<br/>
<label>service</label>
<input type="text" name="service" />
<br/>
<label>filterRNCS</label>
<input type="checkbox" name="filterRNCS" value="1" />
Filtrer au RNCS
<br/>
<label>licenceINSEE</label>
<input type="checkbox" name="licenceINSEE" value="1" />
Le client possède la licence INSEE
<br/>
<label>immediatExtract</label>
<input type="text" name="immediatExtract" value="0" />
Nombre de ligne maximum pour une extraction immédiate
<br/>
<label>dateContrat</label>
<input type="text" name="dateContrat" />
Date de début du contract (AAAA-MM-JJ)
<br/>
<label>periodContrat</label>
<input type="text" name="periodContrat" />
Durée du contrat (1,3,6,12 mois)
<br/>
<label>periodPaiement</label>
<input type="text" name="periodPaiement" />
Emission des factures (tous les 1,3,6,12 mois)
<br/>
<label>priceLine</label>
<input type="text" name="priceLine" />
Prix à la ligne (obligatoire même en forfait pour pouvoir décompter)
<br/>
<label>forfait</label>
<input type="text" name="forfait" value="0" />
Montant du forfait pour l'extraction de fichier
<br/>
<label>limitLines</label>
<input type="text" name="limitLines" value="50000" />
Nombre maximal de lignes dans un fichier
<br/>
<label>limitFiles</label>
<input type="text" name="limitFiles" value="0" />
Nombre maximal de fichier pouvant être extrait
<br/>
<div>
<label>Enrichissement</label>
<select style="padding:5px;" name="criteres[]" multiple size="20">
<?php if ( count($this->fields)>0 ) {?>
<?php foreach ( $this->fields as $value => $item ) {?>
<option value="<?=$value?>"><?=$item['label']?></option>
<?php }?>
<?php }?>
</select>
</div>
<input type="submit" name="submit" value="Enregistrer"/>
</form>
</div>