dolibarr/htdocs/boutique/commande/ca.php

117 lines
2.7 KiB
PHP
Raw Normal View History

<?php
/* Copyright (C) 2003 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004-2006 Laurent Destailleur <eldy@users.sourceforge.net>
2003-09-04 13:59:46 +02: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 3 of the License, or
2003-09-04 13:59:46 +02: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-09-04 13:59:46 +02:00
*
*/
/**
* \file htdocs/boutique/commande/ca.php
* \ingroup boutique
* \brief Page ca commandes du module OsCommerce
*/
require '../../main.inc.php';
require_once DOL_DOCUMENT_ROOT.'/boutique/osc_master.inc.php';
2010-03-27 03:29:49 +01:00
2010-04-28 16:38:38 +02:00
/*
* View
*/
2003-09-04 13:59:46 +02:00
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, "ca.php");
2003-09-04 13:59:46 +02:00
print '<table class="noborder" cellspacing="0" cellpadding="3">';
print '<tr class="liste_titre"><td>'.$langs->trans("Description").'</td>';
print '<td align="right">'.$langs->trans("Lastname").'</td></tr>';
2003-09-04 13:59:46 +02:00
$sql = "SELECT sum(t.value) as value";
$sql .= " FROM ".$conf->global->OSC_DB_NAME.".".$conf->global->OSC_DB_TABLE_PREFIX."orders_total as t";
2003-09-04 13:59:46 +02:00
$sql .= " WHERE t.class = 'ot_subtotal'";
2010-08-09 17:42:57 +02:00
$resql=$dbosc->query($sql);
if ($resql)
2003-09-04 13:59:46 +02:00
{
2010-08-09 17:42:57 +02:00
$num = $dbosc->num_rows($resql);
2003-09-04 13:59:46 +02:00
$var=True;
if ($num > 0)
{
2010-08-09 17:42:57 +02:00
$objp = $dbosc->fetch_object($resql);
2003-09-04 13:59:46 +02:00
$var=!$var;
2013-06-20 09:18:12 +02:00
print "<tr ".$bc[$var].">";
2003-09-04 13:59:46 +02:00
print '<td>Somme des commandes</td>';
print '<td align="right">'.price($objp->value).'</td>';
print "</tr>\n";
2003-09-04 13:59:46 +02:00
$i++;
}
$dbosc->free();
2003-09-04 13:59:46 +02:00
}
else
{
dol_print_error($dbosc);
2003-09-04 13:59:46 +02:00
}
$sql = "SELECT sum(t.value) as value";
$sql .= " FROM ".$conf->global->OSC_DB_NAME.".".$conf->global->OSC_DB_TABLE_PREFIX."orders_total as t";
2003-09-04 13:59:46 +02:00
$sql .= " WHERE t.class = 'ot_shipping'";
2010-08-09 17:42:57 +02:00
$resql=$dbosc->query($sql);
if ($resql)
2003-09-04 13:59:46 +02:00
{
2010-08-09 17:42:57 +02:00
$num = $dbosc->num_rows($resql);
2003-09-04 13:59:46 +02:00
$var=True;
if ($num > 0)
{
2010-08-09 17:42:57 +02:00
$objp = $dbosc->fetch_object($resql);
2003-09-04 13:59:46 +02:00
$var=!$var;
2013-06-20 09:18:12 +02:00
print "<tr ".$bc[$var].">";
2003-09-04 13:59:46 +02:00
print '<td>Somme des frais de port</td>';
print '<td align="right">'.price($objp->value).'</td></tr>';
$i++;
}
$dbosc->free();
2003-09-04 13:59:46 +02:00
}
else
{
dol_print_error($dbosc);
2003-09-04 13:59:46 +02:00
}
print "</table>";
$dbosc->close();
2003-09-04 13:59:46 +02:00
llxFooter();
2003-09-04 13:59:46 +02:00
?>