mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-02-20 13:46:52 +01:00
94 lines
2.2 KiB
PHP
94 lines
2.2 KiB
PHP
<?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/FacturationImportCdr.class.php';
|
|
|
|
$dir = $conf->telephonie->dir_output."/cdr/atraiter/" ;
|
|
|
|
$handle=opendir($dir);
|
|
|
|
$files = array();
|
|
|
|
$var=true;
|
|
while (($file = readdir($handle))!==false)
|
|
{
|
|
if (is_file($dir.'/'.$file))
|
|
array_push($files, $file);
|
|
}
|
|
closedir($handle);
|
|
|
|
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("Importation des fichiers CDR", $page, "files.php", "", $sortfield, $sortorder, '', $num);
|
|
|
|
print '<table class="noborder" width="100%" cellspacing="0" cellpadding="4">';
|
|
print '<tr class="liste_titre">';
|
|
print '<td colspan="2">Messages</td>';
|
|
|
|
print "</tr>\n";
|
|
|
|
$var=True;
|
|
|
|
$obj = new FacturationImportCdr($db);
|
|
$obj->Import($_GET["id"]);
|
|
|
|
foreach ($obj->messages as $message)
|
|
{
|
|
$var=!$var;
|
|
print "<tr $bc[$var]>";
|
|
|
|
if (is_array($message))
|
|
{
|
|
$func = 'img_'.$message[0];
|
|
print '<td>'.$func().'</td>';
|
|
print '<td width="99%">'.$message[1].'</td></tr>';
|
|
}
|
|
else
|
|
{
|
|
print '<td>'.img_info().'</td>';
|
|
print '<td width="99%">'.$message.'</td></tr>';
|
|
}
|
|
}
|
|
print "</table>";
|
|
|
|
$db->close();
|
|
|
|
llxFooter("<em>Dernière modification $Date$ révision $Revision$</em>");
|
|
?>
|