2004-10-19 22:19:58 +02:00
< ? php
2006-09-03 15:49:00 +02:00
/* Copyright ( C ) 2003 Rodolphe Quiedeville < rodolphe @ quiedeville . org >
2012-01-30 23:58:13 +01:00
* Copyright ( C ) 2003 Eric Seigne < erics @ rycks . com >
2006-09-03 15:49:00 +02:00
* Copyright ( C ) 2004 - 2006 Laurent Destailleur < eldy @ users . sourceforge . net >
2003-03-24 22:43:29 +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:43:29 +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:43:29 +01:00
*
*/
2006-09-03 15:49:00 +02:00
/**
2011-08-27 16:24:16 +02:00
* \file htdocs / boutique / notification / index . php
* \ingroup boutique
* \brief Page gestion notification OS Commerce
*/
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' ;
2003-03-24 22:43:29 +01:00
2004-10-31 14:00:04 +01:00
$langs -> load ( " products " );
2010-03-27 03:29:49 +01:00
2003-03-24 22:43:29 +01:00
llxHeader ();
if ( $sortfield == " " ) {
2003-03-25 22:46:18 +01:00
$sortfield = " lower(c.customers_lastname) " ;
2003-03-24 22:43:29 +01:00
}
if ( $sortorder == " " ) {
$sortorder = " ASC " ;
}
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 notifications " , $page , " index.php " );
2003-03-24 22:43:29 +01:00
2003-03-25 22:46:18 +01:00
$sql = " SELECT c.customers_id, c.customers_lastname, c.customers_firstname, p.products_name, p.products_id " ;
2009-01-31 02:17:53 +01:00
$sql .= " FROM " . $conf -> global -> OSC_DB_NAME . " . " . $conf -> global -> OSC_DB_TABLE_PREFIX . " products_notifications as n, " . $conf -> global -> OSC_DB_NAME . " . " . $conf -> global -> OSC_DB_TABLE_PREFIX . " products_description as p " ;
$sql .= " , " . $conf -> global -> OSC_DB_NAME . " . " . $conf -> global -> OSC_DB_TABLE_PREFIX . " customers as c " ;
2003-03-25 22:46:18 +01:00
$sql .= " WHERE n.customers_id = c.customers_id AND p.products_id=n.products_id " ;
2009-01-31 02:17:53 +01:00
$sql .= " AND p.language_id = " . $conf -> global -> OSC_LANGUAGE_ID ;
2003-03-24 22:43:29 +01:00
$sql .= " ORDER BY $sortfield $sortorder " ;
2012-01-05 12:13:42 +01:00
$sql .= $dbosc -> plimit ( $limit , $offset );
2009-01-31 02:17:53 +01:00
2010-08-09 17:42:57 +02:00
$resql = $dbosc -> query ( $sql );
if ( $resql )
2003-03-25 22:46:18 +01:00
{
2010-08-09 17:42:57 +02:00
$num = $dbosc -> num_rows ( $resql );
2003-03-24 22:43:29 +01:00
$i = 0 ;
2004-10-23 18:55:07 +02:00
print " <table class= \n oborder \" width= \" 100% \" > " ;
2004-10-31 14:00:04 +01:00
print " <tr class= \" liste_titre \" > " ;
2004-07-30 15:13:05 +02:00
print_liste_field_titre ( " Client " , " index.php " , " c.customers_lastname " );
2004-10-31 14:00:04 +01:00
print '<td>' . $langs -> trans ( " Product " ) . '</td>' ;
2004-10-23 18:55:07 +02:00
print " </tr> \n " ;
2003-03-24 22:43:29 +01:00
$var = True ;
2003-03-25 22:46:18 +01:00
while ( $i < $num )
{
2010-08-09 17:42:57 +02:00
$objp = $dbosc -> fetch_object ( $resql );
2003-03-25 22:46:18 +01:00
$var =! $var ;
2013-06-20 09:18:12 +02:00
print " <tr " . $bc [ $var ] . " > " ;
2004-10-23 18:55:07 +02:00
print " <td width='70%'><a href= \" fiche.php?id= $objp->rowid\ " > $objp -> customers_firstname $objp -> customers_lastname </ a ></ TD > \n " ;
2003-07-22 19:51:05 +02:00
print '<td><a href="' . DOL_URL_ROOT . '/boutique/livre/fiche.php?oscid=' . $objp -> products_id . '">' . $objp -> products_name . " </a></td> " ;
2004-10-23 18:55:07 +02:00
print " </tr> \n " ;
2003-03-25 22:46:18 +01:00
$i ++ ;
}
2004-10-23 18:55:07 +02:00
print " </table> " ;
2010-08-09 17:42:57 +02:00
$dbosc -> free ( $resql );
2003-03-24 22:43:29 +01:00
}
else
{
2009-02-20 23:53:15 +01:00
dol_print_error ( $dbosc );
2003-03-24 22:43:29 +01:00
}
2006-09-03 15:49:00 +02:00
$dbosc -> close ();
2003-03-24 22:43:29 +01:00
2011-08-27 16:24:16 +02:00
llxFooter ();
2003-03-24 22:43:29 +01:00
?>