* * 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$ * */ require("./pre.inc.php"); llxHeader("","Téléphonie - Factures client"); if ($cancel == $langs->trans("Cancel")) { $action = ''; } /* * Affichage * */ if ($_GET["id"]) { $soc = new Societe($db); $result = $soc->fetch($_GET["id"], $user); if (!$soc->perm_read) { print "Lecture non authorisée"; } if ( $result == 1 && $soc->perm_read) { if ($_GET["action"] <> 'edit' && $_GET["action"] <> 're-edit') { $h=0; $head[$h][0] = DOL_URL_ROOT."/telephonie/client/fiche.php?id=".$soc->id; $head[$h][1] = $langs->trans("Contrats"); $h++; $head[$h][0] = DOL_URL_ROOT."/telephonie/client/lignes.php?id=".$soc->id; $head[$h][1] = $langs->trans("Lignes"); $h++; $head[$h][0] = DOL_URL_ROOT."/telephonie/client/factures.php?id=".$soc->id; $head[$h][1] = $langs->trans("Factures"); $hselected = $h; $h++; $head[$h][0] = DOL_URL_ROOT."/telephonie/client/stats.php?id=".$soc->id; $head[$h][1] = $langs->trans("Stats"); $h++; $sql = "SELECT count(*) FROM ".MAIN_DB_PREFIX."telephonie_tarif_client"; $sql .= " WHERE fk_client = '".$soc->id."';"; $resql = $db->query($sql); if ($resql) { $row = $db->fetch_row($resql); $db->free($resql); } $head[$h][0] = DOL_URL_ROOT."/telephonie/client/tarifs.php?id=".$soc->id; $head[$h][1] = $langs->trans("Tarifs (".$row[0].")"); $h++; dolibarr_fiche_head($head, $hselected, 'Client : '.$soc->nom); print ''; print ''; print ""; print ''; print ''; print '
'.$langs->trans('Name').''.$soc->nom.''.$langs->trans('Code Client').''.$soc->code_client.'
".$langs->trans('Address')."".nl2br($soc->adresse)."
".$soc->cp." ".$soc->ville." ".$soc->pays."
'.$langs->trans('Phone').''.dolibarr_print_phone($soc->tel).''.$langs->trans('Fax').''.dolibarr_print_phone($soc->fax).'

'; /* * Factures * */ if ($page == -1) { $page = 0 ; } if ($sortorder == "") { $sortorder="DESC"; } if ($sortfield == "") { $sortfield="f.date"; } $offset = $conf->liste_limit * $page ; $pageprev = $page - 1; $pagenext = $page + 1; $sql = "SELECT f.rowid, f.date, sum(f.cout_vente) as cout_vente, f.fk_facture"; $sql .= " ,s.nom, s.idp"; $sql .= " FROM ".MAIN_DB_PREFIX."telephonie_facture as f"; $sql .= " , ".MAIN_DB_PREFIX."societe as s"; $sql .= " , ".MAIN_DB_PREFIX."telephonie_societe_ligne as l"; $sql .= " WHERE s.idp = l.fk_soc_facture AND l.rowid = f.fk_ligne"; $sql .= " AND s.idp = ".$soc->id; $sql .= " GROUP BY f.fk_facture"; $sql .= " ORDER BY $sortfield $sortorder " . $db->plimit($conf->liste_limit+1, $offset); $resql = $db->query($sql); if ($resql) { $num = $db->num_rows($resql); $i = 0; print ''; print ''; print ''; print ''; print "\n"; $var=True; while ($i < min($num,$conf->liste_limit)) { $obj = $db->fetch_object($resql); $var=!$var; print ""; print '\n"; print '\n"; print '\n"; print "\n"; $i++; } print "
DateMontant HTFacture
'.$obj->date."'.sprintf("%01.4f",$obj->cout_vente)."'.$obj->fk_facture."
"; $db->free($resql); } else { print $db->error() . ' ' . $sql; } } } } else { print "Error"; } print ''; /* ************************************************************************** */ /* */ /* Barre d'action */ /* */ /* ************************************************************************** */ $db->close(); llxFooter("Dernière modification $Date$ révision $Revision$"); ?>