altocompta/html/commercial.php
Dany De Bontridder 6c029c2b80 Merged revisions 3285-3302 via svnmerge from
file:///home/developper/svn/phpcompta/branches/rel510

........
  r3286 | danydb | 2010-06-12 19:24:49 +0200 (Sat, 12 Jun 2010) | 2 lines
  
  Check if database is valid
........
  r3287 | danydb | 2010-06-12 20:41:47 +0200 (Sat, 12 Jun 2010) | 1 line
  
  Fix bug : when using twice the same accounting in operation, one of them is not visible in "impression->poste"
........
  r3288 | danydb | 2010-06-12 21:04:36 +0200 (Sat, 12 Jun 2010) | 2 lines
  
  Cosmetic
........
  r3289 | danydb | 2010-06-12 21:14:07 +0200 (Sat, 12 Jun 2010) | 1 line
  
  Cosmetic : fix CSS
........
  r3290 | danydb | 2010-06-12 21:17:05 +0200 (Sat, 12 Jun 2010) | 2 lines
  
  Fix CSS
........
  r3291 | danydb | 2010-06-12 21:48:52 +0200 (Sat, 12 Jun 2010) | 3 lines
  
  Cosmetic : fix CSS
  
  An user who is NOT admin and can access only ONE folder is automatically redirected to the plugins or the dashboard 
........
  r3292 | danydb | 2010-06-14 20:38:39 +0200 (Mon, 14 Jun 2010) | 2 lines
  
  Cosmetic highlight row for lettering
........
  r3293 | danydb | 2010-06-14 20:38:52 +0200 (Mon, 14 Jun 2010) | 2 lines
  
  Highlight row of lettering
........
  r3294 | danydb | 2010-06-14 20:41:53 +0200 (Mon, 14 Jun 2010) | 1 line
  
  Lettering : if an operation is removed : the lettering is also removed on both side
........
  r3295 | danydb | 2010-06-14 20:43:50 +0200 (Mon, 14 Jun 2010) | 1 line
  
  rename upgrade80
........
  r3296 | danydb | 2010-06-14 20:49:40 +0200 (Mon, 14 Jun 2010) | 2 lines
  
  cosmetic : parameter -> societe align to right
........
  r3297 | danydb | 2010-06-14 20:50:38 +0200 (Mon, 14 Jun 2010) | 2 lines
  
  width set auto for the table
........
  r3298 | danydb | 2010-06-14 21:04:09 +0200 (Mon, 14 Jun 2010) | 1 line
  
  Lettering : if an operation is removed : the lettering is also removed on both side
........
  r3299 | danydb | 2010-06-14 21:25:04 +0200 (Mon, 14 Jun 2010) | 2 lines
  
  Fix problem with offset unlimited
........
  r3300 | danydb | 2010-06-14 21:57:45 +0200 (Mon, 14 Jun 2010) | 1 line
  
  Update the doc  == Lettering : if an operation is removed : the lettering is also removed on both side
........
  r3301 | danydb | 2010-06-15 23:57:55 +0200 (Tue, 15 Jun 2010) | 1 line
  
  Add bank CBC on line
........
  r3302 | danydb | 2010-06-16 00:30:47 +0200 (Wed, 16 Jun 2010) | 2 lines
  
  Bug fix : when using a predefined operation, javascript for adding rows doesn't work properly
........
2010-06-16 09:37:29 +00:00

229 lines
5.9 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 Base of the module "Gestion", the p_action indicates what
* file must included and this file will manage the request
* (customer, supplier, contact,...)
*/
include_once ("ac_common.php");
require_once("constant.php");
require_once('class_database.php');
echo JS_AJAX_FICHE;
require_once('class_dossier.php');
$gDossier=dossier::id();
$g_name=dossier::name();
require_once('class_database.php');
/* Admin. Dossier */
$rep=new Database($gDossier);
require_once ("class_user.php");
$User=new User($rep);
$User->Check();
if ($User->check_dossier($gDossier)=='P') {
redirect("extension.php?".dossier::get(),0);
exit();
}
//-----------------------------------------------------
// update preference
//-----------------------------------------------------
if ( isset ( $_POST['style_user']) ) {
$User->update_global_pref('THEME',$_POST['style_user']);
$_SESSION['g_theme']=$_POST['style_user'];
}
// Met a jour le pagesize
if ( isset ( $_POST['p_size']) ) {
$User->update_global_pref('PAGESIZE',$_POST['p_size']);
$_SESSION['g_pagesize']=$_POST['p_size'];
}
///
html_page_start($_SESSION['g_theme'],"","");
if ( ! isset ( $gDossier ) ) {
echo _("Vous devez choisir un dossier ");
exit -2;
}
include_once("user_menu.php");
$str_dossier=dossier::get();
$p_action=(isset ($_REQUEST['p_action']))?$_REQUEST['p_action']:"";
echo '<div class="u_tmenu">';
echo menu_tool('commercial.php');
echo '<div class="topmenu">';
$def=0;
if ( isset($_REQUEST['p_action'])) {
switch($_REQUEST['p_action']) {
case'tdb':
$def=1;
break;
case'client':
$def=2;
break;
case'tdb':
$def=1;
break;
case'supplier':
$def=3;
break;
case'adm':
$def=4;
break;
case'stock':
$def=5;
break;
case'fiche':
$def=6;
break;
case'prev':
$def=7;
break;
case'suivi_courrier':
$def=8;
break;
case'impress':
$def=9;
break;
}
}
echo ShowItem(array(
array('?p_action=client&'.$str_dossier,_('Client'),'',2),
array('?p_action=supplier&'.$str_dossier,_('Fournisseur'),'',3),
array('?p_action=adm&'.$str_dossier,_('Administration'),'',4),
array('?p_action=impress&'.$str_dossier,_('Impression'),'',9),
array('?p_action=stock&'.$str_dossier,_('Stock'),'',5),
array('?p_action=fiche&'.$str_dossier,_('Fiche'),'',6),
array('?p_action=prev&'.$str_dossier,_('Prevision'),'',7),
array('?p_action=suivi_courrier&my_action&'.$str_dossier,_('Suivi'),'',8),
),
'H',"mtitle","mtitle",$def,' width="100%"');
echo '</div>';
echo '</div>';
$cn=new Database($gDossier);
echo JS_LEDGER;
echo JS_AJAX_FICHE;
//-----------------------------------------------------
// p_action == pref
//-----------------------------------------------------
if ( $p_action == "pref" )
{
require_once("pref.inc.php");
}
//-----------------------------------------------------
// p_action == impression
//-----------------------------------------------------
if ( $p_action == "impress" )
{
require_once("impress.inc.php");
}
//-----------------------------------------------------
// p_action == adm
//-----------------------------------------------------
if ( $p_action == "adm" )
{
$User->can_request(GEADM,1);
require_once("adm.inc.php");
}
//-----------------------------------------------------
// p_action == client
//-----------------------------------------------------
if ( $p_action == "client" )
{
$User->can_request(GECUST,1);
require_once("client.inc.php");
}
// $p_action == fournisseur
//-----------------------------------------------------
// Fournisseur
if ( $p_action == 'supplier')
{
$User->can_request(GESUPPL,1);
require_once("supplier.inc.php");
}
//-----------------------------------------------------
// action
if ( $p_action == 'suivi_courrier')
{
$User->can_request(GECOUR,1);
require_once("action.inc.php");
}
//-----------------------------------------------------
// Contact
if ( $p_action == 'fiche')
{
require_once("fiche.inc.php");
}
//-----------------------------------------------------
// Impression
if ( $p_action == 'impress')
{
if ( $User->check_action(IMPRAP)==1 ||
$User->check_action(IMPJRN)==1 ||
$User->check_action(IMPFIC)==1 ||
$User->check_action(IMPPOSTE)==1 ||
$User->check_action(IMPBIL)==1 )
require_once("impress.inc.php");
else
$User->can_request(9999,1);
}
if ( $p_action == 'fiche') {
require_once('fiche.inc.php');
}
if ( $p_action == 'stock') {
require_once('stock.inc.php');
}
if ( $p_action=='periode') {
if ( $User->check_action(PARPER)==1 ||
$User->check_action(PARCLO)==1)
require_once ('periode.inc.php');
else
$User->can_request(9999,1);
}
//-----------------------------------------------------
// Expense
if ( $p_action == 'defreport')
{
$User->can_request(PARPREDE,1);
require_once("report.inc.php");
}
/*----------------------------------------------------------------------
* Prevision
*
*----------------------------------------------------------------------*/
if ( $p_action=='prev') {
$User->can_request(PREVCON,1);
require_once ('forecast.inc.php');
}