2004-10-19 21:31:11 +02:00
< ? php
2006-09-03 15:49:00 +02:00
/* Copyright ( C ) 2003 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
2010-04-27 10:17:40 +02:00
* Copyright ( C ) 2003 - 2005 Eric Seigne < eric . seigne @ ryxeo . com >
* Copyright ( C ) 2006 - 2010 Laurent Destailleur < eldy @ users . sourceforge . net >
2003-03-24 22:50:34 +01:00
*
* 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
2013-01-16 15:36:08 +01:00
* the Free Software Foundation ; either version 3 of the License , or
2003-03-24 22:50:34 +01:00
* ( 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
2011-08-03 02:45:22 +02:00
* along with this program . If not , see < http :// www . gnu . org / licenses />.
2003-03-24 22:50:34 +01:00
*
*/
2009-01-31 02:17:53 +01:00
2006-09-03 15:49:00 +02:00
/**
2010-04-27 10:17:40 +02:00
* \file htdocs / boutique / client / fiche . php
* \ingroup boutique
* \brief Page fiche client OSCommerce
*/
2006-09-03 15:49:00 +02:00
2012-08-22 23:24:21 +02:00
require '../../main.inc.php' ;
2012-08-22 23:11:24 +02:00
require_once DOL_DOCUMENT_ROOT . '/boutique/osc_master.inc.php' ;
2012-08-23 02:04:35 +02:00
include_once DOL_DOCUMENT_ROOT . '/boutique/client/class/boutiqueclient.class.php' ;
2010-03-27 03:29:49 +01:00
2012-10-13 10:39:16 +02:00
$id = GETPOST ( 'id' , 'int' );
2010-03-27 03:29:49 +01:00
2010-04-27 10:17:40 +02:00
/*
* Actions
*/
2003-03-24 22:50:34 +01:00
2012-01-30 10:22:50 +01:00
// None
2003-03-24 22:50:34 +01:00
2010-04-27 10:17:40 +02:00
2003-03-24 22:50:34 +01:00
/*
2010-04-27 10:17:40 +02:00
* View
2003-03-24 22:50:34 +01:00
*/
2010-04-27 10:17:40 +02:00
llxHeader ();
2012-10-13 10:39:16 +02:00
if ( $id > 0 )
2005-06-13 23:55:55 +02:00
{
2010-04-27 10:17:40 +02:00
$client = new BoutiqueClient ( $dbosc );
2012-10-13 10:39:16 +02:00
$result = $client -> fetch ( $id );
2010-04-27 10:17:40 +02:00
if ( $result )
2005-06-13 23:55:55 +02:00
{
2010-04-27 10:17:40 +02:00
print '<div class="titre">' . $langs -> trans ( " CustomerCard " ) . ': ' . $client -> name . '</div><br>' ;
print '<table border="1" width="100%" cellspacing="0" cellpadding="4">' ;
print " <tr> " ;
print '<td width="20%">Nom</td><td width="80%">' . $client -> name . '</td></tr>' ;
print " </table> " ;
/*
* Commandes
*/
2010-05-08 18:59:04 +02:00
$sql = " SELECT o.orders_id, o.customers_id, date_purchased, t.value as total " ;
2010-04-27 10:17:40 +02:00
$sql .= " FROM " . $conf -> global -> OSC_DB_NAME . " . " . $conf -> global -> OSC_DB_TABLE_PREFIX . " orders as o, " . $conf -> global -> OSC_DB_NAME . " . " . $conf -> global -> OSC_DB_TABLE_PREFIX . " orders_total as t " ;
2012-10-13 10:39:16 +02:00
$sql .= " WHERE o.customers_id = " . $client -> id ;
2010-04-27 10:17:40 +02:00
$sql .= " AND o.orders_id = t.orders_id AND t.class = 'ot_total' " ;
//echo $sql;
$resql = $dbosc -> query ( $sql );
if ( $resql )
{
$num = $dbosc -> num_rows ( $resql );
$i = 0 ;
print '<table class="noborder" width="50%">' ;
print " <tr class= \" liste_titre \" ><td>Commandes</td> " ;
print " </tr> \n " ;
$var = True ;
while ( $i < $num )
{
$objp = $dbosc -> fetch_object ( $resql );
$var =! $var ;
2013-06-20 09:18:12 +02:00
print " <tr " . $bc [ $var ] . " > " ;
2010-04-27 10:17:40 +02:00
print '<td><a href="' . DOL_URL_ROOT . '/boutique/commande/fiche.php?id=' . $objp -> orders_id . '"><img src="/theme/' . $conf -> theme . '/img/filenew.png" border="0" alt="Fiche"> ' ;
2010-05-08 18:59:04 +02:00
print dol_print_date ( $dbosc -> jdate ( $objp -> date_purchased ), 'dayhour' ) . " </a> \n " ;
2010-04-27 10:17:40 +02:00
print $objp -> total . " </a></TD> \n " ;
print " </tr> \n " ;
$i ++ ;
}
print " </table> " ;
$dbosc -> free ( $resql );
}
else
{
print " <p>ERROR 1</p> \n " ;
dol_print_error ( $dbosc );
}
2003-03-24 22:50:34 +01:00
}
2010-04-27 10:17:40 +02:00
else
2003-03-24 22:50:34 +01:00
{
2010-04-27 10:17:40 +02:00
print " <p>ERROR 1</p> \n " ;
dol_print_error ( $dbosc );
2003-03-24 22:50:34 +01:00
}
2005-06-13 23:55:55 +02:00
}
else
{
2010-04-27 10:17:40 +02:00
print " <p>ERROR 1</p> \n " ;
print " Error " ;
2005-06-13 23:55:55 +02:00
}
2003-03-25 22:40:59 +01:00
2003-03-24 22:50:34 +01:00
/* ************************************************************************** */
2009-01-31 02:17:53 +01:00
/* */
/* Barre d'action */
/* */
2003-03-24 22:50:34 +01:00
/* ************************************************************************** */
2004-10-23 18:55:07 +02:00
// Pas d'action
2003-03-24 22:50:34 +01:00
2006-09-03 15:49:00 +02:00
$dbosc -> close ();
2003-03-24 22:50:34 +01:00
2011-08-27 16:24:16 +02:00
llxFooter ();
2003-03-24 22:50:34 +01:00
?>