Synchro
This commit is contained in:
parent
fa2391a3f4
commit
0a2a1d6d31
File diff suppressed because it is too large
Load Diff
61
htdocs/telephonie/facturation/calcul.php
Normal file
61
htdocs/telephonie/facturation/calcul.php
Normal file
@ -0,0 +1,61 @@
|
|||||||
|
<?PHP
|
||||||
|
/* Copyright (C) 2007 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$
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
require("./pre.inc.php");
|
||||||
|
require_once DOL_DOCUMENT_ROOT.'/telephonie/facturation/FacturationCalcul.class.php';
|
||||||
|
|
||||||
|
if (!$user->rights->telephonie->facture->ecrire) accessforbidden();
|
||||||
|
|
||||||
|
llxHeader();
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Sécurité accés client
|
||||||
|
*/
|
||||||
|
if ($user->societe_id > 0)
|
||||||
|
{
|
||||||
|
$action = '';
|
||||||
|
$socid = $user->societe_id;
|
||||||
|
}
|
||||||
|
/*
|
||||||
|
*
|
||||||
|
*/
|
||||||
|
print_barre_liste("Calcul des CDR", $page, "calcul.php", "", $sortfield, $sortorder, '', $num);
|
||||||
|
|
||||||
|
print '<table class="noborder" width="100%" cellspacing="0" cellpadding="4">';
|
||||||
|
print '<tr class="liste_titre">';
|
||||||
|
print '<td>Message</td></tr>';
|
||||||
|
|
||||||
|
$var=True;
|
||||||
|
|
||||||
|
$obj = new FacturationCalcul($db);
|
||||||
|
$obj->Calcul();
|
||||||
|
|
||||||
|
foreach ($obj->messages as $message)
|
||||||
|
{
|
||||||
|
$var=!$var;
|
||||||
|
print "<tr $bc[$var]><td>".$message."</td></tr>\n";
|
||||||
|
}
|
||||||
|
print "</table>";
|
||||||
|
|
||||||
|
$db->close();
|
||||||
|
|
||||||
|
llxFooter("<em>Dernière modification $Date$ révision $Revision$</em>");
|
||||||
|
?>
|
||||||
@ -66,7 +66,7 @@ print "</tr>\n";
|
|||||||
$var=True;
|
$var=True;
|
||||||
|
|
||||||
$obj = new FacturationImportCdr($db);
|
$obj = new FacturationImportCdr($db);
|
||||||
$obj->Import();
|
$obj->Import($_GET["id"]);
|
||||||
|
|
||||||
foreach ($obj->messages as $message)
|
foreach ($obj->messages as $message)
|
||||||
{
|
{
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user