1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
<form name="correction" id="_correction" action="" method="post">
<table width="600" border=0>
<tr>
<td width="150" height="30" colspan=2> <font size="-2"><b>Début:</b></font></td>
<td>
<input type="text" name="date_day_debut" id="_date_day_debut" size="1" tabindex=11 maxlength="2" value="<%=$params->{date_day_debut}%>" class="light">
<input type="text" name="date_month_debut" id="_date_month_debut" tabindex=12 size="1" maxlength="2" value="<%=$params->{date_month_debut}%>" class="light">
<input type="text" name="date_year_debut" id="_date_year_debut" size="3" tabindex=13 maxlength="4" value="<%=$params->{date_year_debut}%>" class="light">
</td>
</tr>
<tr>
<td width="150" height="30" colspan=2> <font size="-2"><b>Fin:</b></font></td>
<td>
<input type="text" name="date_day_fin" id="_date_day_fin" size="1" tabindex=11 maxlength="2" value="<%=$params->{date_day_fin}%>" class="light">
<input type="text" name="date_month_fin" id="_date_month_fin" tabindex=12 size="1" maxlength="2" value="<%=$params->{date_month_fin}%>" class="light">
<input type="text" name="date_year_fin" id="_date_year_fin" size="3" tabindex=13 maxlength="4" value="<%=$params->{date_year_fin}%>" class="light">
</td>
</tr>
<tr>
<td width="150" height="30" colspan=2> <font size="-2"><b>Acheté de:</b></font></td>
<td>
<select name="org_id" id="_org_id" class="light_fix2" tabindex=1 >
<option value="none">[ Veuillez faire votre selection ]</option>
<% for (@$org_list) {
print qq|<option value="$_->{org_id}"|;
print qq|>| . $Server->HTMLEncode($_->{name}) . qq|</option>|;
} %>
</select>
</td>
</tr>
<tr>
<td width="150" height="30" colspan=2> <font size="-2"><b>Numéro de facture:</b></font></td>
<td><input type="text" name="no_facture" id="_no_facture" class="light" size="20" maxlenght="50" value="" tabindex=2></td>
</tr>
<tr>
<td width="150" height="30"> <font size="-2"><b>Numéro d'écriture:</b></font></td>
<td width="5"><b>J</b> </td>
<td><input type="text" name="no_facture" id="_no_facture" class="light" size="20" maxlenght="50" value="" tabindex=2></td>
</tr>
<tr>
<td colspan=3 align="center">
<input type="submit" name="rechercher" value="Rechercher" id="_Rechercher" tabindex=-1 class=light >
<input type="button" name="annuller" value="Quitter" id="_Quitter" tabindex=-1 class=light onclick="window.close();">
</td>
</td>
</table>
</form> |