2004-10-19 21:31:11 +02:00
< ? php
2003-03-25 22:41:16 +01:00
/* Copyright ( C ) 2003 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
2006-09-03 15:03:21 +02:00
* Copyright ( C ) 2006 Laurent Destailleur < eldy @ users . sourceforge . net >
2003-03-25 22:41:16 +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
* 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 $
*/
2006-09-03 15:03:21 +02:00
/**
\file htdocs / boutique / commande / index . php
\ingroup boutique
\brief Page gestion commandes OSCommerce
\version $Revision $
*/
2003-03-25 22:41:16 +01:00
require ( " ./pre.inc.php " );
llxHeader ();
if ( $sortfield == " " )
{
$sortfield = " date_purchased " ;
}
if ( $sortorder == " " )
{
$sortorder = " DESC " ;
}
if ( $page == - 1 ) { $page = 0 ; }
$limit = $conf -> liste_limit ;
$offset = $limit * $page ;
2004-07-30 15:13:05 +02:00
print_barre_liste ( " Liste des commandes " , $page , " commande.php " );
2003-03-25 22:41:16 +01:00
2006-09-03 15:49:00 +02:00
$sql = " SELECT o.orders_id, customers_id, customers_name, customers_company, customers_street_address, customers_suburb, customers_city, customers_postcode, customers_state, customers_country, customers_telephone, customers_email_address, customers_address_format_id, delivery_name, delivery_company, delivery_street_address, delivery_suburb, delivery_city, delivery_postcode, delivery_state, delivery_country, delivery_address_format_id, billing_name, billing_company, billing_street_address, billing_suburb, billing_city, billing_postcode, billing_state, billing_country, billing_address_format_id, payment_method, cc_type, cc_owner, cc_number, cc_expires, last_modified, " . $dbosc -> pdate ( " date_purchased " ) . " as date_purchased, orders_status, orders_date_finished, currency, currency_value, t.value " ;
2003-03-25 22:41:16 +01:00
2009-01-31 02:17:53 +01: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 " ;
2003-03-27 18:41:13 +01:00
$sql .= " WHERE o.orders_id = t.orders_id AND t.class = 'ot_total' " ;
2003-03-25 22:41:16 +01:00
$sql .= " ORDER BY $sortfield $sortorder " ;
2006-09-03 15:49:00 +02:00
$sql .= $dbosc -> plimit ( $limit , $offset );
2009-01-31 02:17:53 +01:00
2006-09-03 15:49:00 +02:00
if ( $dbosc -> query ( $sql ) )
2003-03-25 22:41:16 +01:00
{
2006-09-03 15:49:00 +02:00
$num = $dbosc -> num_rows ();
2003-03-25 22:41:16 +01:00
$i = 0 ;
2004-10-31 14:00:04 +01:00
print " <table class= \" noborder \" width= \" 100% \" > " ;
print " <tr class= \" liste_titre \" > " ;
print " <td> " . $langs -> trans ( " Ref " ) . " </td> " ;
print " <td> " . $langs -> trans ( " Date " ) . " </td> " ;
2004-07-30 15:13:05 +02:00
print_liste_field_titre ( " Client " , " commande.php " , " customers_name " );
2004-10-31 14:00:04 +01:00
print '<td align="right">' . $langs -> trans ( " Total " ) . '</td>' ;
2004-08-29 21:03:50 +02:00
print " </tr> \n " ;
2003-03-25 22:41:16 +01:00
$var = True ;
while ( $i < $num )
{
2006-09-03 15:49:00 +02:00
$objp = $dbosc -> fetch_object ();
2003-03-25 22:41:16 +01:00
$var =! $var ;
2004-08-29 21:03:50 +02:00
print " <tr $bc[$var] > " ;
2003-03-25 22:41:16 +01:00
2003-04-24 18:12:32 +02:00
print '<td><a href="fiche.php?id=' . $objp -> orders_id . '"><img src="/theme/' . $conf -> theme . '/img/filenew.png" border="0" alt="Fiche"> ' ;
print $objp -> orders_id . " </a></td><td> " ;
2009-02-20 23:53:15 +01:00
print dol_print_date ( $objp -> date_purchased , 'dayhour' ) . '</td>' ;
2004-08-29 21:03:50 +02:00
print '<td><a href="../client/fiche.php?id=' . $objp -> customers_id . '">' . $objp -> customers_name . " </a></TD> \n " ;
2003-03-27 18:41:13 +01:00
print '<td align="right">' . price ( $objp -> value ) . '</td>' ;
2004-08-29 21:03:50 +02:00
print " </tr> \n " ;
2003-03-25 22:41:16 +01:00
$i ++ ;
}
2004-08-29 21:03:50 +02:00
print " </table> " ;
2006-09-03 15:49:00 +02:00
$dbosc -> free ();
2003-03-25 22:41:16 +01:00
}
else
{
2009-02-20 23:53:15 +01:00
dol_print_error ( $dbosc );
2003-03-25 22:41:16 +01:00
}
2006-09-03 15:49:00 +02:00
$dbosc -> close ();
2003-03-25 22:41:16 +01:00
llxFooter ( " <em>Dernière modification $Date $ révision $Revision $ </em> " );
?>