mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2026-01-25 10:13:22 +01:00
108 lines
3.1 KiB
PHP
108 lines
3.1 KiB
PHP
<?php
|
|
/* Copyright (C) 2006 Jean Heimburger <jean@tiaris.info>
|
|
* 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$
|
|
*/
|
|
|
|
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 articles 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();
|
|
|
|
// Set the WebService URL
|
|
$client = new soapclient_nusoap(OSCWS_DIR."ws_articles.php");
|
|
|
|
$result = $client->call("get_listearticles",$parameters );
|
|
if ($client->fault) {
|
|
dolibarr_print_error('',"erreur de connexion ");
|
|
}
|
|
elseif (!($err = $client->getError()) )
|
|
{
|
|
$num=0;
|
|
if ($result) $num = sizeof($result);
|
|
$var=True;
|
|
$i=0;
|
|
|
|
// un produit osc
|
|
$OscProd = new Osc_Product($db);
|
|
|
|
if ($num > 0) {
|
|
print "<TABLE width=\"100%\" class=\"noborder\">";
|
|
print '<TR class="liste_titre">';
|
|
print "<td>id</td>";
|
|
print "<td>Ref</td>";
|
|
print "<td>ProductId</td>";
|
|
print "<td>Titre</td>";
|
|
print "<td>Groupe</td>";
|
|
print '<td align="center">Stock</td>';
|
|
print '<TD align="center">Status</TD>';
|
|
print '<TD align="center">Importer</TD>';
|
|
print "</TR>\n";
|
|
|
|
while ($i < $num) {
|
|
$var=!$var;
|
|
$prodid = $OscProd->get_productid($result[$i][OSC_id]);
|
|
|
|
print "<TR $bc[$var]>";
|
|
print '<TD><a href="fiche.php?id='.$result[$i][OSC_id].'">'.$result[$i][OSC_id]."</TD>\n";
|
|
print '<TD>'.$result[$i][model]."</TD>\n";
|
|
print '<td><a href="../../product/fiche.php?id='.$prodid.'">'.$prodid.'</a></td>';
|
|
print "<TD>".$result[$i][name]."</TD>\n";
|
|
print "<TD>".$result[$i][manufacturer]."</TD>\n";
|
|
print '<TD align="center">'.$result[$i][quantity]."</TD>\n";
|
|
print '<TD align="center">'.$result[$i][status]."</TD>\n";
|
|
if ($prodid) $lib = "modifier";
|
|
else $lib = "<u>importer</u>";
|
|
print '<TD align="center"><a href="fiche.php?action=import&id='.$result[$i][OSC_id].'"'.">".$lib."</a></TD>\n";
|
|
print '</TR>'."\n";
|
|
$i++;
|
|
}
|
|
print "</table></p>";
|
|
}
|
|
else {
|
|
dolibarr_print_error('',"Aucun article trouvé");
|
|
}
|
|
}
|
|
else {
|
|
dolibarr_print_error('',"Erreur service web ".$client->faultstring);
|
|
}
|
|
|
|
print "</TABLE>";
|
|
|
|
|
|
llxFooter('$Date$ - $Revision$');
|
|
?>
|