mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-18 07:21:30 +01:00
92 lines
2.6 KiB
PHP
92 lines
2.6 KiB
PHP
<?PHP
|
|
/* Copyright (C) 2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
|
*
|
|
* 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$
|
|
*
|
|
* Vérifie les lignes ayant le statut d'attente
|
|
*
|
|
*/
|
|
require ("../../../master.inc.php");
|
|
require_once (DOL_DOCUMENT_ROOT."/includes/php_writeexcel/class.writeexcel_workbook.inc.php");
|
|
require_once (DOL_DOCUMENT_ROOT."/includes/php_writeexcel/class.writeexcel_worksheet.inc.php");
|
|
/*
|
|
*
|
|
*/
|
|
$sql = "SELECT l.ligne,s.nom,fc.datef, f.cout_vente";
|
|
$sql .= " FROM ".MAIN_DB_PREFIX."telephonie_facture as f";
|
|
$sql .= " , ".MAIN_DB_PREFIX."telephonie_contrat as c";
|
|
$sql .= " , ".MAIN_DB_PREFIX."telephonie_societe_ligne as l";
|
|
$sql .= " , ".MAIN_DB_PREFIX."societe as s";
|
|
$sql .= " , ".MAIN_DB_PREFIX."facture as fc";
|
|
|
|
$sql .= " WHERE date_format(f.date,'%Y') = '2005'";
|
|
$sql .= " AND l.fk_contrat = c.rowid";
|
|
$sql .= " AND c.fk_client_comm = 52";
|
|
$sql .= " AND f.ligne = l.ligne";
|
|
$sql .= " AND l.fk_soc_facture =s.idp";
|
|
$sql .= " AND fc.rowid = f.fk_facture";
|
|
$sql .= " ORDER BY f.date ASC, f.fk_ligne ASC";
|
|
|
|
$resql = $db->query($sql);
|
|
if ( $resql )
|
|
{
|
|
$fname = "/tmp/export-52.xls";
|
|
|
|
$workbook = &new writeexcel_workbook($fname);
|
|
|
|
$page = &$workbook->addworksheet("2005");
|
|
|
|
|
|
$page->write(0, 0, "Ligne", $format_titre_agence1);
|
|
$page->write(0, 1, "Client", $format_titre);
|
|
$page->write(0, 2, "Cout", $format_titre);
|
|
$page->write(0, 3, "Date", $format_titre);
|
|
|
|
$fnb =& $workbook->addformat();
|
|
$fnb->set_align('vcenter');
|
|
$fnb->set_align('left');
|
|
|
|
$i = 1;
|
|
while ($row = $db->fetch_row($resql))
|
|
{
|
|
print $row[0]. " ".$row[1]." ".$row[3]." ".$row[2]."\n";
|
|
|
|
$xx = $i + 1;
|
|
|
|
$page->write_string($xx, 0, $row[0], $fnb);
|
|
$page->write_string($xx, 1, $row[1], $fnb);
|
|
$page->write_number($xx, 2, $row[3], $fnb);
|
|
$page->write_string($xx, 3, $row[2], $fnb);
|
|
|
|
$i++;
|
|
}
|
|
|
|
$workbook->close();
|
|
|
|
}
|
|
|
|
else
|
|
{
|
|
print $db->error();
|
|
}
|
|
|
|
|
|
|
|
$db->close();
|
|
?>
|