altocompta/include/template/stock_histo_search.php
Dany De Bontridder e6a2f2935d Task #0000839: Réécriture de la procédure d'installation
Setup.php en partie réécrit
Tous les tags <? ont été changés en <?php pour les servers mutualisés
2013-05-16 21:34:17 +00:00

71 lines
2.1 KiB
PHP

<?php
/*
* This file is part of PhpCompta.
*
* PhpCompta is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* PhpCompta is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with PhpCompta; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/* $Revision$ */
// Copyright Author Dany De Bontridder ddebontridder@yahoo.fr
/**
* @file
* @brief show box for search
*
*/
?>
<div id="histo_search_d" class="inner_box" style="width:60%;height:280px;display:none">
<?php echo HtmlInput::title_box("Recherche", "histo_search_d", "hide")?>
<form method="GET">
<?php echo HtmlInput::get_to_hidden(array("gDossier", "ac"))?>
<table>
<tr>
<td> Code Stock </td>
<td> <?php echo $wcode_stock->input()?><?php echo $wcode_stock->search()?> </td>
</tr>
<tr>
<td> Fiche </td>
<td> <?php echo $wcard->input()?><?php echo $wcard->search()?> </td>
</tr>
<tr>
<td> A partir de </td>
<td> <?php echo $wdate_start->input()?> </td>
</tr>
<tr>
<td> Jusque </td>
<td> <?php echo $wdate_end->input()?> </td>
</tr>
<tr>
<td> Dépôt </td>
<td> <?php echo $wrepo->input()?> </td>
</tr>
<tr>
<td> Montant supérieur ou égal à </td>
<td> <?php echo $wamount_start->input()?> </td>
</tr>
<tr>
<td> Montant inférieur ou égal à </td>
<td> <?php echo $wamount_end->input()?> </td>
</tr>
<tr>
<td> Direction </td>
<td> <?php echo $wdirection->input()?> </td>
</tr>
</table>
<?php echo HtmlInput::submit("search_histo_b", "Recherche")?>
</form>
</div>