Ajout filtre sur les comptes clos

This commit is contained in:
Rodolphe Quiedeville 2003-02-11 23:53:31 +00:00
parent 1713b169ef
commit a47018c7ec

View File

@ -1,8 +1,5 @@
<?PHP <?PHP
/* Copyright (C) 2001-2002 Rodolphe Quiedeville <rodolphe@quiedeville.org> /* Copyright (C) 2001-2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
*
* $Id$
* $Source$
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -18,6 +15,9 @@
* along with this program; if not, write to the Free Software * along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
* *
* $Id$
* $Source$
*
*/ */
require("../../main.inc.php3"); require("../../main.inc.php3");
@ -39,7 +39,7 @@ function llxHeader($head = "")
$menu->add_submenu("search.php3","Recherche"); $menu->add_submenu("search.php3","Recherche");
$db = new Db(); $db = new Db();
$sql = "SELECT rowid, label FROM llx_bank_account"; $sql = "SELECT rowid, label FROM llx_bank_account where clos = 0";
$result = $db->query($sql); $result = $db->query($sql);
if ($result) if ($result)
{ {