2012-10-17 07:52:44 +00:00

22 lines
961 B
PHTML

<div id="center">
<h1>Ajout d'un tarif</h1>
<?php if ($this->error) {?>
<?=$this->error?>
<?php }?>
<div class="paragraph">
<form method="post" action="<?=$this->url(array('controller'=>'dashboard','action'=>'tarif'),null,true)?>">
<input type="hidden" name="idClient" value="<?=$this->idClient?>"/>
<label>Log</label><input type="text" name="log"/><br/>
<label>Service</label><input type="text" name="service"/><br/>
<label>Type</label><input type="text" name="type"/> (Unitaire, ForfaitLimit, ForfaitNoLimit)<br/>
<label>Prix unitaire</label><input type="text" name="priceUnit"/><br/>
<label>Nb Limit</label><input type="text" name="limit"/><br/>
<label>Date</label><input type="text" name="date"/> (AAAAMMJJ)<br/>
<label>Durée</label><input type="text" name="duree"/> (Jour)<br/>
<label>Doublon</label><input type="text" name="doublon"/> (jour, mois, period, )<br/>
<input type="submit" name="submit" value="Ajouter" class="button"/>
</form>
</div>
</div>