This commit is contained in:
sparkyx 2008-01-10 21:55:25 +00:00
parent 7327b49f16
commit 204c91b19b
3 changed files with 1 additions and 409 deletions

View file

@ -100,6 +100,7 @@ echo ShowItem(array(
array('?p_action=fiche&'.$str_dossier,'Fiche'),
array('?p_action=periode&'.$str_dossier,'Ferm. Periode'),
array('?p_action=central&'.$str_dossier,'Centralisation'),
array('?p_action=contact&'.$str_dossier,'Contact'),
array('?p_action=suivi_courrier&'.$str_dossier,'Suivi Courrier'),
),
'H',"mtitle","mtitle","?p_action=$p_action&".$str_dossier,' width="100%"');
@ -159,12 +160,6 @@ if ( $p_action == 'depense')
require_once("depense.inc.php");
}
//-----------------------------------------------------
// Administration
if ( $p_action == 'admin')
{
require_once("admin.inc.php");
}
//-----------------------------------------------------
// Banque
if ( $p_action == 'bank')
{

View file

@ -1,183 +0,0 @@
<?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
require_once("class_admin.php");
$sub_action=(isset($_REQUEST['sa']))?$_REQUEST['sa']:"";
$User->can_request($cn,ADMIN);
/*! \file
* \brief Called from the module "Gestion" to manage the customer
*/
?>
<?php
// Menu
// Remove a card
if ( isset ($_POST['delete']) )
{
echo 'delete';
$f_id=$_REQUEST['f_id'];
$fiche=new Admin($cn,$f_id);
$fiche->remove();
$sub_action="list";
}
//-----------------------------------------------------
// Add card
if ( $sub_action=="insert" )
{
$retour=sprintf('<A class="mtitle" HREF="%s"><input type="button" value="Retour"></A>',
urldecode($_REQUEST['url']));
$admin=new Admin($cn);
$admin->Save($_REQUEST['fd_id']);
echo $retour;
echo "<table>";
echo $admin->Display(true);
echo "</table>";
echo $retour;
}
//-----------------------------------------------------
// Save modification
if ( isset ($_POST['mod']))
{
// modification is asked
$f_id=$_REQUEST['f_id'];
$sup=new Admin($cn,$f_id);
$sup->Save();
}
// by default open liste
if ( $sub_action == "" )
$sub_action="list";
//-----------------------------------------------------
//Display a blank card
if ( $sub_action=="blank")
{
$retour=sprintf('<A class="mtitle" HREF="%s"><input type="button" value="Retour"></A>',
"commercial.php?p_action=admin&$str_dossier");
echo '<div class="u_redcontent">';
echo $retour;
$c=new Admin($cn);
echo '<form method="post" action="commercial.php"';
echo dossier::hidden();
echo '<input type="hidden" name="p_action" value="admin">';
echo '<input type="hidden" name="sa" value="insert">';
echo '<input type="hidden" name="fd_id" value="'.$_GET['fd_id'].'">';
echo '<input type="hidden" name="url" value="'.$_GET['url'].'">';
echo $c->blank($_GET['fd_id']);
echo '<input type="Submit" value="Sauve">';
echo '</form>';
echo $retour;
echo '</div>';
}
//-----------------------------------------------------
// list
if ( $sub_action == "list" )
{
?>
<div class="u_content">
<span style="position:float;float:left">
<form method="get" action="commercial.php">
<?php
echo dossier::hidden();
$a=(isset($_GET['query']))?$_GET['query']:"";
printf ('<input type="text" name="query" value="%s">',
$a);
?>
<input type="submit" name="submit_query" value="recherche">
<input type="hidden" name="p_action" value="admin">
</form>
</span>
<span style="position:float;float:left">
<form method="get" action="commercial.php">
<?php echo dossier::hidden(); ?>
<input type="hidden" name="url" <?php $url=urlencode($_SERVER['REQUEST_URI']);echo 'value="'.$url.'"'; ?>
<input type="hidden" name="p_action" value="admin">
<?php
$w=new widget("select");
$w->name="fd_id";
$w->value= make_array($cn,"select fd_id,fd_label from fiche_def where ".
" frd_id=".FICHE_TYPE_ADM_TAX);
if ( count($w->value) != 0 )
{
?>
<input type="hidden" name="sa" value="blank">
<input type="submit" name="submit_query" value="Ajout Sup">
<?
echo $w->IOValue();
}
else
{
echo '<p style="color:red">Aucune fiche de catégories Administration</p>';
echo 'allez dans fiche -> creation et choississez Administration comme cat&eacute;gorie';
}
?>
</form>
</span>
<?php
$sup=new Admin($cn);
$search=(isset($_GET['query']))?$_GET['query']:"";
// echo '<div style="position:absolute;left:15%;width:67%;margin-top:20px;">';
echo '<div class="u_redcontent">';
echo $sup->Summary($search);
echo '</div>';
echo '</div>';
}
//-----------------------------------------------------
// Show Detail
if ( $sub_action == 'detail' )
{
$f_id=$_REQUEST['f_id'];
echo '<div class="u_redcontent">';
$sup=new Admin($cn,$f_id);
$retour=sprintf('<A class="mtitle" HREF="%s"><input type="button" value="Retour"></A>',
urldecode($_REQUEST['url']));
echo $retour;
echo '<form action="'.$_REQUEST['url'].'" method="post">';
echo dossier::hidden();
echo $sup->Display(false);
$w=new widget("hidden");
$w->name="p_action";
$w->value="admin";
echo $w->IOValue();
$w->name="f_id";
$w->value=$f_id;
echo $w->IOValue();
echo $w->Submit('mod','Sauver les modifications');
echo $w->Reset("Annuler");
echo $w->Submit('delete','Effacer cette fiche');
echo '</form>';
echo $retour;
echo '<div>';
}
html_page_stop();
?>

View file

@ -1,220 +0,0 @@
<?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
//!\brief File for adding contact, contact is a kind of fiche
require_once('class_contact.php');
require_once('class_widget.php');
/*! \file
* \brief the contact class is derived from the class fiche
* the contact is in fact a card but more specific
* This file is included from the module "Gestion"
*/
$sub_action=(isset($_REQUEST['sa']))?$_REQUEST['sa']:"";
// if this page is called from another menu (customer, supplier,...)
// a button back is added
// TODO add function for generating url, hidden tags...
if ( isset ($_REQUEST['url']))
{
$retour=sprintf('<A class="mtitle" HREF="%s"><input type="button" value="Retour"></A>',urldecode($_REQUEST['url']));
$h_url=sprintf('<input type="hidden" name="url" value="%s">',urldecode($_REQUEST['url']));
}
else
{
$retour="";
$h_url="";
}
// Menu
// Remove a card
if ( isset ($_POST['delete']) )
{
$f_id=$_REQUEST['f_id'];
$fiche=new contact($cn,$f_id);
$fiche->remove();
$sub_action="list";
}
//-----------------------------------------------------
// Add card
if ( $sub_action=="insert" )
{
$contact=new Contact($cn);
$contact->Save($_REQUEST['fd_id']);
echo $retour;
echo "<table>";
echo $contact->Display(true);
echo "</table>";
echo $retour;
}
//-----------------------------------------------------
// Save modification
if ( isset ($_POST['mod']))
{
// modification is asked
$f_id=$_REQUEST['f_id'];
$contact=new contact($cn,$f_id);
$contact->Save();
$sub_action="list";
}
// by default open liste
if ( $sub_action == "" )
$sub_action="list";
//-----------------------------------------------------
//Display a blank card
if ( $sub_action=="blank")
{
$retour_action=sprintf('<A class="mtitle" HREF="%s"><input type="button" value="Retour"></A>',
"commercial.php?p_action=contact&$str_dossier");
echo '<div class="u_redcontent">';
echo $retour_action;
$c=new contact($cn);
echo '<form method="post" action="commercial.php"';
echo dossier::hidden();
echo '<input type="hidden" name="p_action" value="client">';
echo '<input type="hidden" name="sa" value="insert">';
echo '<input type="hidden" name="fd_id" value="'.$_GET['fd_id'].'">';
echo '<input type="hidden" name="url" value="'.$_GET['url'].'">';
echo $c->blank($_GET['fd_id']);
echo '<input type="Submit" value="Sauve">';
echo '</form>';
echo $retour_action;
echo '</div>';
}
//-----------------------------------------------------
// list
if ( $sub_action == "list" )
{
?>
<div class="u_content">
<span>
<form method="get" action="commercial.php">
<?php
echo dossier::hidden();
$a=(isset($_GET['query']))?$_GET['query']:"";
printf ('<input type="text" name="query" value="%s">',
$a);
?>
<input type="submit" name="submit_query" value="recherche">
<input type="hidden" name="p_action" value="contact">
</form>
<form>
<?php
echo dossier::hidden();
$qcode=(isset($_GET['qcode']))?$_GET['qcode']:"";
echo JS_SEARCH_CARD;
$w=new widget('js_search_only');
$w->name='qcode';
$w->value=$qcode;
$w->label='qcode';
$w->table=0;
$w->extra='4,8,9,14';
echo $w->IOValue();
$sp= new widget("span");
echo $sp->IOValue("qcode_label",$qcode)."</TD></TR>";
?>
<input type="submit" name="submit_query" value="recherche">
<input type="hidden" name="p_action" value="contact">
</FORM>
</span>
<span>
<form method="get" action="commercial.php">
<? echo dossier::hidden(); ?>
<input type="hidden" name="url" <?php $url=urlencode($_SERVER['REQUEST_URI']);echo 'value="'.$url.'"'; ?>
<input type="hidden" name="p_action" value="contact">
<?php
$w=new widget("select");
$w->name="fd_id";
$w->value= make_array($cn,"select fd_id,fd_label from fiche_def where ".
" frd_id=".FICHE_TYPE_CONTACT);
// if array is empty show an warning and stops
if ( sizeof ($w->value) == 0 ) {
echo '<p style="color:red">Aucune fiche de catégories contact</p>';
echo '<p>allez dans fiche creation et choississez contact comme sorte</p>';
exit();
}
echo $w->IOValue();
?>
<input type="hidden" name="sa" value="blank">
<input type="submit" name="submit_query" value="Ajout Contact">
</form>
</span>
<?php
$contact=new Contact($cn);
$search=(isset($_GET['query']))?$_GET['query']:"";
// check if a company is asked if yes, add a condition
if ( $qcode != "" )
{
$contact->company=$qcode;
}
echo $retour;
echo '<div class="u_redcontent">';
echo $contact->Summary($search);
echo '</div>';
echo $retour;
}
//-----------------------------------------------------
// Show Detail
if ( $sub_action == 'detail' )
{
$f_id=$_REQUEST['f_id'];
echo '<div class="u_redcontent">';
$contact=new contact($cn,$f_id);
echo $retour;
echo '<form action="'.$_SERVER['REQUEST_URI'].'" method="post">';
echo dossier::hidden();
echo $contact->Display(false);
$w=new widget("hidden");
$w->name="p_action";
$w->value="contact";
echo $w->IOValue();
$w->name="f_id";
$w->value=$f_id;
echo $w->IOValue();
echo $w->Submit('mod','Sauver les modifications');
echo '<A HREF="commercial.php?p_action=contact&'.$str_dossier.'"><INPUT TYPE="button" value="Retour"></A>';
echo $w->Submit('delete','Effacer cette fiche');
echo '</form>';
echo $retour;
echo '<div>';
}
html_page_stop();