Files
dolibarr/htdocs/oscommerce_ws/clients/index.php

99 lines
2.7 KiB
PHP

<?php
/* Copyright (C) 2006 Jean Heimburger <jean@tiaris.info>
*
* 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.
*
*
*/
require("./pre.inc.php");
$langs->load("companies");
llxHeader();
if ($page == -1) { $page = 0 ; }
$limit = $conf->liste_limit;
$offset = $limit * $page ;
print_barre_liste("Liste des clients de la boutique web", $page, "index.php");
set_magic_quotes_runtime(0);
//WebService Client.
require_once(NUSOAP_PATH."nusoap.php");
require_once("../includes/configure.php");
// Set the parameters to send to the WebService
$parameters = array("custid"=>"0");
// Set the WebService URL
$client = new soapclient(OSCWS_DIR."ws_customers.php");
$result = $client->call("get_Client",$parameters );
// echo '<h2>Result</h2><pre>'; print_r($result); echo '</pre>';
if ($client->fault) {
dolibarr_print_error('',"erreur de connection ");
}
elseif (!($err = $client->getError()) )
{
$num=0;
if ($result) $num = sizeof($result);
$var=True;
$i=0;
if ($num > 0) {
print "<p><TABLE border=\"0\" width=\"100%\" cellspacing=\"0\" cellpadding=\"4\">";
print '<TR class="liste_titre">';
print "<td>id</td>";
print '<TD align="center">Société</TD>';
print "<td>Nom</td>";
print "<td>Ville</td>";
print "<td>Pays</td>";
print '<td align="center">Téléphone</td>';
print "</TR>\n";
while ($i < $num) {
$var=!$var;
print "<TR $bc[$var]>";
print '<TD><a href="fiche.php?custid='.$result[$i][customers_id].'">'.$result[$i][customers_id]."</TD>\n";
print "<TD>".$result[$i][entry_company]."</TD>\n";
print "<TD>".$result[$i][entry_lastname]."</TD>\n";
print "<TD>".$result[$i][entry_city]."</TD>\n";
print '<TD align="center">'.$result[$i][countries_name]."</TD>\n";
print '<TD align="center">'.$result[$i][customers_telephone]."</TD>\n";
print "</TR>\n";
$i++;
}
print "</table></p>";
}
else {
dolibarr_print_error('',"Aucun client trouvé");
}
}
else {
dolibarr_print_error('',"Erreur service web ".$err);
}
print "</TABLE>";
llxFooter('$Date$ - $Revision$');
?>