altocompta/include/dossier.inc.php

358 lines
12 KiB
PHP

<?php
/*
* This file is part of PhpCompta.
*
* PhpCompta 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.
*
* PhpCompta 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 PhpCompta; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
/* $Revision$ */
// Copyright Author Dany De Bontridder ddebontridder@yahoo.fr
/*!\file
* \brief Management of the folder
*
*/
require_once("class_itext.php");
require_once("class_icheckbox.php");
require_once("class_itextarea.php");
$sa=(isset($_REQUEST['sa']))?$_REQUEST['sa']:'list';
//---------------------------------------------------------------------------
// Update
if ( isset ($_POST['upd']) && isset ($_POST['d']))
{
$dos=new dossier($_POST['d']);
$dos->set_parameter('name',$_POST['name']);
$dos->set_parameter('desc',$_POST['desc']);
$dos->save();
}
echo '<div class="content" style="width:80%;margin-left:10%">';
// check and add an new folder
if ( isset ($_POST["DATABASE"]) )
{
$cn=new Database();
$dos=trim($_POST["DATABASE"]);
$dos=FormatString($dos);
if (strlen($dos)==0)
{
echo _("Le nom du dossier est vide");
exit -1;
}
$encoding=$cn->get_value("select encoding from pg_database where ".
" datname='".domaine.'mod'.FormatString($_POST["FMOD_ID"])."'");
if ( $encoding != 6 )
{
alert(_('Désolé vous devez migrer ce modèle en unicode'));
echo '<span class="error">';
echo _('le modele ').domaine.'mod'.$_POST["FMOD_ID"]._(" doit être migré en unicode.");
echo _('Pour le passer en unicode, faites-en un backup puis restaurez le fichier reçu').'</span>';
echo HtmlInput::button_anchor('Retour','admin_repo.php?action=dossier_mgt');
exit();
}
$desc=FormatString($_POST["DESCRIPTION"]);
try
{
$cn->start();
$Res=$cn->exec_sql("insert into ac_dossier(dos_name,dos_description)
values ('".$dos."','$desc')");
$l_id=$cn->get_current_seq('dossier_id');
$cn->commit();
}
catch (Exception $e)
{
$msg=_("Desole la creation de ce dossier a echoue,\n la cause la plus probable est".
' deux fois le même nom de dossier');
alert($msg);
;
$l_id=0;
$cn->rollback();
}
// If the id is not null, name successfully inserted
// Database created
if ( $l_id != 0)
{
//--
// setting the year
//--
$year=FormatString($_POST['YEAR']);
if ( strlen($year) != 4 || isNumber($year) == 0 || $year > 2100 || $year < 2000 || $year != round($year,0))
{
echo "$year"._(" est une année invalide");
$Res=$cn->exec_sql("delete from ac_dossier where dos_id=$l_id");
}
else
{
$Sql=sprintf("CREATE DATABASE %sDOSSIER%d encoding='UTF8' TEMPLATE %sMOD%d",
domaine,
$l_id,
domaine,
FormatString($_POST["FMOD_ID"]));
ob_start();
if ( $cn->exec_sql($Sql)==false)
{
echo "[".$Sql."]";
//ob_end_clean();
$cn->exec_sql("delete from ac_dossier where dos_id=$l_id");
echo "<h2 class=\"error\">"._(" Base de donnée ").domaine."mod".$_POST['FMOD_ID']." ".
_("est accèdée, déconnectez-vous d'abord")."</h2>";
exit;
}
ob_flush();
$Res=$cn->exec_sql("insert into jnt_use_dos (use_id,dos_id) values (1,$l_id)");
// Connect to the new database
$cn=new Database($l_id);
//--year --
$Res=$cn->exec_sql("delete from parm_periode");
if ( ($year % 4 == 0 && $year % 100 != 0) || $year % 400 == 0 )
$fev=29;
else
$fev=28;
$Res=$cn->exec_sql("delete from user_local_pref where parameter_type='PERIODE'");
$nb_day=array(31,$fev,31,30,31,30,31,31,30,31,30,30);
$m=1;
foreach ($nb_day as $day)
{
$p_start=sprintf("01-%d-%s",$m,$year);
$p_end=sprintf("%d-%d-%s",$day,$m,$year);
$sql=sprintf("insert into parm_periode (p_start,p_end,p_exercice)
values (to_date('%s','DD-MM-YYYY'),to_date('%s','DD-MM-YYYY'),'%s')",
$p_start,$p_end,$year);
$Res=$cn->exec_sql($sql);
$m++;
}
$sql=sprintf("insert into parm_periode (p_start,p_end,p_exercice)
values (to_date('31-12-%s','DD-MM-YYYY'),to_date('31-12-%s','DD-MM-YYYY'),'%s')",
$year,$year,$year);
$Res=$cn->exec_sql($sql);
$sql=" insert into jrn_periode(p_id,jrn_def_id,status) ".
"select p_id,jrn_def_id, 'OP'".
" from parm_periode cross join jrn_def";
$Res=$cn->exec_sql($sql);
}
} // if $l_id != 0
} // $_POST[DATABASE]
?>
<h2> Dossier Management</h2>
<?php
$cn=new Database();
//---------------------------------------------------------------------------
// List of folder
if ( $sa == 'list' )
{
echo HtmlInput::button_anchor(_('Rafraîchir'),'admin_repo.php?action=dossier_mgt');
echo HtmlInput::button_anchor(_('Ajouter'),'admin_repo.php?action=dossier_mgt&sa=add');
$offset=(isset($_REQUEST['offset']))?$_REQUEST['offset']:0;
$page=(isset($_REQUEST['page']))?$_REQUEST['page']:1;
$count=$cn->get_value("select count(*) from ac_dossier");
$size=10;
echo jrn_navigation_bar($offset,$count,$size,$page);
$repo=new Dossier(0);
$Res=$repo->show_dossier('all',$offset,$size);
$compteur=1;
$template="";
echo JS_CONFIRM;
echo '<TABLE class="result" style="border-collapse:separate;border-spacing:4">';
$r=th('ID').th('Nom du dossier ').th('Description').th('Nom base de données');
$r=tr($r);
echo $r;
// show all dossiers
if ( $Res != null )
{
foreach ( $Res as $Dossier)
{
if ( $compteur%2 == 0 )
$cl='class="odd"';
else
$cl='class="even"';
echo "<TR $cl><TD VALIGN=\"TOP\"> ".
$Dossier['dos_id']."</td><td> <B>".h($Dossier['dos_name'])."</B> </TD>".
"<TD><I> ".h($Dossier['dos_description'])."</I>
</TD>";
echo td(domaine."dossier".$Dossier['dos_id']);
echo "<TD>";
echo HtmlInput::button_anchor(_('Effacer'),'?action=dossier_mgt&sa=del&d='.$Dossier['dos_id']);
echo HtmlInput::button_anchor(_('Modifier'),'?action=dossier_mgt&sa=mod&d='
.$Dossier['dos_id']);
echo HtmlInput::button_anchor(_('Backup'),'backup.php?action=backup&sa=b&t=d&d='
.$Dossier['dos_id']);
echo '</td>';
echo '<tr>';
$compteur++;
}
echo "</TR>";
}
echo '</table>';
echo jrn_navigation_bar($offset,$count,$size,$page);
}
//---------------------------------------------------------------------------
// Add a new folder
if ( $sa == 'add' )
{
// Load the available Templates
$Res=$cn->exec_sql("select mod_id,mod_name,mod_desc from
modeledef order by mod_name");
$count=Database::num_row($Res);
if ( $count == 0 )
{
echo _("pas de modèle disponible");
}
else
{
$template='<SELECT NAME=FMOD_ID>';
for ($i=0;$i<$count;$i++)
{
$mod=Database::fetch_array($Res,$i);
$template.='<OPTION VALUE="'.$mod['mod_id'].'"> '.h($mod['mod_name']." - ".substr($mod['mod_desc'],0,30));
}// for
$template.="</SELECT>";
}// if count = 0
$m_date=date('Y');
?>
</TABLE>
<FORM ACTION="admin_repo.php?action=dossier_mgt" METHOD="POST">
<TABLE>
<TR>
<TD><?php echo _('Nom du dossier');
?></td><td> <INPUT TYPE="TEXT" NAME="DATABASE"> </TD>
</TR><TR>
<TD><?php echo _('Description');
?></td><td> <TEXTAREA COLS="60" ROWS="2" NAME="DESCRIPTION" ></TEXTAREA> </TD>
</TR>
<TR> <TD><?php echo _('Modèle');
?></td><td> <?php echo $template;
?> </TD></TR>
<TR><TD>Année </TD><TD><input type="text" size=4 name="YEAR" value=<?php echo '"'.$m_date.'"'; ?>></TD></TR>
<TR>
<TD> <INPUT TYPE=SUBMIT class="button" VALUE="<?php echo _('Creation Dossier'); ?>"> </TD>
<td>
<?php echo HtmlInput::button_anchor(_('Retour'),'admin_repo.php?action=dossier_mgt');
?>
</td>
</TR>
</TABLE>
</FORM>
<?php
}
//---------------------------------------------------------------------------
// action= mod
if ( $sa == 'mod' )
{
require_once ('class_dossier.php');
$dos=new dossier($_REQUEST['d']);
$dos->load();
$wText=new IText();
echo '<form action="admin_repo.php" method="post">';
echo HtmlInput::hidden('action','dossier_mgt');
echo HtmlInput::hidden('d',$dos->get_parameter("id"));
echo _('Nom').' : ';
echo $wText->input('name',$dos->get_parameter('name'));
echo '<br>';
$wDesc=new ITextArea();
$wDesc->heigh=5;
echo _('Description').' : <br>';
echo $wDesc->input('desc',$dos->get_parameter('desc'));
echo '<br>';
echo HtmlInput::submit('upd',_('Modifie'));
echo HtmlInput::button_anchor(_('Retour'),'?action=dossier_mgt');
echo '</form>';
}
//---------------------------------------------------------------------------
// action = del
//---------------------------------------------------------------------------
if ( $sa == 'del' )
{
$d=new Dossier($_REQUEST ['d'] );
$d->load();
echo '<form method="post">';
echo HtmlInput::hidden('d',$_REQUEST['d']);
echo HtmlInput::hidden('sa','remove');
echo '<h2 class="error">'._('Etes vous sûr et certain de vouloir effacer ').$d->dos_name.' ???</h2>';
$confirm=new ICheckBox();
$confirm->name="p_confirm";
echo _('Cochez la case si vous êtes sûr de vouloir effacer ce dossier');
echo $confirm->input();
echo HtmlInput::submit('remove',_('Effacer'));
echo HtmlInput::button_anchor(_('Retour'),'?action=dossier_mgt');
echo '</form>';
}
//---------------------------------------------------------------------------
// action = del
//---------------------------------------------------------------------------
if ( $sa == 'remove' )
{
if ( ! isset ($_REQUEST['p_confirm']))
{
echo _('Désolé, vous n\'avez pas coché la case');
echo HtmlInput::button_anchor('Retour','?action=dossier_mgt');
exit();
}
$cn=new Database();
$msg="dossier";
$name=$cn->get_value("select dos_name from ac_dossier where dos_id=$1",array($_REQUEST['d']));
if ( strlen(trim($name)) == 0 )
{
echo "<h2 class=\"error\"> $msg "._('inexistant')."</h2>";
exit();
}
$sql="drop database ".domaine."dossier".FormatString($_REQUEST['d']);
ob_start();
if ( $cn->exec_sql($sql)==false)
{
ob_end_clean();
echo "<h2 class=\"error\"> ";
echo _('Base de donnée ').domaine."dossier".$_REQUEST['d'].
_("est accèdée, déconnectez-vous d'abord")."</h2>";
exit;
}
ob_flush();
$sql="delete from priv_user where priv_id in (select jnt_id from jnt_use_dos where dos_id=$1)";
$cn->exec_sql($sql,array($_REQUEST['d']));
$sql="delete from jnt_use_dos where dos_id=$1";
$cn->exec_sql($sql,array($_REQUEST['d']));
$sql="delete from ac_dossier where dos_id=$1";
$cn->exec_sql($sql,array($_REQUEST['d']));
print '<h2 class="info">';
print "Voilà le dossier ".h($name)." est effacé</h2>";
echo HtmlInput::button_anchor('Retour','?action=dossier_mgt');
}
?>
</div>