mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2026-01-05 16:42:53 +01:00
56 lines
1.7 KiB
PHP
56 lines
1.7 KiB
PHP
<?php
|
|
/* Copyright (C) 2006 Andre Cianfarani <acianfa@free.fr>
|
|
* Copyright (C) 2005-2007 Regis Houssin <regis.houssin@cap-networks.com>
|
|
* Copyright (C) 2007 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
*
|
|
* 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
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program 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 this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
*
|
|
* $Id$
|
|
* $Source$
|
|
*/
|
|
|
|
/**
|
|
\file htdocs/product/ajaxproducts.php
|
|
\brief Fichier de reponse sur evenement Ajax
|
|
\version $Revision$
|
|
*/
|
|
|
|
require('../main.inc.php');
|
|
|
|
$langs->load("products");
|
|
$langs->load("main");
|
|
|
|
top_htmlhead("", "", 1);
|
|
|
|
print '<body class="nocellnopadd">'."\n";
|
|
|
|
// Generation liste de produits
|
|
if(isset($_GET['keysearch']) && !empty($_GET['keysearch']))
|
|
{
|
|
$form = new Form($db);
|
|
if ($_GET['type'] == 1)
|
|
{
|
|
$form->select_produits_do("",$_GET["htmlname"],"","",$_GET["price_level"],$_GET["keysearch"]);
|
|
}
|
|
else if ($_GET['type'] == 2)
|
|
{
|
|
$form->select_produits_fournisseurs_do($_GET["socid"],"",$_GET["htmlname"],"","",$_GET["keysearch"]);
|
|
}
|
|
}
|
|
|
|
print "</body>";
|
|
print "</html>";
|
|
?>
|