Merge branch 'rel69_rewrite'

This commit is contained in:
Dany De Bontridder 2015-10-02 12:16:17 +02:00
commit b3cb736fc4
341 changed files with 1858 additions and 1589 deletions

View file

@ -213,7 +213,7 @@ if ( ! file_exists('..'.DIRECTORY_SEPARATOR.'..'.DIRECTORY_SEPARATOR.'include'.D
// magic_quotes_sybase = Off
// include_path
require_once NOALYSS_INCLUDE.'/config_file.php';
require_once NOALYSS_INCLUDE.'/class_database.php';
require_once NOALYSS_INCLUDE.'/lib/class_database.php';
if ( defined ("MULTI") && MULTI==1) { create_htaccess();}
@ -386,8 +386,8 @@ if ( $Res==0) { ?>
<?php exit(); }
include_once('ac_common.php');
require_once('class_dossier.php');
include_once('lib/ac_common.php');
require_once('class/class_dossier.php');
// Memory setting
//--

View file

@ -22,12 +22,12 @@
* templates... Accessible only by the administrator
*/
require_once '../include/constant.php';
require_once("user_common.php");
include_once("ac_common.php");
require_once('class_database.php');
require_once("lib/user_common.php");
include_once("lib/ac_common.php");
require_once('lib/class_database.php');
include_once("user_menu.php");
$rep=new Database();
include_once ("class_user.php");
include_once ("class/class_user.php");
$User=new User($rep);
$User->Check();

View file

@ -13,16 +13,16 @@
*/
if ( ! defined ('ALLOWED') ) define ('ALLOWED',1);
require_once '../include/constant.php';
require_once NOALYSS_INCLUDE.'/class_database.php';
require_once NOALYSS_INCLUDE.'/class_user.php';
require_once NOALYSS_INCLUDE.'/class_extension.php';
require_once NOALYSS_INCLUDE.'/lib/class_database.php';
require_once NOALYSS_INCLUDE.'/class/class_user.php';
require_once NOALYSS_INCLUDE.'/class/class_extension.php';
if ( !isset ($_REQUEST['gDossier'])) exit();
require_once NOALYSS_INCLUDE.'/class_own.php';
require_once NOALYSS_INCLUDE.'/class/class_own.php';
mb_internal_encoding("UTF-8");
global $g_user,$cn,$g_parameter;
$cn=new Database(dossier::id());
$cn=Dossier::connect();
$g_parameter=new Own($cn);
$g_user=new User($cn);
$g_user->check(true);

View file

@ -56,13 +56,13 @@
if ( ! defined('ALLOWED')) define ('ALLOWED',1);
require_once '../include/constant.php';
require_once NOALYSS_INCLUDE.'/class_database.php';
require_once NOALYSS_INCLUDE.'/class_fiche.php';
require_once NOALYSS_INCLUDE.'/class_iradio.php';
require_once NOALYSS_INCLUDE.'/function_javascript.php';
require_once NOALYSS_INCLUDE.'/ac_common.php';
require_once NOALYSS_INCLUDE.'/class_user.php';
require_once NOALYSS_INCLUDE.'/class_fiche_attr.php';
require_once NOALYSS_INCLUDE.'/lib/class_database.php';
require_once NOALYSS_INCLUDE.'/class/class_fiche.php';
require_once NOALYSS_INCLUDE.'/lib/class_iradio.php';
require_once NOALYSS_INCLUDE.'/lib/function_javascript.php';
require_once NOALYSS_INCLUDE.'/lib/ac_common.php';
require_once NOALYSS_INCLUDE.'/class/class_user.php';
require_once NOALYSS_INCLUDE.'/class/class_fiche_attr.php';
mb_internal_encoding("UTF-8");
@ -89,7 +89,7 @@ set_language();
*/
ajax_disconnected($_REQUEST['ctl']);
$cn=new Database($gDossier);
$cn=Dossier::connect();
global $g_user;
$g_user=new User($cn);
$g_user->check(true);
@ -356,7 +356,7 @@ case 'sc':
*
*----------------------------------------------------------------------*/
case 'fs':
require_once NOALYSS_INCLUDE.'/class_acc_ledger.php';
require_once NOALYSS_INCLUDE.'/class/class_acc_ledger.php';
$r=HtmlInput::title_box(_("Détail fiche"), 'search_card');
$r.='<form method="GET" onsubmit="this.ctl=\'ipop_card\';search_get_card(this);return false;">';
$q=new IText('query');
@ -434,14 +434,14 @@ case 'fs':
$html=$r;
break;
case 'action_add_concerned_card':
require_once NOALYSS_INCLUDE.'/ajax_add_concerned_card.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_add_concerned_card.php';
return;
break;
case 'action_save_concerned':
require 'ajax_action_save_concerned.php';
require NOALYSS_INCLUDE.'/ajax/ajax_action_save_concerned.php';
return;
case 'action_remove_concerned':
require 'ajax_action_remove_concerned.php';
require NOALYSS_INCLUDE.'/ajax/ajax_action_remove_concerned.php';
return;
case 'ac':
if ( $g_user->check_action(FICCAT)==1 )
@ -497,7 +497,7 @@ case 'ac':
$str_poste=$search->input();
$submit=HtmlInput::submit('save',_('Sauve'));
ob_start();
require('template/category_of_card.php');
require(NOALYSS_INCLUDE.'/template/category_of_card.php');
$html.=ob_get_contents();
ob_end_clean();

View file

@ -26,13 +26,13 @@
if ( ! defined('ALLOWED')) define ('ALLOWED',1);
require_once '../include/constant.php';
require_once NOALYSS_INCLUDE.'/class_database.php';
require_once NOALYSS_INCLUDE.'/class_user.php';
require_once NOALYSS_INCLUDE.'/class_dossier.php';
require_once NOALYSS_INCLUDE.'/class_periode.php';
require_once NOALYSS_INCLUDE.'/class_html_input.php';
require_once NOALYSS_INCLUDE.'/class_acc_account.php';
require_once NOALYSS_INCLUDE.'/class_exercice.php';
require_once NOALYSS_INCLUDE.'/lib/class_database.php';
require_once NOALYSS_INCLUDE.'/class/class_user.php';
require_once NOALYSS_INCLUDE.'/class/class_dossier.php';
require_once NOALYSS_INCLUDE.'/class/class_periode.php';
require_once NOALYSS_INCLUDE.'/lib/class_html_input.php';
require_once NOALYSS_INCLUDE.'/class/class_acc_account.php';
require_once NOALYSS_INCLUDE.'/class/class_exercice.php';
$div=$_REQUEST['div'];
mb_internal_encoding("UTF-8");
@ -41,7 +41,7 @@ mb_internal_encoding("UTF-8");
*/
ajax_disconnected($div);
global $g_user,$cn;
$cn=new Database(dossier::id());
$cn=Dossier::connect();
$g_user=new User($cn);
set_language();
/* security */

View file

@ -31,16 +31,16 @@
if ( ! defined('ALLOWED')) define ('ALLOWED',1);
require_once '../include/constant.php';
require_once NOALYSS_INCLUDE.'/class_database.php';
require_once NOALYSS_INCLUDE.'/class_user.php';
require_once NOALYSS_INCLUDE.'/class_acc_operation.php';
require_once NOALYSS_INCLUDE.'/class_acc_ledger.php';
require_once NOALYSS_INCLUDE.'/class_fiche.php';
require_once NOALYSS_INCLUDE.'/class_acc_reconciliation.php';
require_once NOALYSS_INCLUDE.'/class_anc_operation.php';
require_once NOALYSS_INCLUDE.'/class_idate.php';
require_once NOALYSS_INCLUDE.'/class_own.php';
require_once NOALYSS_INCLUDE.'/class_iconcerned.php';
require_once NOALYSS_INCLUDE.'/lib/class_database.php';
require_once NOALYSS_INCLUDE.'/class/class_user.php';
require_once NOALYSS_INCLUDE.'/class/class_acc_operation.php';
require_once NOALYSS_INCLUDE.'/class/class_acc_ledger.php';
require_once NOALYSS_INCLUDE.'/class/class_fiche.php';
require_once NOALYSS_INCLUDE.'/class/class_acc_reconciliation.php';
require_once NOALYSS_INCLUDE.'/class/class_anc_operation.php';
require_once NOALYSS_INCLUDE.'/lib/class_idate.php';
require_once NOALYSS_INCLUDE.'/class/class_own.php';
require_once NOALYSS_INCLUDE.'/lib/class_iconcerned.php';
/**
* Check if we receive the needed data (jr_id...)
*/
@ -62,7 +62,7 @@ $gDossier=dossier::id();
*/
ajax_disconnected($div);
$cn=new Database(dossier::id());
$cn=Dossier::connect();
$g_parameter=new Own($cn);
if ( LOGINPUT)
{

View file

@ -37,12 +37,12 @@
if ( ! defined('ALLOWED')) define ('ALLOWED',1);
require_once '../include/constant.php';
require_once NOALYSS_INCLUDE.'/class_database.php';
require_once NOALYSS_INCLUDE.'/class_fiche.php';
require_once NOALYSS_INCLUDE.'/class_iradio.php';
require_once NOALYSS_INCLUDE.'/function_javascript.php';
require_once NOALYSS_INCLUDE.'/ac_common.php';
require_once NOALYSS_INCLUDE.'/class_user.php';
require_once NOALYSS_INCLUDE.'/lib/class_database.php';
require_once NOALYSS_INCLUDE.'/class/class_fiche.php';
require_once NOALYSS_INCLUDE.'/lib/class_iradio.php';
require_once NOALYSS_INCLUDE.'/lib/function_javascript.php';
require_once NOALYSS_INCLUDE.'/lib/ac_common.php';
require_once NOALYSS_INCLUDE.'/class/class_user.php';
mb_internal_encoding("UTF-8");
$var = array('gDossier', 'op');
@ -66,7 +66,7 @@ global $g_user, $cn, $g_parameter;
// but to the administration
//
if ($gDossier<>0) {
$cn = new Database($gDossier);
$cn =Dossier::connect();
$g_parameter=new Own($cn);
$g_user = new User($cn);
$g_user->check(true);
@ -102,7 +102,7 @@ if ( LOGINPUT)
switch ($op)
{
case 'pcmn_update':
require 'ajax_pcmn_update.php';
require NOALYSS_INCLUDE.'/ajax/ajax_pcmn_update.php';
return;
case "remove_anc":
if ($g_user->check_module('ANCODS') == 0)
@ -122,7 +122,7 @@ switch ($op)
//--------------------------------------------------
// get the last date of a ledger
case 'lastdate':
require_once NOALYSS_INCLUDE.'/class_acc_ledger_fin.php';
require_once NOALYSS_INCLUDE.'/class/class_acc_ledger_fin.php';
$ledger = new Acc_Ledger_Fin($cn, $_GET['p_jrn']);
$html = $ledger->get_last_date();
$html = escape_xml($html);
@ -137,7 +137,7 @@ EOF;
break;
case 'bkname':
require_once NOALYSS_INCLUDE.'/class_acc_ledger_fin.php';
require_once NOALYSS_INCLUDE.'/class/class_acc_ledger_fin.php';
$ledger = new Acc_Ledger_Fin($cn, $_GET['p_jrn']);
$html = $ledger->get_bank_name();
$html = escape_xml($html);
@ -152,7 +152,7 @@ EOF;
break;
// display new calendar
case 'cal':
require_once NOALYSS_INCLUDE.'/class_calendar.php';
require_once NOALYSS_INCLUDE.'/class/class_calendar.php';
/* others report */
$cal = new Calendar();
$cal->set_periode($per);
@ -170,7 +170,7 @@ EOF;
break;
/* rem a cat of document */
case 'rem_cat_doc':
require_once NOALYSS_INCLUDE.'/class_document_type.php';
require_once NOALYSS_INCLUDE.'/class/class_document_type.php';
// if user can not return error message
$message="";
if ($g_user->check_action(PARCATDOC) == 0)
@ -221,7 +221,7 @@ EOF;
require_once NOALYSS_INCLUDE.'/template/document_mod_change.php';
break;
case 'dsp_tva':
$cn = new Database($gDossier);
$cn = Dossier::connect();
$Res = $cn->exec_sql("select * from tva_rate order by tva_rate desc");
$Max = Database::num_row($Res);
$r = "";
@ -284,7 +284,7 @@ EOF;
EOF;
break;
case 'label_tva':
$cn = new Database($gDossier);
$cn =Dossier::connect();
if (isNumber($id) == 0)
$value = _('tva inconnue');
else
@ -309,7 +309,7 @@ EOF;
* display the lettering
*/
case 'dl':
require_once NOALYSS_INCLUDE.'/class_lettering.php';
require_once NOALYSS_INCLUDE.'/class/class_lettering.php';
$exercice = $g_user->get_exercice();
if ($g_user->check_module("LETCARD") == 0 && $g_user->check_module("LETACC") == 0)
exit();
@ -516,43 +516,43 @@ EOF;
EOF;
break;
case 'mod_doc':
require_once NOALYSS_INCLUDE.'/ajax_mod_document.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_mod_document.php';
break;
case 'input_per':
require_once NOALYSS_INCLUDE.'/ajax_mod_periode.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_mod_periode.php';
break;
case 'save_per':
require_once NOALYSS_INCLUDE.'/ajax_mod_periode.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_mod_periode.php';
break;
case 'mod_predf':
require_once NOALYSS_INCLUDE.'/ajax_mod_predf_op.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_mod_predf_op.php';
break;
case 'save_predf':
require_once NOALYSS_INCLUDE.'/ajax_save_predf_op.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_save_predf_op.php';
break;
case 'search_op':
require_once NOALYSS_INCLUDE.'/search.inc.php';
break;
case 'search_action':
require_once NOALYSS_INCLUDE.'/ajax_search_action.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_search_action.php';
break;
case 'display_profile':
require_once NOALYSS_INCLUDE.'/ajax_get_profile.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_get_profile.php';
break;
case 'det_menu':
require_once NOALYSS_INCLUDE.'/ajax_get_menu_detail.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_get_menu_detail.php';
break;
case 'add_menu':
require_once NOALYSS_INCLUDE.'/ajax_add_menu.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_add_menu.php';
break;
case 'display_submenu':
require_once NOALYSS_INCLUDE.'/ajax_display_submenu.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_display_submenu.php';
break;
case 'remove_submenu':
require_once NOALYSS_INCLUDE.'/ajax_remove_submenu.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_remove_submenu.php';
break;
case 'cardsearch':
require_once NOALYSS_INCLUDE.'/ajax_boxcard_search.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_boxcard_search.php';
break;
case 'add_plugin':
$me_code = new IText('me_code');
@ -561,15 +561,16 @@ EOF;
$me_description = new IText("me_description");
$me_parameter = new IText("me_parameter");
$new = true;
require_once NOALYSS_INCLUDE.'/ajax_plugin_detail.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_plugin_detail.php';
break;
case 'mod_plugin':
$m = $cn->get_array("select me_code,me_file,me_menu,me_description,me_parameter
from menu_ref where me_code=$1", array($me_code));
if (empty($m))
{
echo HtmlInput::title_box("Ce plugin n'existe pas ", $ctl);
echo "<p>Il y a une erreur, ce plugin n'existe pas";
echo HtmlInput::title_box(_("Ce plugin n'existe pas "), $ctl);
echo "<p>"._("Il y a une erreur, ce plugin n'existe pas").
"</p>";
exit;
}
$me_code = new IText('me_code', $m[0] ['me_code']);
@ -578,71 +579,71 @@ EOF;
$me_description = new IText("me_description", $m[0] ['me_description']);
$me_parameter = new IText("me_parameter", $m[0] ['me_parameter']);
$new = false;
require_once NOALYSS_INCLUDE.'/ajax_plugin_detail.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_plugin_detail.php';
break;
case 'saldo':
require_once NOALYSS_INCLUDE.'/ajax_bank_saldo.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_bank_saldo.php';
break;
case 'up_predef':
require_once NOALYSS_INCLUDE.'/ajax_update_predef.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_update_predef.php';
break;
case 'upd_receipt':
require_once NOALYSS_INCLUDE.'/ajax_get_receipt.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_get_receipt.php';
break;
case 'up_pay_method':
require_once NOALYSS_INCLUDE.'/ajax_update_payment.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_update_payment.php';
break;
case 'openancsearch':
case 'resultancsearch':
require_once NOALYSS_INCLUDE.'/ajax_anc_search.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_anc_search.php';
break;
case 'autoanc':
require_once NOALYSS_INCLUDE.'/ajax_auto_anc_card.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_auto_anc_card.php';
break;
case 'create_menu';
require_once NOALYSS_INCLUDE.'/ajax_create_menu.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_create_menu.php';
break;
case 'modify_menu';
require_once NOALYSS_INCLUDE.'/ajax_mod_menu.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_mod_menu.php';
break;
case 'mod_stock_repo':
require_once NOALYSS_INCLUDE.'/ajax_mod_stock_repo.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_mod_stock_repo.php';
break;
case 'view_mod_stock':
require_once NOALYSS_INCLUDE.'/ajax_view_mod_stock.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_view_mod_stock.php';
break;
case 'fddetail':
require_once NOALYSS_INCLUDE.'/ajax_fiche_def_detail.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_fiche_def_detail.php';
break;
case 'vw_action':
require_once NOALYSS_INCLUDE.'/ajax_view_action.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_view_action.php';
break;
case 'minrow':
require_once NOALYSS_INCLUDE.'/ajax_min_row.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_min_row.php';
break;
case 'navigator':
require_once NOALYSS_INCLUDE.'/ajax_navigator.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_navigator.php';
break;
case 'preference':
require_once NOALYSS_INCLUDE.'/ajax_preference.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_preference.php';
break;
case 'bookmark':
require_once NOALYSS_INCLUDE.'/ajax_bookmark.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_bookmark.php';
break;
case 'tag_detail':
require_once NOALYSS_INCLUDE.'/ajax_tag_detail.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_tag_detail.php';
break;
case 'tag_save':
require_once NOALYSS_INCLUDE.'/ajax_tag_save.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_tag_save.php';
break;
case 'tag_list':
require_once NOALYSS_INCLUDE.'/ajax_tag_list.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_tag_list.php';
break;
case 'tag_add':
require_once NOALYSS_INCLUDE.'/ajax_tag_add_action.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_tag_add_action.php';
break;
case 'tag_remove':
require_once NOALYSS_INCLUDE.'/ajax_tag_remove_action.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_tag_remove_action.php';
break;
case 'tag_choose':
require_once NOALYSS_INCLUDE.'/ajax_tag_choose.php';
@ -651,19 +652,19 @@ EOF;
require_once NOALYSS_INCLUDE.'/ajax_tag_choose.php';
break;
case 'search_display_tag':
require_once NOALYSS_INCLUDE.'/ajax_search_display_tag.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_search_display_tag.php';
break;
case 'search_add_tag':
require_once NOALYSS_INCLUDE.'/ajax_search_add_tag.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_search_add_tag.php';
break;
case 'search_clear_tag':
require_once NOALYSS_INCLUDE.'/ajax_search_clear_tag.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_search_clear_tag.php';
break;
case 'calendar_zoom':
require_once NOALYSS_INCLUDE.'/ajax_calendar_zoom.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_calendar_zoom.php';
break;
case 'ledger_show':
require_once NOALYSS_INCLUDE.'/ajax_ledger_show.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_ledger_show.php';
case 'ledger_description':
$ajrn=$cn->get_array('select jrn_def_name,jrn_def_description from jrn_def where jrn_def_id=$1',array($l));
if ( count($ajrn)==1)
@ -682,67 +683,67 @@ EOF;
/*
* Show the available distribution keys for analytic
*/
require_once NOALYSS_INCLUDE.'/ajax_anc_key_choice.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_anc_key_choice.php';
break;
case 'anc_key_compute':
/*
* Show the activities computed with the selected distribution key
*/
require_once NOALYSS_INCLUDE.'/ajax_anc_key_compute.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_anc_key_compute.php';
break;
case 'account_update':
/**
* update an accounting (from CFGPCMN)
*/
require_once NOALYSS_INCLUDE.'/ajax_account_update.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_account_update.php';
break;
// From admin, revoke the access to a folder from an
// user
case 'folder_remove':
require_once NOALYSS_INCLUDE.'/ajax_admin.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_admin.php';
break;
// From admin, display a list of folder to which the user has
// no access
case 'folder_display':
require_once NOALYSS_INCLUDE.'/ajax_admin.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_admin.php';
break;
// From admin, grant the access to a folder to an
// user
case 'folder_add':
require_once NOALYSS_INCLUDE.'/ajax_admin.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_admin.php';
break;
// From admin, display info and propose to drop the folder
case 'folder_drop':
require_once NOALYSS_INCLUDE.'/ajax_admin.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_admin.php';
break;
// From admin, display the information of a folder you can
// modify
case 'folder_modify':
require_once NOALYSS_INCLUDE.'/ajax_admin.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_admin.php';
break;
// From admin, display info and propose to drop the template
case 'modele_drop':
require_once NOALYSS_INCLUDE.'/ajax_admin.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_admin.php';
break;
// From admin, display the information of a template you can
// modify
case 'modele_modify':
require_once NOALYSS_INCLUDE.'/ajax_admin.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_admin.php';
break;
// From dashboard, display detail about last operation
case 'action_show':
require_once NOALYSS_INCLUDE.'/ajax_gestion.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_gestion.php';
break;
// From dashboard, display form for a new event
case 'action_add':
require_once NOALYSS_INCLUDE.'/ajax_gestion.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_gestion.php';
break;
// Save a event given in the short form
case 'action_save':
require_once NOALYSS_INCLUDE.'/ajax_gestion.php';
require_once NOALYSS_INCLUDE.'/ajax/ajax_gestion.php';
break;
default:
var_dump($_GET);

View file

@ -35,11 +35,11 @@
if ( ! defined('ALLOWED')) define ('ALLOWED',1);
require_once '../include/constant.php';
require_once NOALYSS_INCLUDE.'/ac_common.php';
require_once NOALYSS_INCLUDE.'/class_acc_ledger.php';
require_once NOALYSS_INCLUDE.'/class_database.php';
require_once NOALYSS_INCLUDE.'/function_javascript.php';
require_once NOALYSS_INCLUDE.'/class_acc_account_ledger.php';
require_once NOALYSS_INCLUDE.'/lib/ac_common.php';
require_once NOALYSS_INCLUDE.'/class/class_acc_ledger.php';
require_once NOALYSS_INCLUDE.'/lib/class_database.php';
require_once NOALYSS_INCLUDE.'/lib/function_javascript.php';
require_once NOALYSS_INCLUDE.'/class/class_acc_account_ledger.php';
mb_internal_encoding("UTF-8");
extract($_REQUEST);
@ -59,8 +59,8 @@ ajax_disconnected($ctl);
set_language();
if ( $cont != 0 ) exit();
$cn=new Database(dossier::id());
require_once NOALYSS_INCLUDE.'/class_user.php';
$cn=Dossier::connect();
require_once NOALYSS_INCLUDE.'/class/class_user.php';
global $g_user;
$g_user=new User($cn);
$g_user->Check();

View file

@ -35,10 +35,10 @@
*/
define ('ALLOWED',1);
require_once '../include/constant.php';
require_once NOALYSS_INCLUDE.'/class_dossier.php';
require_once NOALYSS_INCLUDE.'/class_todo_list.php';
require_once NOALYSS_INCLUDE.'/class_database.php';
require_once NOALYSS_INCLUDE.'/class_user.php';
require_once NOALYSS_INCLUDE.'/class/class_dossier.php';
require_once NOALYSS_INCLUDE.'/class/class_todo_list.php';
require_once NOALYSS_INCLUDE.'/lib/class_database.php';
require_once NOALYSS_INCLUDE.'/class/class_user.php';
mb_internal_encoding("UTF-8");
$cn= Dossier::connect();
@ -53,7 +53,7 @@ ajax_disconnected('add_todo_list');
////////////////////////////////////////////////////////////////////////////////
if (isset($_REQUEST['show']))
{
$cn=new Database(dossier::id());
$cn=Dossier::connect();
$todo=new Todo_list($cn);
$todo->set_parameter('id',$_REQUEST['id']);
$todo->load();
@ -78,7 +78,7 @@ if (isset($_REQUEST['show']))
////////////////////////////////////////////////////////////////////////////////
if (isset($_REQUEST['del']))
{
$cn=new Database(dossier::id());
$cn=Dossier::connect();
$todo=new Todo_list($cn);
$todo->set_parameter('id',$_REQUEST['id']);
$todo->delete();
@ -92,7 +92,7 @@ $ac=HtmlInput::default_value_get('act', 'save');
if ($ac == 'save')
{
$cn=new Database(dossier::id());
$cn=Dossier::connect();
$todo=new Todo_List($cn);
$id=HtmlInput::default_value_get("id", 0);
$todo->set_parameter("id",$id);

View file

@ -20,9 +20,9 @@
// Copyright Author Dany De Bontridder danydb@aevalys.eu
require_once '../include/constant.php';
require_once("constant.php");
require_once('class_database.php');
require_once ("class_user.php");
require_once ('ac_common.php');
require_once('lib/class_database.php');
require_once ("class/class_user.php");
require_once ('lib/ac_common.php');
$rep=new Database();
$User=new User($rep);

View file

@ -31,11 +31,11 @@
* Must return at least tva, htva and tvac
*/
require_once '../include/constant.php';
require_once NOALYSS_INCLUDE.'/class_database.php';
require_once NOALYSS_INCLUDE.'/class_acc_compute.php';
require_once NOALYSS_INCLUDE.'/class_dossier.php';
require_once NOALYSS_INCLUDE.'/class_acc_tva.php';
require_once NOALYSS_INCLUDE.'/class_user.php';
require_once NOALYSS_INCLUDE.'/lib/class_database.php';
require_once NOALYSS_INCLUDE.'/class/class_acc_compute.php';
require_once NOALYSS_INCLUDE.'/class/class_dossier.php';
require_once NOALYSS_INCLUDE.'/class/class_acc_tva.php';
require_once NOALYSS_INCLUDE.'/class/class_user.php';
// Check if the needed field does exist
extract ($_GET);
@ -48,7 +48,7 @@ foreach (array('t','c','p','q','n','gDossier') as $a)
}
}
$cn=new Database(dossier::id());
$cn=Dossier::connect();
$User=new User($cn);
$User->Check();
// Retrieve the rate of vat, it $t == -1 it means no VAT

View file

@ -19,10 +19,10 @@
*/
require_once '../include/constant.php';
require_once NOALYSS_INCLUDE.'/class_database.php';
require_once NOALYSS_INCLUDE.'/class_user.php';
require_once NOALYSS_INCLUDE.'/lib/class_database.php';
require_once NOALYSS_INCLUDE.'/class/class_user.php';
$cn=new Database($_GET['gDossier']);
$cn=Dossier::connect();
global $g_user;
$g_user=new User($cn);
$g_user->Check();

View file

@ -24,13 +24,13 @@ define('ALLOWED',1);
* \brief Main file
*/
require_once '../include/constant.php';
require_once NOALYSS_INCLUDE.'/class_database.php';
require_once NOALYSS_INCLUDE.'/class_dossier.php';
require_once NOALYSS_INCLUDE.'/user_common.php';
require_once NOALYSS_INCLUDE.'/ac_common.php';
require_once NOALYSS_INCLUDE.'/function_javascript.php';
require_once NOALYSS_INCLUDE.'/lib/class_database.php';
require_once NOALYSS_INCLUDE.'/class/class_dossier.php';
require_once NOALYSS_INCLUDE.'/lib/user_common.php';
require_once NOALYSS_INCLUDE.'/lib/ac_common.php';
require_once NOALYSS_INCLUDE.'/lib/function_javascript.php';
require_once NOALYSS_INCLUDE.'/constant.security.php';
require_once NOALYSS_INCLUDE.'/class_html_input.php';
require_once NOALYSS_INCLUDE.'/lib/class_html_input.php';
mb_internal_encoding("UTF-8");
// if gDossier is not set redirect to form to choose a folder
@ -84,7 +84,7 @@ global $g_user, $cn,$g_parameter;
$cn = new Database(Dossier::id());
$cn = Dossier::connect();
/*
* check that the database is not empty
@ -252,7 +252,8 @@ if (isset($_REQUEST['ac']))
alert(_('Accès menu impossible'));
}
else {
alert($e->getTraceAsString());
alert($e->getMessage());
error_log($e->getTraceAsString());
}
}
}
@ -261,21 +262,30 @@ else
$default = find_default_module();
$user_profile=$g_user->get_profile();
if ( $user_profile == "" )
try
{
if ( $user_profile == "" )
throw new Exception (_('Aucun profil utilisateur'));
$menu_id=$cn->get_value('select
case when pm_id_v3 = 0 then
(case when pm_id_v2 = 0 then pm_id_v1 else pm_id_v2 end)
else pm_id_v3 end
from v_menu_profile where code= upper($1) and p_id=$2',
array($default,$user_profile));
$_GET['ac']=$default;
$_POST['ac']=$default;
$_REQUEST['ac']=$default;
show_module($menu_id);
$all[0] = $default;
show_menu($menu_id);
$menu_id=$cn->get_value('select
case when pm_id_v3 = 0 then
(case when pm_id_v2 = 0 then pm_id_v1 else pm_id_v2 end)
else pm_id_v3 end
from v_menu_profile where code= upper($1) and p_id=$2',
array($default,$user_profile));
$_GET['ac']=$default;
$_POST['ac']=$default;
$_REQUEST['ac']=$default;
show_module($menu_id);
$all[0] = $default;
show_menu($menu_id);
}
catch (Exception $exc)
{
echo $exc->getMessage();
error_log($exc->getTraceAsString());
}
}

View file

@ -1,101 +1,101 @@
# Les postesg*(-1)
$C10=round([10%s],2)*(-1)
$C100=round([100%s],2)*(-1)
$C101=round([101%s],2)
$C11=round([11%s],2)*(-1)
$C12=round([12%s],2)*(-1)
$C13=round([13%s],2)*(-1)
$C130=round([130%s],2)*(-1)
$C131=round([131%s],2)*(-1)
$C1310=round([1310%s],2)*(-1)
$C1311=round([1311%s],2)*(-1)
$C132=round([132%s],2)*(-1)
$C133=round([133%s],2)*(-1)
$C14=round([14%s],2)*(-1)
$C140=round([140%s],2)*(-1)
$C141=round([141%s],2)
$C15=round([15%s],2)*(-1)
$C16=round([16%s],2)*(-1)
$C160=round([160%s],2)*(-1)
$C161=round([161%s],2)*(-1)
$C162=round([162%s],2)*(-1)
$C163=round([163%s],2)*(-1)
$C164=round([164%s],2)*(-1)
$C165=round([165%s],2)*(-1)
$C168=round([168%s],2)*(-1)
$C10=round([10%s],2)*(-1)
$C100=round([100%s],2)*(-1)
$C101=round([101%s],2)
$C11=round([11%s],2)*(-1)
$C12=round([12%s],2)*(-1)
$C13=round([13%s],2)*(-1)
$C130=round([130%s],2)*(-1)
$C131=round([131%s],2)*(-1)
$C1310=round([1310%s],2)*(-1)
$C1311=round([1311%s],2)*(-1)
$C132=round([132%s],2)*(-1)
$C133=round([133%s],2)*(-1)
$C14=round([14%s],2)*(-1)
$C140=round([140%s],2)*(-1)
$C141=round([141%s],2)
$C15=round([15%s],2)*(-1)
$C16=round([16%s],2)*(-1)
$C160=round([160%s],2)*(-1)
$C161=round([161%s],2)*(-1)
$C162=round([162%s],2)*(-1)
$C163=round([163%s],2)*(-1)
$C164=round([164%s],2)*(-1)
$C165=round([165%s],2)*(-1)
$C168=round([168%s],2)*(-1)
$C17=round([17%s],2)*(-1)
$C170=round([170%s],2)*(-1)
$C171=round([171%s],2)*(-1)
$C172=round([172%s],2)*(-1)
$C173=round([173%s],2)*(-1)
$C174=round([174%s],2)*(-1)
$C175=round([175%s],2)*(-1)
$C176=round([176%s],2)*(-1)
$C178=round([178%s],2)*(-1)
$C179=round([179%s],2)*(-1)
$C170=round([170%s],2)*(-1)
$C171=round([171%s],2)*(-1)
$C172=round([172%s],2)*(-1)
$C173=round([173%s],2)*(-1)
$C174=round([174%s],2)*(-1)
$C175=round([175%s],2)*(-1)
$C176=round([176%s],2)*(-1)
$C178=round([178%s],2)*(-1)
$C179=round([179%s],2)*(-1)
$C2=round([2%s],2)*(-1)
$C20=round([20%s],2)
$C21=round([21%s],2)
$C22=round([22%s],2)
$C23=round([23%s],2)
$C24=round([24%s],2)
$C25=round([25%s],2)
$C26=round([26%s],2)
$C27=round([27%s],2)
$C28=round([28%s],2)
$C29=round([29%s],2)
$C290=round([290%s],2)
$C291=round([291%s],2)
$C20=round([20%s],2)
$C21=round([21%s],2)
$C22=round([22%s],2)
$C23=round([23%s],2)
$C24=round([24%s],2)
$C25=round([25%s],2)
$C26=round([26%s],2)
$C27=round([27%s],2)
$C28=round([28%s],2)
$C29=round([29%s],2)
$C290=round([290%s],2)
$C291=round([291%s],2)
$C3=round([3%s],2)
$C30=round([30%s],2)
$C31=round([31%s],2)
$C32=round([32%s],2)
$C33=round([33%s],2)
$C34=round([34%s],2)
$C35=round([35%s],2)
$C36=round([36%s],2)
$C37=round([37%s],2)
$C40=round([40%s],2)
$C41=round([41%s],2)
$C42=round([42%s],2)*(-1)
$C43=round([43%s],2)*(-1)
$C439=round([439%s],2)*(-1)
$C44=round([44%s],2)*(-1)
$C440=round([440%s],2)*(-1)
$C441=round([441%s],2)*(-1)
$C444=round([444%s],2)*(-1)
$C45=round([45%s],2)*(-1)
$C450=round([450%s],2)*(-1)
$C451=round([451%s],2)*(-1)
$C452=round([452%s],2)*(-1)
$C453=round([453%s],2)*(-1)
$C454=round([454%s],2)*(-1)
$C30=round([30%s],2)
$C31=round([31%s],2)
$C32=round([32%s],2)
$C33=round([33%s],2)
$C34=round([34%s],2)
$C35=round([35%s],2)
$C36=round([36%s],2)
$C37=round([37%s],2)
$C40=round([40%s],2)
$C41=round([41%s],2)
$C42=round([42%s],2)*(-1)
$C43=round([43%s],2)*(-1)
$C439=round([439%s],2)*(-1)
$C44=round([44%s],2)*(-1)
$C440=round([440%s],2)*(-1)
$C441=round([441%s],2)*(-1)
$C444=round([444%s],2)*(-1)
$C45=round([45%s],2)*(-1)
$C450=round([450%s],2)*(-1)
$C451=round([451%s],2)*(-1)
$C452=round([452%s],2)*(-1)
$C453=round([453%s],2)*(-1)
$C454=round([454%s],2)*(-1)
$C455=round([455%s],2)*(-1)
$C456=round([456%s],2)*(-1)
$C457=round([457%s],2)*(-1)
$C458=round([458%s],2)*(-1)
$C459=round([459%s],2)*(-1)
$C46=round([46%s],2)
$C47=round([47%s],2)*(-1)
$C48=round([48%s],2)*(-1)
$C49=round([49%s],2)
$C490=round([490%s],2)
$C491=round([491%s],2)
$C492=round([492%s],2)*(-1)
$C493=round([493%s],2)*(-1)
$C50=round([50%s],2)
$C51=round([51%s],2)
$C52=round([52%s],2)
$C53=round([53%s],2)
$C54=round([54%s],2)
$C55=round([55%s],2)
$C56=round([56%s],2)
$C57=round([57%s],2)
$C58=round([58%s],2)
$C60=round([60%s],2)
$C61=round([61%s],2)
$C62=round([62%s],2)
$C63=round([63%s],2)
$C459=round([459%s],2)*(-1)
$C46=round([46%s],2)
$C47=round([47%s],2)*(-1)
$C48=round([48%s],2)*(-1)
$C49=round([49%s],2)
$C490=round([490%s],2)
$C491=round([491%s],2)
$C492=round([492%s],2)*(-1)
$C493=round([493%s],2)*(-1)
$C50=round([50%s],2)
$C51=round([51%s],2)
$C52=round([52%s],2)
$C53=round([53%s],2)
$C54=round([54%s],2)
$C55=round([55%s],2)
$C56=round([56%s],2)
$C57=round([57%s],2)
$C58=round([58%s],2)
$C60=round([60%s],2)
$C61=round([61%s],2)
$C62=round([62%s],2)
$C63=round([63%s],2)
$C630=round([630%s],2)
$C631=round([631%s],2)
$C632=round([632%s],2)
@ -104,39 +104,39 @@ $C634=round([634%s],2)
$C635=round([635%s],2)
$C636=round([636%s],2)
$C637=round([637%s],2)
$C649=round([649%s],2)*(-1)
$C64=round([64%s],2)
$C65=round([65%s],2)
$C66=round([66%s],2)
$C67=round([67%s],2)
$C68=round([68%s],2)
$C680=round([680%s],2)
$C649=round([649%s],2)*(-1)
$C64=round([64%s],2)
$C65=round([65%s],2)
$C66=round([66%s],2)
$C67=round([67%s],2)
$C68=round([68%s],2)
$C680=round([680%s],2)
$C689=round([689%s],2)
$C69=round([69%s],2)
$C690=round([690%s],2)
$C691=round([691%s],2)
$C692=round([692%s],2)
$C6920=round([6920%s],2)
$C6921=round([6921%s],2)
$C693=round([693%s],2)
$C694=round([694%s],2)
$C695=round([695%s],2)
$C696=round([696%s],2)
$C69=round([69%s],2)
$C690=round([690%s],2)
$C691=round([691%s],2)
$C692=round([692%s],2)
$C6920=round([6920%s],2)
$C6921=round([6921%s],2)
$C693=round([693%s],2)
$C694=round([694%s],2)
$C695=round([695%s],2)
$C696=round([696%s],2)
$C7=round([7%s],2)*(-1)
$C70=round([70%s],2)*(-1)
$C71=round([71%s],2)*(-1)
$C73=round([73%s],2)*(-1)
$C72=round([72%s],2)*(-1)
$C74=round([74%s],2)*(-1)
$C75=round([75%s],2)*(-1)
$C76=round([76%s],2)*(-1)
$C77=round([77%s],2)*(-1)
$C70=round([70%s],2)*(-1)
$C71=round([71%s],2)*(-1)
$C73=round([73%s],2)*(-1)
$C72=round([72%s],2)*(-1)
$C74=round([74%s],2)*(-1)
$C75=round([75%s],2)*(-1)
$C76=round([76%s],2)*(-1)
$C77=round([77%s],2)*(-1)
$C780=round([780%s],2)*(-1)
$C789=round([789%s],2)*(-1)
$C79=round([79%s],2)*(-1)
$C79=round([79%s],2)*(-1)
$C790=round([790%s],2)*(-1)
$C791=round([791%s],2)*(-1)
$C792=round([792%s],2)*(-1)
@ -144,7 +144,7 @@ $C793=round([793%s],2)*(-1)
$C794=round([794%s],2)*(-1)
# Les formules (*-1)
#
$S1=abs($C2-$C29)
$S1=$C20+$C21+$C22+$C23+$C24+$C25+$C26+$C27+$C28
$S2=$C22+$C23+$C24+$C25+$C26+$C27
$S4=$C30+$C31+$C32+$C33+$C34+$C35+$C36
$S3=$C29+$C50+$C51+$C52+$C53+$C54+$C55+$C56+$C57+$C58+$C490+$C491+$C41+$C40+$S4

View file

@ -260,8 +260,7 @@ I-II Produits et charges d'exploitation}
Chiffre d'affaires }{\cf1\i0\b0\kerning1\hich\af9\langfe255\dbch\af9\afs18\alang1025\rtlch \ltrch\loch\fs18\lang1033\loch\f8
\tab }{\cf1\i0\b0\kerning1\hich\af9\langfe255\dbch\af9\afs18\alang1025\ai0\rtlch \ltrch\loch\fs18\lang1033\loch\f8
70}{\cf1\i0\b0\kerning1\hich\af9\langfe255\dbch\af9\afs18\alang1025\ai0\rtlch \ltrch\loch\fs18\lang255\loch\f8
\tab <<$C}{\cf1\i0\b0\kerning1\hich\af9\langfe255\dbch\af9\afs18\alang1025\rtlch \ltrch\loch\fs18\lang255\loch\f8
70>>}
\tab <<$C70>>}
\par \pard\plain \s0\ql\widctlpar\ltrpar{\*\hyphen2\hyphlead2\hyphtrail2\hyphmax0}\cf0\kerning1\hich\af10\langfe255\dbch\af14\afs24\alang1081\loch\f5\fs24\lang1033\ql\widctlpar\tx330\tx915\tx6930\tx7725{{\*\bkmkstart DDE_LINK}{\*\bkmkend DDE_LINK}\cf1\i\b0\kerning1\hich\af9\langfe255\dbch\af9\afs18\alang1025\ai\rtlch \ltrch\loch\fs18\lang255\loch\f8
Dons et subsides\tab }{\cf1\i0\b0\kerning1\hich\af9\langfe255\dbch\af9\afs18\alang1025\ai0\rtlch \ltrch\loch\fs18\lang255\loch\f8
73\tab <<$C73>>}

View file

@ -27,10 +27,10 @@
define ('ALLOWED',1);
require_once '../include/constant.php';
global $g_user,$cn,$g_parameter;
require_once NOALYSS_INCLUDE.'/class_database.php';
require_once NOALYSS_INCLUDE.'/class_user.php';
require_once NOALYSS_INCLUDE.'/lib/class_database.php';
require_once NOALYSS_INCLUDE.'/class/class_user.php';
$gDossier=dossier::id();
$cn=new Database($gDossier);
$cn=Dossier::connect();
mb_internal_encoding("UTF-8");
$g_user=new User($cn);
$g_user->Check();
@ -52,5 +52,5 @@ if ($action == null )
if ( $prfile == "") {
die (_('Export impossible'));
}
require_once $prfile;
require_once NOALYSS_INCLUDE."/export/$prfile";
?>

View file

@ -24,18 +24,18 @@
* the security. Load several javascript files
*/
require_once '../include/constant.php';
require_once NOALYSS_INCLUDE.'/class_database.php';
require_once NOALYSS_INCLUDE.'/class_dossier.php';
require_once NOALYSS_INCLUDE.'/ac_common.php';
require_once NOALYSS_INCLUDE.'/function_javascript.php';
require_once NOALYSS_INCLUDE.'/class_extension.php';
require_once NOALYSS_INCLUDE.'/class_html_input.php';
require_once NOALYSS_INCLUDE.'/class_iselect.php';
require_once NOALYSS_INCLUDE.'/class_user.php';
require_once NOALYSS_INCLUDE.'/lib/class_database.php';
require_once NOALYSS_INCLUDE.'/class/class_dossier.php';
require_once NOALYSS_INCLUDE.'/lib/ac_common.php';
require_once NOALYSS_INCLUDE.'/lib/function_javascript.php';
require_once NOALYSS_INCLUDE.'/class/class_extension.php';
require_once NOALYSS_INCLUDE.'/lib/class_html_input.php';
require_once NOALYSS_INCLUDE.'/lib/class_iselect.php';
require_once NOALYSS_INCLUDE.'/class/class_user.php';
global $g_user,$cn,$g_parameter;
$cn=new Database(dossier::id());
$cn=Dossier::connect();
$g_user=new User($cn);
$g_user->check();
$only_plugin=$g_user->check_dossier(dossier::id());

View file

@ -33,15 +33,15 @@
*\note if the j is -1 then all the card are shown
*/
require_once '../include/constant.php';
require_once NOALYSS_INCLUDE.'/class_own.php';
require_once NOALYSS_INCLUDE.'/class_database.php';
require_once NOALYSS_INCLUDE.'/user_common.php';
require_once NOALYSS_INCLUDE.'/class_dossier.php';
require_once NOALYSS_INCLUDE.'/class/class_own.php';
require_once NOALYSS_INCLUDE.'/lib/class_database.php';
require_once NOALYSS_INCLUDE.'/lib/user_common.php';
require_once NOALYSS_INCLUDE.'/class/class_dossier.php';
$gDossier=dossier::id();
require_once('class_user.php');
require_once('class/class_user.php');
$cn=new Database(dossier::id());
$cn=Dossier::connect();
global $g_user;
$g_user=new User($cn);
$g_user->check();

View file

@ -26,8 +26,8 @@
*/
require_once '../include/constant.php';
require_once NOALYSS_INCLUDE.'/class_database.php';
require_once NOALYSS_INCLUDE.'/class_dossier.php';
require_once NOALYSS_INCLUDE.'/lib/class_database.php';
require_once NOALYSS_INCLUDE.'/class/class_dossier.php';
/*!\brief
* Received parameters are
* - j for the ledger
@ -44,11 +44,11 @@ require_once NOALYSS_INCLUDE.'/class_dossier.php';
$jrn= ( ! isset($_REQUEST['j']))?-1:$_REQUEST['j'];
$filter_card="";
$cn=new Database(dossier::id());
$cn=Dossier::connect();
$d=$_REQUEST['e'];
$filter_card='';
require_once('class_user.php');
require_once('class/class_user.php');
global $g_user;
$g_user=new User($cn);
$g_user->check();

View file

@ -45,7 +45,7 @@
* <li>Dans le répertoire include: Les noms de fichier ajax* correspondent aux fichiers appelé par une fonction javascript en ajax,
* normalement le nom de fichier est basé sur le nom de la fonction javascript
* exemple pour la fonction javascript anc_key_choice le fichier correspondant est
* ajax_anc_key_choice.php
* ajax/ajax_anc_key_choice.php
* <li>Dans le répertoire include/template: les fichiers de
* présentation HTML </li>
* <li>Utiliser sql/upgrade.sql comme fichier temporaire pour modifier la base de données, en général
@ -96,7 +96,7 @@
* class_*.php if it is related to a class.</li>
* <li>In the folder include, files starting with ajax are executed by ajax call, usually, the file name is
* based on the javascript function, example for the javascript function anc_key_choice the corresponding file is
* ajax_anc_key_choice.php
* ajax/ajax_anc_key_choice.php
*
* <li>In the folder include/template: files for the HTML presentation
* </li>
@ -208,7 +208,7 @@ background-repeat: repeat-x repeat-y;
$my_domain="";
require_once '../include/constant.php';
require_once '../include/config.inc.php';
require_once NOALYSS_INCLUDE.'/ac_common.php';
require_once NOALYSS_INCLUDE.'/lib/ac_common.php';
if ( strlen(domaine) > 0 )
{

View file

@ -9,8 +9,8 @@ msgid ""
msgstr ""
"Project-Id-Version: NOALYSS 672\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-09-07 00:59+0200\n"
"PO-Revision-Date: 2015-09-07 23:41+0200\n"
"POT-Creation-Date: 2015-09-24 01:32+0200\n"
"PO-Revision-Date: 2015-09-24 01:35+0200\n"
"Last-Translator: Dany De Bontridder <danydb@noalyss.eu>\n"
"Language-Team: American English <kde-i18n-doc@kde.org>\n"
"Language: en_US\n"
@ -65,6 +65,10 @@ msgstr "These files were not deleted"
msgid " Cette action ne vous est pas autorisée Contactez votre responsable"
msgstr "This work is not authorized Contact your administrator"
#: include/opening.inc.php:178
msgid " Choisissez le journal qui contiendra l'opération d'ouverture "
msgstr "Select the select for the reopening"
#: include/ext/tva/ajax.php:205 include/ext/tva/ajax.php:222
msgid " Code TVA "
msgstr "VAT code"
@ -365,7 +369,7 @@ msgstr "Home"
msgid "Accès"
msgstr "Access"
#: include/profile.inc.php:358
#: include/profile.inc.php:358 include/profile.inc.php:360
msgid "Accès Direct visible"
msgstr "Direct Access is visible"
@ -493,6 +497,7 @@ msgstr "Action Management"
#: include/template/detail-action.php:176
#: include/template/detail-action.php:181
#: include/template/detail-action.php:187
#: include/template/detail-action.php:192
msgid "Actions concernées"
msgstr "Concerned operations"
@ -514,6 +519,7 @@ msgstr "Action on different documents"
#: include/template/form_ledger_detail.php:108
#: include/ext/modop/modop_display.php:112 include/compta_ach.inc.php:286
#: include/compta_ven.inc.php:324 include/ext/modop/modop_display.php:123
#: include/template/detail-action.php:400
msgid "Actualiser"
msgstr "Refresh"
@ -644,6 +650,7 @@ msgid "Ajout client"
msgstr "Add a customer"
#: include/ext/amortis/include/class_am_card.php:56
#: include/ext/amortis/include/class_am_card.php:64
msgid "Ajout d'un bien à amortir"
msgstr "Add materiel to amortize"
@ -814,6 +821,7 @@ msgstr "Add a folder"
#: include/template/detail-action.php:481
#: include/template/detail-action.php:497
#: include/template/detail-action.php:503
#: include/template/detail-action.php:508
msgid "Ajouter un fichier"
msgstr "Add an attachment"
@ -821,7 +829,7 @@ msgstr "Add an attachment"
msgid "Ajouter un modèle"
msgstr "Add a template"
#: include/profile.inc.php:391
#: include/profile.inc.php:391 include/profile.inc.php:393
msgid "Ajouter un profil"
msgstr "Add a profile"
@ -831,6 +839,7 @@ msgstr "Add a profile"
#: include/template/detail-action.php:374
#: include/template/detail-action.php:390
#: include/template/detail-action.php:396
#: include/template/detail-action.php:401
msgid "Ajouter une ligne"
msgstr "Add a row"
@ -961,6 +970,7 @@ msgstr "Year of purchase"
#: include/ext/amortis/include/class_am_card.php:177
#: include/ext/amortis/include/class_am_card.php:220
#: include/ext/amortis/include/class_am_card.php:235
msgid "Année invalide"
msgstr "Invalid year"
@ -1179,6 +1189,10 @@ msgstr "No bank account given"
msgid "Aucun document"
msgstr "No document"
#: include/opening.inc.php:112
msgid "Aucun dossier"
msgstr "No folder"
#: include/class_user.php:985 include/class_user.php:986
msgid "Aucun dossier disponible"
msgstr "No available folder"
@ -1257,6 +1271,7 @@ msgid "Aucun poste trouvé"
msgstr "No accounting found"
#: html/do.php:219 html/do.php:224 html/do.php:252 html/do.php:265
#: html/do.php:268
msgid "Aucun profil utilisateur"
msgstr "No user profile"
@ -1448,6 +1463,7 @@ msgid "Autres actions"
msgstr "atiAdd Action"
#: include/template/detail-action.php:64 include/template/detail-action.php:67
#: include/template/detail-action.php:72
msgid "Autres concernés"
msgstr "Others concerne persons"
@ -1710,6 +1726,7 @@ msgstr "CONVERT_GIF_PDF is not installed"
#: include/template/detail-action.php:351
#: include/template/detail-action.php:367
#: include/template/detail-action.php:373
#: include/template/detail-action.php:378
msgid "Cacher les détails"
msgstr "Hide details"
@ -1729,7 +1746,7 @@ msgstr "Automatic creation of the accounting"
msgid "Calculatrice"
msgstr "calculator"
#: include/profile.inc.php:356
#: include/profile.inc.php:356 include/profile.inc.php:358
msgid "Calculatrice visible"
msgstr "calculator is visible"
@ -1862,6 +1879,10 @@ msgstr "This ledger can not be printed in this mode"
msgid "Ce plan n'existe pas"
msgstr "This plan does not exist"
#: html/ajax_misc.php:571
msgid "Ce plugin n'existe pas "
msgstr "No plugin"
#: include/ajax_account_update.php:160
msgid "Ce poste existe déjà "
msgstr "This accounting already exists"
@ -2011,6 +2032,7 @@ msgstr "Select the report"
#: include/ext/amortis/include/class_am_card.php:229
#: include/ext/amortis/include/class_am_card.php:230
#: include/ext/amortis/include/class_am_card.php:245
msgid "Choisissez poste comptable ou fiche"
msgstr "Select card or accounting "
@ -2309,6 +2331,7 @@ msgstr "Stock"
#: include/class_acc_ledger_purchase.php:1772
#: include/template/detail-action.php:343
#: include/class_acc_ledger_purchase.php:1771
#: include/template/detail-action.php:348
msgid "Code TVA"
msgstr "VAT Code"
@ -2406,6 +2429,7 @@ msgstr "How"
#: include/class_acc_ledger_purchase.php:1761
#: include/template/detail-action.php:266
#: include/class_acc_ledger_purchase.php:1760
#: include/template/detail-action.php:271
msgid "Commentaire"
msgstr "How"
@ -2701,6 +2725,11 @@ msgstr "Do you want to add a year ?"
msgid "Contact"
msgstr "Contact"
#: include/opening.inc.php:132 include/opening.inc.php:163
#: include/opening.inc.php:251
msgid "Continuer"
msgstr "Continue"
#: include/database.item.php:206 include/database.item.php:203
msgid "Contrat"
msgstr "Contract"
@ -3028,6 +3057,7 @@ msgstr "In the ledger"
#: include/template/dashboard.php:338 include/class_fiche.php:1212
#: include/class_fiche.php:1287 include/ext/importbank/bank_constant.php:54
#: include/class_fiche.php:1229 include/class_fiche.php:1304
#: include/template/detail-action.php:96
msgid "Date"
msgstr "Date"
@ -3160,6 +3190,7 @@ msgstr "Invalid date, operation not reversed"
#: include/template/detail-action.php:55
#: include/template/detail-action.php:104
#: include/template/detail-action.php:110
#: include/template/detail-action.php:115
msgid "Date limite"
msgstr "Deadline"
@ -3356,7 +3387,11 @@ msgstr "Event depends on this category"
#: include/dossier.inc.php:333 include/class_fiche.php:1230
#: include/class_fiche.php:1307 include/menu.inc.php:110
#: include/database.item.php:156 include/database.item.php:155
#: include/database.item.php:148
#: include/database.item.php:148 include/profile.inc.php:356
#: include/template/detail-action.php:241
#: include/template/detail-action.php:269
#: include/template/detail-action.php:345
#: include/template/detail-action.php:503
msgid "Description"
msgstr "Description"
@ -3521,6 +3556,7 @@ msgstr "Generated Document"
#: include/template/detail-action.php:397
#: include/template/detail-action.php:413
#: include/template/detail-action.php:419
#: include/template/detail-action.php:424
msgid "Document à générer"
msgstr "Document to generate"
@ -3831,6 +3867,7 @@ msgstr "Sorry the box is not checked"
#: include/template/detail-action.php:319 include/stock_inv_histo.inc.php:105
#: include/template/detail-action.php:325
#: include/ext/sav/include/template/sas_display_list.php:66
#: include/template/detail-action.php:330
msgid "Détail"
msgstr "Detail"
@ -4086,6 +4123,7 @@ msgstr "Removal forbidden"
#: include/ext/importbank/include/template/show_list.php:83
#: include/ext/importbank/include/class_import_bank.php:141
#: include/dossier.inc.php:272 include/dossier.inc.php:281
#: include/template/detail-action.php:477
msgid "Effacer"
msgstr "Remove"
@ -4462,6 +4500,7 @@ msgstr "Step 3/3"
#: include/template/action_search.php:117
#: include/template/detail-action.php:119
#: include/ext/sav/include/template/sas_display_detail.php:145
#: include/template/detail-action.php:124
msgid "Etat"
msgstr "State"
@ -4886,7 +4925,7 @@ msgstr "close"
#: include/template/detail-action.php:339
#: include/template/security_list_action.php:56 include/database.item.php:84
#: include/database.item.php:115 include/database.item.php:83
#: include/database.item.php:114
#: include/database.item.php:114 include/template/detail-action.php:344
msgid "Fiche"
msgstr "Card"
@ -5326,6 +5365,7 @@ msgid "Groupe"
msgstr "Group"
#: include/template/detail-action.php:139
#: include/template/detail-action.php:144
msgid "Groupe Gestion"
msgstr "Management group"
@ -5365,6 +5405,10 @@ msgstr "Generate the document"
msgid "Génére écriture"
msgstr "Generate writing"
#: include/template/detail-action.php:311
msgid "Générer"
msgstr "Generate File"
#: include/ext/tva/class_ext_tva.php:341
msgid "Générer fichier"
msgstr "Generate File"
@ -5413,6 +5457,7 @@ msgstr "High"
#: include/template/detail-action.php:45 include/template/detail-action.php:94
#: include/template/detail-action.php:100
#: include/template/detail-action.php:105
msgid "Heure"
msgstr "Hour"
@ -5549,6 +5594,10 @@ msgstr "Column for the amount is missing"
msgid "Il n'y a aucune marchandise"
msgstr "There is no item"
#: html/ajax_misc.php:572
msgid "Il y a une erreur, ce plugin n'existe pas"
msgstr "This plugin doesn't exist"
#: include/ajax_preference.php:129 include/ajax_preference.php:131
#: include/ajax_preference.php:130 include/ajax_preference.php:132
#: include/ajax_preference.php:137 include/ajax_preference.php:139
@ -5865,6 +5914,7 @@ msgstr "Javascript"
#: include/template/detail-action.php:466
#: include/template/detail-action.php:482
#: include/template/detail-action.php:488
#: include/template/detail-action.php:493
msgid "Je ne peux pas ajouter de fichier"
msgstr "I can not add this file"
@ -6430,6 +6480,7 @@ msgstr "Tuesday"
#: include/ext/amortis/include/class_am_card.php:244
#: include/ext/amortis/include/class_am_card.php:248
#: include/ext/amortis/include/class_am_card.php:263
msgid "Matériel déjà dans la liste"
msgstr "Material already in the list"
@ -6644,7 +6695,7 @@ msgstr "Missing description"
#: include/template/detail-action.php:444 include/dossier.inc.php:220
#: include/template/detail-action.php:450 include/ajax_get_profile.php:84
#: include/dossier.inc.php:240 include/ajax_view_action.php:48
#: include/dossier.inc.php:274
#: include/dossier.inc.php:274 include/template/detail-action.php:455
msgid "Modifier"
msgstr "Modify"
@ -6839,6 +6890,7 @@ msgstr "Amount ND"
#: include/class_acc_ledger_purchase.php:1773
#: include/template/detail-action.php:344
#: include/class_acc_ledger_purchase.php:1772
#: include/template/detail-action.php:349
msgid "Montant TVA"
msgstr "VAT Amount"
@ -6866,6 +6918,7 @@ msgstr "VAT amount incorrect"
#: include/class_acc_ledger_purchase.php:1396
#: include/template/detail-action.php:339
#: include/template/detail-action.php:345
#: include/template/detail-action.php:350
msgid "Montant TVAC"
msgstr "Amount VAT included"
@ -6905,6 +6958,7 @@ msgstr "Initial amount"
#: include/class_acc_compute.php:194 include/class_acc_compute.php:195
#: include/ext/amortis/include/class_am_card.php:222
#: include/ext/importbank/include/template/show_transfer.php:100
#: include/ext/amortis/include/class_am_card.php:237
msgid "Montant invalide"
msgstr "Invalid amount"
@ -6945,11 +6999,16 @@ msgstr "Amount to be amortized"
msgid "Montant à l'achat"
msgstr "Amount to purchase"
#: include/template/detail-action.php:310
msgid "Montrer articles"
msgstr "Show items"
#: include/template/detail-action.php:336
#: include/template/detail-action.php:335
#: include/template/detail-action.php:350
#: include/template/detail-action.php:366
#: include/template/detail-action.php:372
#: include/template/detail-action.php:377
msgid "Montrer les détails"
msgstr "Show details"
@ -7003,6 +7062,11 @@ msgstr "Number of units"
msgid "Nbres anomalies"
msgstr "Number of abnormalities"
#: include/opening.inc.php:250
msgid ""
"Ne corrigez pas encore, cliquez continuer pour passer à l'étape suivante"
msgstr "Continue without changing anything"
#: include/restore.inc.php:196 include/restore.inc.php:135
msgid ""
"Ne pas recharger la page, sinon votre base de données sera restaurée une "
@ -7122,6 +7186,7 @@ msgstr "No action"
#: include/class_user.php:977 include/dossier.inc.php:218
#: include/class_fiche.php:1598 include/database.item.php:153
#: include/database.item.php:152 include/database.item.php:145
#: include/profile.inc.php:354
msgid "Nom"
msgstr "Name"
@ -7227,6 +7292,7 @@ msgstr "Number annuities"
#: include/ext/amortis/include/class_am_card.php:178
#: include/ext/amortis/include/class_am_card.php:221
#: include/ext/amortis/include/class_am_card.php:236
msgid "Nombre annuités invalide"
msgstr "Invalid number annuities"
@ -8073,6 +8139,10 @@ msgstr "Correct"
msgid "Pas d'étape"
msgstr "No step"
#: include/template/detail-action.php:57
msgid "Pas de catégorie de contact"
msgstr "Na category for contact"
#: include/ext/invoicing/include/invoice_send_mail.inc.php:75
#: include/ext/invoicing/include/invoice_send_mail.inc.php:80
#: include/ext/invoicing/include/invoice_send_mail.inc.php:103
@ -8209,6 +8279,7 @@ msgstr "Spare part not found"
#: include/template/detail-action.php:408
#: include/template/detail-action.php:424
#: include/template/detail-action.php:430
#: include/template/detail-action.php:435
msgid "Pièces attachées"
msgstr "Attachment"
@ -8506,6 +8577,7 @@ msgstr ""
#: include/template/detail-action.php:115
#: include/template/detail-action.php:123
#: include/template/detail-action.php:129
#: include/template/detail-action.php:134
msgid "Priorité"
msgstr "Priority"
@ -8559,7 +8631,7 @@ msgstr "Products"
#: include/database.item.php:85
#: include/ext/invoicing/include/invoice_send_mail_input.inc.php:112
#: include/param_sec.inc.php:269 include/database.item.php:82
#: include/database.item.php:81
#: include/database.item.php:81 include/param_sec.inc.php:270
msgid "Profil"
msgstr "Profile"
@ -8964,6 +9036,7 @@ msgstr "Late"
#: include/cfgledger.inc.php:126 include/dossier.inc.php:325
#: include/dossier.inc.php:368 include/forecast.inc.php:343
#: include/dossier.inc.php:361 include/dossier.inc.php:404
#: include/opening.inc.php:166 include/opening.inc.php:253
msgid "Retour"
msgstr "Return"
@ -9119,7 +9192,7 @@ msgstr "new line"
#: include/payment_middle.inc.php:53 include/template/dashboard.php:338
#: include/ext/modop/modop_display.php:277 include/class_fiche_def.php:812
#: include/template/dashboard.php:343 include/ext/modop/modop_display.php:294
#: include/class_fiche_def.php:811
#: include/class_fiche_def.php:811 include/template/detail-action.php:464
msgid "Sauve"
msgstr "Save"
@ -9693,6 +9766,7 @@ msgstr "Tiers"
#: include/template/dashboard.php:304 include/template/detail-action.php:254
#: include/template/todo_list_display.php:54
#: include/template/dashboard.php:334 include/template/dashboard.php:339
#: include/template/detail-action.php:259
msgid "Titre"
msgstr "Title"
@ -9970,6 +10044,7 @@ msgstr "Transformation data into another format"
#: include/template/detail-action.php:384
#: include/template/detail-action.php:400
#: include/template/detail-action.php:406
#: include/template/detail-action.php:411
msgid "Transformer en facture"
msgstr "Generate invoices"
@ -10314,6 +10389,7 @@ msgstr "Visible Y or N"
#: include/ext/amortis/include/class_am_card.php:224
#: include/ext/amortis/include/class_am_card.php:225
#: include/ext/amortis/include/class_am_card.php:240
msgid "Visible Y ou N\n"
msgstr "Visible Y or N\n"
@ -10342,6 +10418,7 @@ msgstr "Do you have a copy of this issue"
#: include/template/detail-action.php:252
#: include/template/detail-action.php:268
#: include/template/detail-action.php:274
#: include/template/detail-action.php:279
#, php-format
msgid "Voulez-vous effacer ce commentaire"
msgstr "Do you want to delete this comment"
@ -10358,6 +10435,7 @@ msgstr "Do you want to delete this action ?"
#: include/template/detail-action.php:185
#: include/template/detail-action.php:190
#: include/template/detail-action.php:196
#: include/template/detail-action.php:201
#, php-format
msgid "Voulez-vous effacer cette action "
msgstr "Do you want to delete this action"
@ -10378,6 +10456,7 @@ msgstr "Do you want to delete this relation"
#: include/template/detail-action.php:443
#: include/template/detail-action.php:459
#: include/template/detail-action.php:465
#: include/template/detail-action.php:470
#, php-format
msgid "Voulez-vous effacer le document"
msgstr "Would you remove this Document"
@ -10556,7 +10635,7 @@ msgstr "You&#39;re using the strict accounting entry is the last one"
msgid "Vous utilisez un navigateur dépassé depuis près de 8 ans!"
msgstr "Your browser is outdated for 8 years!"
#: html/logout.php:30
#: html/logout.php:30 html/logout.php:46
msgid "Vous êtes déconnecté"
msgstr "You are disconnected"
@ -11115,6 +11194,7 @@ msgstr "price"
#: include/template/detail-action.php:319
#: include/template/detail-action.php:335
#: include/template/detail-action.php:341
#: include/template/detail-action.php:346
msgid "prix unitaire"
msgstr "Price unit"
@ -11165,6 +11245,7 @@ msgstr "QCode"
#: include/class_acc_ledger_purchase.php:1774
#: include/template/form_ledger_detail.php:71
#: include/template/form_ledger_detail.php:78
#: include/template/detail-action.php:347
msgid "quantité"
msgstr "quantity"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-09-07 23:30+0200\n"
"POT-Creation-Date: 2015-09-24 01:32+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -192,7 +192,7 @@ msgstr ""
#: include/payment_middle.inc.php:53 include/template/dashboard.php:338
#: include/ext/modop/modop_display.php:277 include/class_fiche_def.php:812
#: include/template/dashboard.php:343 include/ext/modop/modop_display.php:294
#: include/class_fiche_def.php:811
#: include/class_fiche_def.php:811 include/template/detail-action.php:464
msgid "Sauve"
msgstr ""
@ -322,6 +322,7 @@ msgstr ""
#: include/cfgledger.inc.php:126 include/dossier.inc.php:325
#: include/dossier.inc.php:368 include/forecast.inc.php:343
#: include/dossier.inc.php:361 include/dossier.inc.php:404
#: include/opening.inc.php:166 include/opening.inc.php:253
msgid "Retour"
msgstr ""
@ -723,6 +724,7 @@ msgstr ""
#: include/class_user.php:977 include/dossier.inc.php:218
#: include/class_fiche.php:1598 include/database.item.php:153
#: include/database.item.php:152 include/database.item.php:145
#: include/profile.inc.php:354
msgid "Nom"
msgstr ""
@ -926,7 +928,7 @@ msgstr ""
#: include/template/detail-action.php:339
#: include/template/security_list_action.php:56 include/database.item.php:84
#: include/database.item.php:115 include/database.item.php:83
#: include/database.item.php:114
#: include/database.item.php:114 include/template/detail-action.php:344
msgid "Fiche"
msgstr ""
@ -1364,6 +1366,7 @@ msgstr ""
#: include/template/dashboard.php:338 include/class_fiche.php:1212
#: include/class_fiche.php:1287 include/ext/importbank/bank_constant.php:54
#: include/class_fiche.php:1229 include/class_fiche.php:1304
#: include/template/detail-action.php:96
msgid "Date"
msgstr ""
@ -2015,6 +2018,7 @@ msgstr ""
#: include/class_acc_ledger_purchase.php:1774
#: include/template/form_ledger_detail.php:71
#: include/template/form_ledger_detail.php:78
#: include/template/detail-action.php:347
msgid "quantité"
msgstr ""
@ -2050,6 +2054,7 @@ msgstr ""
#: include/class_acc_ledger_purchase.php:1773
#: include/template/detail-action.php:344
#: include/class_acc_ledger_purchase.php:1772
#: include/template/detail-action.php:349
msgid "Montant TVA"
msgstr ""
@ -2071,6 +2076,7 @@ msgstr ""
#: include/class_acc_ledger_purchase.php:1396
#: include/template/detail-action.php:339
#: include/template/detail-action.php:345
#: include/template/detail-action.php:350
msgid "Montant TVAC"
msgstr ""
@ -2382,7 +2388,11 @@ msgstr ""
#: include/dossier.inc.php:333 include/class_fiche.php:1230
#: include/class_fiche.php:1307 include/menu.inc.php:110
#: include/database.item.php:156 include/database.item.php:155
#: include/database.item.php:148
#: include/database.item.php:148 include/profile.inc.php:356
#: include/template/detail-action.php:241
#: include/template/detail-action.php:269
#: include/template/detail-action.php:345
#: include/template/detail-action.php:503
msgid "Description"
msgstr ""
@ -2440,6 +2450,7 @@ msgstr ""
#: include/template/detail-action.php:374
#: include/template/detail-action.php:390
#: include/template/detail-action.php:396
#: include/template/detail-action.php:401
msgid "Ajouter une ligne"
msgstr ""
@ -2630,6 +2641,7 @@ msgstr ""
#: include/ext/importbank/include/template/show_list.php:83
#: include/ext/importbank/include/class_import_bank.php:141
#: include/dossier.inc.php:272 include/dossier.inc.php:281
#: include/template/detail-action.php:477
msgid "Effacer"
msgstr ""
@ -2679,7 +2691,7 @@ msgstr ""
#: include/template/detail-action.php:444 include/dossier.inc.php:220
#: include/template/detail-action.php:450 include/ajax_get_profile.php:84
#: include/dossier.inc.php:240 include/ajax_view_action.php:48
#: include/dossier.inc.php:274
#: include/dossier.inc.php:274 include/template/detail-action.php:455
msgid "Modifier"
msgstr ""
@ -3168,6 +3180,7 @@ msgstr ""
#: include/template/form_ledger_detail.php:108
#: include/ext/modop/modop_display.php:112 include/compta_ach.inc.php:286
#: include/compta_ven.inc.php:324 include/ext/modop/modop_display.php:123
#: include/template/detail-action.php:400
msgid "Actualiser"
msgstr ""
@ -3764,7 +3777,7 @@ msgstr ""
#: include/database.item.php:85
#: include/ext/invoicing/include/invoice_send_mail_input.inc.php:112
#: include/param_sec.inc.php:269 include/database.item.php:82
#: include/database.item.php:81
#: include/database.item.php:81 include/param_sec.inc.php:270
msgid "Profil"
msgstr ""
@ -5237,6 +5250,7 @@ msgstr ""
#: include/template/action_search.php:117
#: include/template/detail-action.php:119
#: include/ext/sav/include/template/sas_display_detail.php:145
#: include/template/detail-action.php:124
msgid "Etat"
msgstr ""
@ -5355,6 +5369,7 @@ msgstr ""
#: include/template/dashboard.php:304 include/template/detail-action.php:254
#: include/template/todo_list_display.php:54
#: include/template/dashboard.php:334 include/template/dashboard.php:339
#: include/template/detail-action.php:259
msgid "Titre"
msgstr ""
@ -5372,12 +5387,14 @@ msgstr ""
#: include/template/detail-action.php:45 include/template/detail-action.php:94
#: include/template/detail-action.php:100
#: include/template/detail-action.php:105
msgid "Heure"
msgstr ""
#: include/template/detail-action.php:55
#: include/template/detail-action.php:104
#: include/template/detail-action.php:110
#: include/template/detail-action.php:115
msgid "Date limite"
msgstr ""
@ -5398,6 +5415,7 @@ msgstr ""
#: include/template/detail-action.php:115
#: include/template/detail-action.php:123
#: include/template/detail-action.php:129
#: include/template/detail-action.php:134
msgid "Priorité"
msgstr ""
@ -5413,6 +5431,7 @@ msgstr ""
#: include/template/detail-action.php:185
#: include/template/detail-action.php:190
#: include/template/detail-action.php:196
#: include/template/detail-action.php:201
#, php-format
msgid "Voulez-vous effacer cette action "
msgstr ""
@ -5438,6 +5457,7 @@ msgstr ""
#: include/class_acc_ledger_purchase.php:1761
#: include/template/detail-action.php:266
#: include/class_acc_ledger_purchase.php:1760
#: include/template/detail-action.php:271
msgid "Commentaire"
msgstr ""
@ -5456,6 +5476,7 @@ msgstr ""
#: include/template/detail-action.php:319
#: include/template/detail-action.php:335
#: include/template/detail-action.php:341
#: include/template/detail-action.php:346
msgid "prix unitaire"
msgstr ""
@ -5474,6 +5495,7 @@ msgstr ""
#: include/class_acc_ledger_purchase.php:1772
#: include/template/detail-action.php:343
#: include/class_acc_ledger_purchase.php:1771
#: include/template/detail-action.php:348
msgid "Code TVA"
msgstr ""
@ -5482,6 +5504,7 @@ msgstr ""
#: include/template/detail-action.php:350
#: include/template/detail-action.php:366
#: include/template/detail-action.php:372
#: include/template/detail-action.php:377
msgid "Montrer les détails"
msgstr ""
@ -5490,6 +5513,7 @@ msgstr ""
#: include/template/detail-action.php:351
#: include/template/detail-action.php:367
#: include/template/detail-action.php:373
#: include/template/detail-action.php:378
msgid "Cacher les détails"
msgstr ""
@ -5500,6 +5524,7 @@ msgstr ""
#: include/template/detail-action.php:397
#: include/template/detail-action.php:413
#: include/template/detail-action.php:419
#: include/template/detail-action.php:424
msgid "Document à générer"
msgstr ""
@ -5508,6 +5533,7 @@ msgstr ""
#: include/template/detail-action.php:408
#: include/template/detail-action.php:424
#: include/template/detail-action.php:430
#: include/template/detail-action.php:435
msgid "Pièces attachées"
msgstr ""
@ -5516,6 +5542,7 @@ msgstr ""
#: include/template/detail-action.php:443
#: include/template/detail-action.php:459
#: include/template/detail-action.php:465
#: include/template/detail-action.php:470
#, php-format
msgid "Voulez-vous effacer le document"
msgstr ""
@ -5525,6 +5552,7 @@ msgstr ""
#: include/template/detail-action.php:466
#: include/template/detail-action.php:482
#: include/template/detail-action.php:488
#: include/template/detail-action.php:493
msgid "Je ne peux pas ajouter de fichier"
msgstr ""
@ -5734,6 +5762,7 @@ msgstr ""
#: include/template/detail-action.php:319 include/stock_inv_histo.inc.php:105
#: include/template/detail-action.php:325
#: include/ext/sav/include/template/sas_display_list.php:66
#: include/template/detail-action.php:330
msgid "Détail"
msgstr ""
@ -6654,11 +6683,13 @@ msgstr ""
#: include/ext/amortis/include/class_am_card.php:177
#: include/ext/amortis/include/class_am_card.php:220
#: include/ext/amortis/include/class_am_card.php:235
msgid "Année invalide"
msgstr ""
#: include/ext/amortis/include/class_am_card.php:178
#: include/ext/amortis/include/class_am_card.php:221
#: include/ext/amortis/include/class_am_card.php:236
msgid "Nombre annuités invalide"
msgstr ""
@ -6666,6 +6697,7 @@ msgstr ""
#: include/class_acc_compute.php:194 include/class_acc_compute.php:195
#: include/ext/amortis/include/class_am_card.php:222
#: include/ext/importbank/include/template/show_transfer.php:100
#: include/ext/amortis/include/class_am_card.php:237
msgid "Montant invalide"
msgstr ""
@ -7679,7 +7711,7 @@ msgstr ""
msgid "Code invalide"
msgstr ""
#: html/logout.php:30
#: html/logout.php:30 html/logout.php:46
msgid "Vous êtes déconnecté"
msgstr ""
@ -8473,6 +8505,7 @@ msgstr ""
#: include/template/detail-action.php:176
#: include/template/detail-action.php:181
#: include/template/detail-action.php:187
#: include/template/detail-action.php:192
msgid "Actions concernées"
msgstr ""
@ -8481,6 +8514,7 @@ msgstr ""
#: include/template/detail-action.php:252
#: include/template/detail-action.php:268
#: include/template/detail-action.php:274
#: include/template/detail-action.php:279
#, php-format
msgid "Voulez-vous effacer ce commentaire"
msgstr ""
@ -8490,6 +8524,7 @@ msgstr ""
#: include/template/detail-action.php:481
#: include/template/detail-action.php:497
#: include/template/detail-action.php:503
#: include/template/detail-action.php:508
msgid "Ajouter un fichier"
msgstr ""
@ -8864,6 +8899,7 @@ msgid "choix des journaux"
msgstr ""
#: include/ext/amortis/include/class_am_card.php:56
#: include/ext/amortis/include/class_am_card.php:64
msgid "Ajout d'un bien à amortir"
msgstr ""
@ -9274,6 +9310,7 @@ msgstr ""
#: include/template/detail-action.php:384
#: include/template/detail-action.php:400
#: include/template/detail-action.php:406
#: include/template/detail-action.php:411
msgid "Transformer en facture"
msgstr ""
@ -9808,6 +9845,7 @@ msgid " pour la fiche "
msgstr ""
#: include/template/detail-action.php:64 include/template/detail-action.php:67
#: include/template/detail-action.php:72
msgid "Autres concernés"
msgstr ""
@ -9927,6 +9965,7 @@ msgstr ""
#: include/ext/amortis/include/class_am_card.php:224
#: include/ext/amortis/include/class_am_card.php:225
#: include/ext/amortis/include/class_am_card.php:240
msgid "Visible Y ou N\n"
msgstr ""
@ -9936,6 +9975,7 @@ msgstr ""
#: include/ext/amortis/include/class_am_card.php:244
#: include/ext/amortis/include/class_am_card.php:248
#: include/ext/amortis/include/class_am_card.php:263
msgid "Matériel déjà dans la liste"
msgstr ""
@ -10197,6 +10237,7 @@ msgstr ""
#: include/ext/amortis/include/class_am_card.php:229
#: include/ext/amortis/include/class_am_card.php:230
#: include/ext/amortis/include/class_am_card.php:245
msgid "Choisissez poste comptable ou fiche"
msgstr ""
@ -10885,6 +10926,7 @@ msgid "Accès menu impossible"
msgstr ""
#: html/do.php:219 html/do.php:224 html/do.php:252 html/do.php:265
#: html/do.php:268
msgid "Aucun profil utilisateur"
msgstr ""
@ -11002,11 +11044,11 @@ msgstr ""
msgid "Enregistré dans le journal"
msgstr ""
#: include/profile.inc.php:356
#: include/profile.inc.php:356 include/profile.inc.php:358
msgid "Calculatrice visible"
msgstr ""
#: include/profile.inc.php:358
#: include/profile.inc.php:358 include/profile.inc.php:360
msgid "Accès Direct visible"
msgstr ""
@ -11035,6 +11077,7 @@ msgid "Ajout d'une catégorie "
msgstr ""
#: include/template/detail-action.php:139
#: include/template/detail-action.php:144
msgid "Groupe Gestion"
msgstr ""
@ -11194,7 +11237,7 @@ msgstr ""
msgid "Aucun modèle (dossier vide, devant être restauré manuellement)"
msgstr ""
#: include/profile.inc.php:391
#: include/profile.inc.php:391 include/profile.inc.php:393
msgid "Ajouter un profil"
msgstr ""
@ -11286,3 +11329,41 @@ msgstr ""
#: include/database.item.php:240
msgid "Salaire"
msgstr ""
#: html/ajax_misc.php:571
msgid "Ce plugin n'existe pas "
msgstr ""
#: html/ajax_misc.php:572
msgid "Il y a une erreur, ce plugin n'existe pas"
msgstr ""
#: include/opening.inc.php:112
msgid "Aucun dossier"
msgstr ""
#: include/opening.inc.php:132 include/opening.inc.php:163
#: include/opening.inc.php:251
msgid "Continuer"
msgstr ""
#: include/opening.inc.php:178
msgid " Choisissez le journal qui contiendra l'opération d'ouverture "
msgstr ""
#: include/opening.inc.php:250
msgid ""
"Ne corrigez pas encore, cliquez continuer pour passer à l'étape suivante"
msgstr ""
#: include/template/detail-action.php:57
msgid "Pas de catégorie de contact"
msgstr ""
#: include/template/detail-action.php:310
msgid "Montrer articles"
msgstr ""
#: include/template/detail-action.php:311
msgid "Générer"
msgstr ""

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: NOALYSS\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-09-07 00:59+0200\n"
"POT-Creation-Date: 2015-09-24 01:32+0200\n"
"PO-Revision-Date: 2015-08-28 17:38+0200\n"
"Last-Translator: Dany De Bontridder <danydb@noalyss.eu>\n"
"Language-Team: American English <kde-i18n-doc@kde.org>\n"
@ -68,6 +68,12 @@ msgstr "Deze bestanden zijn niet verwijderd geweest"
msgid " Cette action ne vous est pas autorisée Contactez votre responsable"
msgstr "U bent niet bevoegd voor deze actie. Contacteer uw verantwoordelijke"
#: include/opening.inc.php:178
#, fuzzy
msgid " Choisissez le journal qui contiendra l'opération d'ouverture "
msgstr ""
"Onmogelijk om een journaal te verwijderen waarin operaties nog actief zijn"
#: include/ext/tva/ajax.php:205 include/ext/tva/ajax.php:222
msgid " Code TVA "
msgstr "BTW Code"
@ -378,7 +384,7 @@ msgid "Accès"
msgstr "Toegang"
# Je suppose que "Direct Form" est une application en anglais
#: include/profile.inc.php:358
#: include/profile.inc.php:358 include/profile.inc.php:360
#, fuzzy
msgid "Accès Direct visible"
msgstr "Met Direct Form"
@ -514,6 +520,7 @@ msgstr "Actie management"
#: include/template/detail-action.php:176
#: include/template/detail-action.php:181
#: include/template/detail-action.php:187
#: include/template/detail-action.php:192
msgid "Actions concernées"
msgstr "Betreffende acties"
@ -535,6 +542,7 @@ msgstr "Handelingen op verschillende documenten"
#: include/template/form_ledger_detail.php:108
#: include/ext/modop/modop_display.php:112 include/compta_ach.inc.php:286
#: include/compta_ven.inc.php:324 include/ext/modop/modop_display.php:123
#: include/template/detail-action.php:400
msgid "Actualiser"
msgstr "Updaten"
@ -671,6 +679,7 @@ msgid "Ajout client"
msgstr "Lijn toevoegen"
#: include/ext/amortis/include/class_am_card.php:56
#: include/ext/amortis/include/class_am_card.php:64
msgid "Ajout d'un bien à amortir"
msgstr "Toevoeging van een af te betalen goed "
@ -855,6 +864,7 @@ msgstr "Een bestand toevoegen"
#: include/template/detail-action.php:481
#: include/template/detail-action.php:497
#: include/template/detail-action.php:503
#: include/template/detail-action.php:508
msgid "Ajouter un fichier"
msgstr "Een bestand toevoegen"
@ -863,7 +873,7 @@ msgstr "Een bestand toevoegen"
msgid "Ajouter un modèle"
msgstr "Geen enkel model"
#: include/profile.inc.php:391
#: include/profile.inc.php:391 include/profile.inc.php:393
#, fuzzy
msgid "Ajouter un profil"
msgstr "Een bestand toevoegen"
@ -874,6 +884,7 @@ msgstr "Een bestand toevoegen"
#: include/template/detail-action.php:374
#: include/template/detail-action.php:390
#: include/template/detail-action.php:396
#: include/template/detail-action.php:401
msgid "Ajouter une ligne"
msgstr "Voeg een lijn"
@ -1007,6 +1018,7 @@ msgstr "Jaar van de aankoop"
#: include/ext/amortis/include/class_am_card.php:177
#: include/ext/amortis/include/class_am_card.php:220
#: include/ext/amortis/include/class_am_card.php:235
msgid "Année invalide"
msgstr "Ongeldig jaar"
@ -1247,6 +1259,11 @@ msgstr "Geen enkele bankrekening is gegeven"
msgid "Aucun document"
msgstr "Geen enkel document"
#: include/opening.inc.php:112
#, fuzzy
msgid "Aucun dossier"
msgstr "Naam van de map"
#: include/class_user.php:985 include/class_user.php:986
#, fuzzy
msgid "Aucun dossier disponible"
@ -1329,6 +1346,7 @@ msgid "Aucun poste trouvé"
msgstr "Geen enkele post gevonden "
#: html/do.php:219 html/do.php:224 html/do.php:252 html/do.php:265
#: html/do.php:268
#, fuzzy
msgid "Aucun profil utilisateur"
msgstr "Gebruiker toevoegen"
@ -1529,6 +1547,7 @@ msgid "Autres actions"
msgstr "Andere acties"
#: include/template/detail-action.php:64 include/template/detail-action.php:67
#: include/template/detail-action.php:72
#, fuzzy
msgid "Autres concernés"
msgstr "Betreffende acties"
@ -1805,6 +1824,7 @@ msgstr "CONVERT_GIF_PDF is niet geïnstalleerd"
#: include/template/detail-action.php:351
#: include/template/detail-action.php:367
#: include/template/detail-action.php:373
#: include/template/detail-action.php:378
msgid "Cacher les détails"
msgstr "Details verbergen"
@ -1825,7 +1845,7 @@ msgstr "Automatisch aanmaken van de boekhoudkundige post"
msgid "Calculatrice"
msgstr "Rekenmachine"
#: include/profile.inc.php:356
#: include/profile.inc.php:356 include/profile.inc.php:358
#, fuzzy
msgid "Calculatrice visible"
msgstr "Rekenmachine"
@ -1966,6 +1986,11 @@ msgstr ""
msgid "Ce plan n'existe pas"
msgstr "Dit plan bestaat niet"
#: html/ajax_misc.php:571
#, fuzzy
msgid "Ce plugin n'existe pas "
msgstr "Dit plan bestaat niet"
#: include/ajax_account_update.php:160
#, fuzzy
msgid "Ce poste existe déjà "
@ -2128,6 +2153,7 @@ msgstr "Kies uw dossier"
#: include/ext/amortis/include/class_am_card.php:229
#: include/ext/amortis/include/class_am_card.php:230
#: include/ext/amortis/include/class_am_card.php:245
#, fuzzy
msgid "Choisissez poste comptable ou fiche"
msgstr "Boekhoudkundige post of fiche veranderen"
@ -2441,6 +2467,7 @@ msgstr "Stock code"
#: include/class_acc_ledger_purchase.php:1772
#: include/template/detail-action.php:343
#: include/class_acc_ledger_purchase.php:1771
#: include/template/detail-action.php:348
msgid "Code TVA"
msgstr "BTW-code"
@ -2539,6 +2566,7 @@ msgstr "Comm"
#: include/class_acc_ledger_purchase.php:1761
#: include/template/detail-action.php:266
#: include/class_acc_ledger_purchase.php:1760
#: include/template/detail-action.php:271
msgid "Commentaire"
msgstr "Commentaar"
@ -2848,6 +2876,12 @@ msgstr "Bevestigt u de toevoeging van een boekhoudkundige oefening?"
msgid "Contact"
msgstr "Contact"
#: include/opening.inc.php:132 include/opening.inc.php:163
#: include/opening.inc.php:251
#, fuzzy
msgid "Continuer"
msgstr "Contact"
#: include/database.item.php:206 include/database.item.php:203
#, fuzzy
msgid "Contrat"
@ -3196,6 +3230,7 @@ msgstr "In het dagboek"
#: include/template/dashboard.php:338 include/class_fiche.php:1212
#: include/class_fiche.php:1287 include/ext/importbank/bank_constant.php:54
#: include/class_fiche.php:1229 include/class_fiche.php:1304
#: include/template/detail-action.php:96
msgid "Date"
msgstr "Datum"
@ -3332,6 +3367,7 @@ msgstr "Handeling is niet gevonden"
#: include/template/detail-action.php:55
#: include/template/detail-action.php:104
#: include/template/detail-action.php:110
#: include/template/detail-action.php:115
msgid "Date limite"
msgstr "Uiterste datum"
@ -3533,7 +3569,11 @@ msgstr "Kan dit bestand op te slaan"
#: include/dossier.inc.php:333 include/class_fiche.php:1230
#: include/class_fiche.php:1307 include/menu.inc.php:110
#: include/database.item.php:156 include/database.item.php:155
#: include/database.item.php:148
#: include/database.item.php:148 include/profile.inc.php:356
#: include/template/detail-action.php:241
#: include/template/detail-action.php:269
#: include/template/detail-action.php:345
#: include/template/detail-action.php:503
msgid "Description"
msgstr "Beschrijving"
@ -3705,6 +3745,7 @@ msgstr "Gegenereerd papier"
#: include/template/detail-action.php:397
#: include/template/detail-action.php:413
#: include/template/detail-action.php:419
#: include/template/detail-action.php:424
msgid "Document à générer"
msgstr "Documenteer je Maken"
@ -4031,6 +4072,7 @@ msgstr "Sorry hebt u Het niet VAK aangekruisd"
#: include/template/detail-action.php:319 include/stock_inv_histo.inc.php:105
#: include/template/detail-action.php:325
#: include/ext/sav/include/template/sas_display_list.php:66
#: include/template/detail-action.php:330
msgid "Détail"
msgstr "Detail"
@ -4294,6 +4336,7 @@ msgstr "Erasure"
#: include/ext/importbank/include/template/show_list.php:83
#: include/ext/importbank/include/class_import_bank.php:141
#: include/dossier.inc.php:272 include/dossier.inc.php:281
#: include/template/detail-action.php:477
msgid "Effacer"
msgstr "Wissen"
@ -4685,6 +4728,7 @@ msgstr "Stap 3/3"
#: include/template/action_search.php:117
#: include/template/detail-action.php:119
#: include/ext/sav/include/template/sas_display_detail.php:145
#: include/template/detail-action.php:124
msgid "Etat"
msgstr "Toestand"
@ -5120,7 +5164,7 @@ msgstr "Dicht"
#: include/template/detail-action.php:339
#: include/template/security_list_action.php:56 include/database.item.php:84
#: include/database.item.php:115 include/database.item.php:83
#: include/database.item.php:114
#: include/database.item.php:114 include/template/detail-action.php:344
msgid "Fiche"
msgstr "Blad"
@ -5580,6 +5624,7 @@ msgid "Groupe"
msgstr "Groep"
#: include/template/detail-action.php:139
#: include/template/detail-action.php:144
#, fuzzy
msgid "Groupe Gestion"
msgstr "Management Module"
@ -5621,6 +5666,11 @@ msgstr "Document Maken"
msgid "Génére écriture"
msgstr "Schrijven opstellen"
#: include/template/detail-action.php:311
#, fuzzy
msgid "Générer"
msgstr "Map maken"
#: include/ext/tva/class_ext_tva.php:341
msgid "Générer fichier"
msgstr "Map maken"
@ -5669,6 +5719,7 @@ msgstr ""
#: include/template/detail-action.php:45 include/template/detail-action.php:94
#: include/template/detail-action.php:100
#: include/template/detail-action.php:105
msgid "Heure"
msgstr "Tijd"
@ -5805,6 +5856,10 @@ msgstr ""
msgid "Il n'y a aucune marchandise"
msgstr "Er are Geen goederen"
#: html/ajax_misc.php:572
msgid "Il y a une erreur, ce plugin n'existe pas"
msgstr ""
#: include/ajax_preference.php:129 include/ajax_preference.php:131
#: include/ajax_preference.php:130 include/ajax_preference.php:132
#: include/ajax_preference.php:137 include/ajax_preference.php:139
@ -6134,6 +6189,7 @@ msgstr "Javascript"
#: include/template/detail-action.php:466
#: include/template/detail-action.php:482
#: include/template/detail-action.php:488
#: include/template/detail-action.php:493
msgid "Je ne peux pas ajouter de fichier"
msgstr "EEN blad Toevoegen is niet mogelijk"
@ -6722,6 +6778,7 @@ msgstr "Dinsdag"
#: include/ext/amortis/include/class_am_card.php:244
#: include/ext/amortis/include/class_am_card.php:248
#: include/ext/amortis/include/class_am_card.php:263
#, fuzzy
msgid "Matériel déjà dans la liste"
msgstr "Materiaaldemping"
@ -6942,7 +6999,7 @@ msgstr "Verandering"
#: include/template/detail-action.php:444 include/dossier.inc.php:220
#: include/template/detail-action.php:450 include/ajax_get_profile.php:84
#: include/dossier.inc.php:240 include/ajax_view_action.php:48
#: include/dossier.inc.php:274
#: include/dossier.inc.php:274 include/template/detail-action.php:455
msgid "Modifier"
msgstr "Veranderen"
@ -7140,6 +7197,7 @@ msgstr "Niet terug te vorderen bedrag"
#: include/class_acc_ledger_purchase.php:1773
#: include/template/detail-action.php:344
#: include/class_acc_ledger_purchase.php:1772
#: include/template/detail-action.php:349
msgid "Montant TVA"
msgstr "BTW Bedrag"
@ -7168,6 +7226,7 @@ msgstr "Foutief bedrag van de BTW"
#: include/class_acc_ledger_purchase.php:1396
#: include/template/detail-action.php:339
#: include/template/detail-action.php:345
#: include/template/detail-action.php:350
msgid "Montant TVAC"
msgstr "BTW Inbegrepen Bedrag"
@ -7207,6 +7266,7 @@ msgstr "Oorspronkelijk bedrag"
#: include/class_acc_compute.php:194 include/class_acc_compute.php:195
#: include/ext/amortis/include/class_am_card.php:222
#: include/ext/importbank/include/template/show_transfer.php:100
#: include/ext/amortis/include/class_am_card.php:237
msgid "Montant invalide"
msgstr "Ongeldig bedrag"
@ -7247,11 +7307,17 @@ msgstr "Af te schrijven"
msgid "Montant à l'achat"
msgstr "Oplopen tot aankoop"
#: include/template/detail-action.php:310
#, fuzzy
msgid "Montrer articles"
msgstr "Artikel toevoegen"
#: include/template/detail-action.php:336
#: include/template/detail-action.php:335
#: include/template/detail-action.php:350
#: include/template/detail-action.php:366
#: include/template/detail-action.php:372
#: include/template/detail-action.php:377
msgid "Montrer les détails"
msgstr "Details Tonen"
@ -7307,6 +7373,13 @@ msgstr "Aantal eenheden"
msgid "Nbres anomalies"
msgstr "Aantal onregelmatigheden"
# CSV = pour lire un file CSV sur ordinateur?
#: include/opening.inc.php:250
#, fuzzy
msgid ""
"Ne corrigez pas encore, cliquez continuer pour passer à l'étape suivante"
msgstr "Uitvoeren in CSV of naar de volgende stap gaan "
#: include/restore.inc.php:196 include/restore.inc.php:135
msgid ""
"Ne pas recharger la page, sinon votre base de données sera restaurée une "
@ -7427,6 +7500,7 @@ msgstr "Geen handeling"
#: include/class_user.php:977 include/dossier.inc.php:218
#: include/class_fiche.php:1598 include/database.item.php:153
#: include/database.item.php:152 include/database.item.php:145
#: include/profile.inc.php:354
msgid "Nom"
msgstr "Naam"
@ -7537,6 +7611,7 @@ msgstr "Aantal lijfrentes"
#: include/ext/amortis/include/class_am_card.php:178
#: include/ext/amortis/include/class_am_card.php:221
#: include/ext/amortis/include/class_am_card.php:236
msgid "Nombre annuités invalide"
msgstr "Aantal ongeldige annuïteiten"
@ -8421,6 +8496,11 @@ msgstr "Geen onregelmatigheden gevonden"
msgid "Pas d'étape"
msgstr ""
#: include/template/detail-action.php:57
#, fuzzy
msgid "Pas de catégorie de contact"
msgstr "Categorie naam van het record"
#: include/ext/invoicing/include/invoice_send_mail.inc.php:75
#: include/ext/invoicing/include/invoice_send_mail.inc.php:80
#: include/ext/invoicing/include/invoice_send_mail.inc.php:103
@ -8559,6 +8639,7 @@ msgstr "Map niet bestaat"
#: include/template/detail-action.php:408
#: include/template/detail-action.php:424
#: include/template/detail-action.php:430
#: include/template/detail-action.php:435
msgid "Pièces attachées"
msgstr "Documenten"
@ -8870,6 +8951,7 @@ msgstr ""
#: include/template/detail-action.php:115
#: include/template/detail-action.php:123
#: include/template/detail-action.php:129
#: include/template/detail-action.php:134
msgid "Priorité"
msgstr "Prioriteit"
@ -8923,7 +9005,7 @@ msgstr "Producten"
#: include/database.item.php:85
#: include/ext/invoicing/include/invoice_send_mail_input.inc.php:112
#: include/param_sec.inc.php:269 include/database.item.php:82
#: include/database.item.php:81
#: include/database.item.php:81 include/param_sec.inc.php:270
msgid "Profil"
msgstr "Profiel"
@ -9338,6 +9420,7 @@ msgstr "Is te laat"
#: include/cfgledger.inc.php:126 include/dossier.inc.php:325
#: include/dossier.inc.php:368 include/forecast.inc.php:343
#: include/dossier.inc.php:361 include/dossier.inc.php:404
#: include/opening.inc.php:166 include/opening.inc.php:253
msgid "Retour"
msgstr "Terug"
@ -9495,7 +9578,7 @@ msgstr "Nieuwe lijn"
#: include/payment_middle.inc.php:53 include/template/dashboard.php:338
#: include/ext/modop/modop_display.php:277 include/class_fiche_def.php:812
#: include/template/dashboard.php:343 include/ext/modop/modop_display.php:294
#: include/class_fiche_def.php:811
#: include/class_fiche_def.php:811 include/template/detail-action.php:464
msgid "Sauve"
msgstr "OPSLAAN"
@ -10078,6 +10161,7 @@ msgstr "Derde"
#: include/template/dashboard.php:304 include/template/detail-action.php:254
#: include/template/todo_list_display.php:54
#: include/template/dashboard.php:334 include/template/dashboard.php:339
#: include/template/detail-action.php:259
msgid "Titre"
msgstr "Titel"
@ -10362,6 +10446,7 @@ msgstr ""
#: include/template/detail-action.php:384
#: include/template/detail-action.php:400
#: include/template/detail-action.php:406
#: include/template/detail-action.php:411
msgid "Transformer en facture"
msgstr "Omzetten in een factuur"
@ -10728,6 +10813,7 @@ msgstr "Zichtbare Y of N"
#: include/ext/amortis/include/class_am_card.php:224
#: include/ext/amortis/include/class_am_card.php:225
#: include/ext/amortis/include/class_am_card.php:240
#, fuzzy
msgid "Visible Y ou N\n"
msgstr "Zichtbare Y of N"
@ -10757,6 +10843,7 @@ msgstr "Heeft u een kopie van deze kwestie"
#: include/template/detail-action.php:252
#: include/template/detail-action.php:268
#: include/template/detail-action.php:274
#: include/template/detail-action.php:279
#, php-format
msgid "Voulez-vous effacer ce commentaire"
msgstr "Wilt u deze opmerking verwijderen?"
@ -10773,6 +10860,7 @@ msgstr "Wilt u deze plug-in wissen?"
#: include/template/detail-action.php:185
#: include/template/detail-action.php:190
#: include/template/detail-action.php:196
#: include/template/detail-action.php:201
#, php-format
msgid "Voulez-vous effacer cette action "
msgstr "Wilt u deze actie wilt verwijderen"
@ -10793,6 +10881,7 @@ msgstr "Wilt u deze actie wilt verwijderen"
#: include/template/detail-action.php:443
#: include/template/detail-action.php:459
#: include/template/detail-action.php:465
#: include/template/detail-action.php:470
#, php-format
msgid "Voulez-vous effacer le document"
msgstr "Wilt u sterven afvegen papier?"
@ -10976,7 +11065,7 @@ msgstr "U van Gebruikt Strikt-modus, datum van de laatste is Operatie"
msgid "Vous utilisez un navigateur dépassé depuis près de 8 ans!"
msgstr "IE 6 wordt niet ondersteund"
#: html/logout.php:30
#: html/logout.php:30 html/logout.php:46
msgid "Vous êtes déconnecté"
msgstr "De verbinding is verbroken"
@ -11561,6 +11650,7 @@ msgstr "Prijs"
#: include/template/detail-action.php:319
#: include/template/detail-action.php:335
#: include/template/detail-action.php:341
#: include/template/detail-action.php:346
msgid "prix unitaire"
msgstr "Eenheid Prijs"
@ -11611,6 +11701,7 @@ msgstr "Qcode"
#: include/class_acc_ledger_purchase.php:1774
#: include/template/form_ledger_detail.php:71
#: include/template/form_ledger_detail.php:78
#: include/template/detail-action.php:347
msgid "quantité"
msgstr "hoeveelheid"
@ -11791,8 +11882,6 @@ msgstr "Mag Niet voor this U gegeven coderen"
msgid "wiki"
msgstr "wiki"
#, fuzzy
#, fuzzy
#~ msgid "Compte en banque clôturé"
#~ msgstr "Bankrekening"

View file

@ -19,13 +19,13 @@
// Copyright Author Dany De Bontridder danydb@aevalys.eu
require_once '../include/constant.php';
include_once NOALYSS_INCLUDE.'/ac_common.php';
include_once NOALYSS_INCLUDE.'/lib/ac_common.php';
/*! \file
* \brief Login page
*/
require_once NOALYSS_INCLUDE.'/class_database.php';
require_once NOALYSS_INCLUDE.'/lib/class_database.php';
// Verif if User and Pass match DB
// if no, then redirect to the login page
$rep=new Database();
@ -53,7 +53,7 @@ if ( isset ($_POST["p_user"] ) )
echo "<META HTTP-EQUIV=\"REFRESH\" content=\"0;url=admin/setup.php\">";
exit();
}
include_once NOALYSS_INCLUDE."/class_user.php";
include_once NOALYSS_INCLUDE."/class/class_user.php";
$User=new User($rep);
$User->Check(false,'LOGIN');
if ($g_captcha == true)
@ -92,7 +92,7 @@ else
}
include_once ("class_user.php");
include_once ("class/class_user.php");
$User=new User($rep);
$User->Check();

View file

@ -21,12 +21,28 @@
* \brief Logout
*/
require_once '../include/constant.php';
require_once ("ac_common.php");
require_once('class_database.php');
require_once ("lib/ac_common.php");
require_once('lib/class_database.php');
html_page_start("classic");
session_unset();
/* clean Global variable */
if ( isset ($g_user) ) unset ($GLOBAL['g_user']);
if ( isset ($g_pass) ) unset ($GLOBAL['g_pass']);
//
// Clean the possible cookies
//
if (isset($_SERVER['HTTP_COOKIE'])) {
$cookies = explode(';', $_SERVER['HTTP_COOKIE']);
foreach($cookies as $cookie) {
$parts = explode('=', $cookie);
$name = trim($parts[0]);
setcookie($name, '', time()-1000);
setcookie($name, '', time()-1000, '/');
}
}
echo '<h2 class="info">'._('Vous êtes déconnecté').'</h2>';
echo '<META HTTP-EQUIV="REFRESH" content="0;url=index.html">';

View file

@ -17,7 +17,7 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/
// Copyright Author Dany De Bontridder danydb@aevalys.eu
include_once("ac_common.php");
include_once("lib/ac_common.php");
html_page_start();
echo '<H1 class="info"> Not Implemented</H1>';
html_page_stop();

View file

@ -18,13 +18,13 @@
*/
require_once '../include/constant.php';
require_once NOALYSS_INCLUDE.'/ac_common.php';
require_once NOALYSS_INCLUDE.'/function_javascript.php';
require_once NOALYSS_INCLUDE.'/class_html_input.php';
require_once NOALYSS_INCLUDE.'/class_dossier.php';
require_once NOALYSS_INCLUDE.'/class_database.php';
require_once NOALYSS_INCLUDE.'/class_user.php';
require_once NOALYSS_INCLUDE.'/class_periode.php';
require_once NOALYSS_INCLUDE.'/lib/ac_common.php';
require_once NOALYSS_INCLUDE.'/lib/function_javascript.php';
require_once NOALYSS_INCLUDE.'/lib/class_html_input.php';
require_once NOALYSS_INCLUDE.'/class/class_dossier.php';
require_once NOALYSS_INCLUDE.'/lib/class_database.php';
require_once NOALYSS_INCLUDE.'/class/class_user.php';
require_once NOALYSS_INCLUDE.'/class/class_periode.php';
html_page_start($_SESSION['g_theme']);
@ -33,7 +33,7 @@ global $g_user;
if ( basename($_GET['ajax']) == 'ajax_history.php' )
{
$href=dossier::get();
$cn=new Database(dossier::id());
$cn=Dossier::connect();
/* current year */
$g_user=new User($cn);
$exercice=$g_user->get_exercice();

View file

@ -21,9 +21,9 @@
* \brief Search module
*/
require_once '../include/constant.php';
require_once NOALYSS_INCLUDE.'/class_dossier.php';
include_once NOALYSS_INCLUDE.'/ac_common.php';
require_once NOALYSS_INCLUDE.'/class_acc_ledger.php';
require_once NOALYSS_INCLUDE.'/class/class_dossier.php';
include_once NOALYSS_INCLUDE.'/lib/ac_common.php';
require_once NOALYSS_INCLUDE.'/class/class_acc_ledger.php';
html_page_start($_SESSION['g_theme']);
@ -32,11 +32,11 @@ load_all_script();
$gDossier=dossier::id();
require_once NOALYSS_INCLUDE.'/class_database.php';
require_once NOALYSS_INCLUDE.'/lib/class_database.php';
/* Admin. Dossier */
$cn=new Database($gDossier);
include_once NOALYSS_INCLUDE.'/class_user.php';
$cn=Dossier::connect();
include_once NOALYSS_INCLUDE.'/class/class_user.php';
global $g_user;
$g_user=new User($cn);

View file

@ -23,15 +23,15 @@
* \brief retrieve a document
*/
require_once '../include/constant.php';
require_once NOALYSS_INCLUDE.'/class_database.php';
require_once NOALYSS_INCLUDE.'/ac_common.php';
require_once NOALYSS_INCLUDE.'/class_document.php';
require_once NOALYSS_INCLUDE.'/class_dossier.php';
require_once NOALYSS_INCLUDE.'/lib/class_database.php';
require_once NOALYSS_INCLUDE.'/lib/ac_common.php';
require_once NOALYSS_INCLUDE.'/class/class_document.php';
require_once NOALYSS_INCLUDE.'/class/class_dossier.php';
$gDossier = dossier::id();
$cn = new Database($gDossier);
$cn = Dossier::connect();
$action = (isset($_REQUEST['a'])) ? $_REQUEST['a'] : 'sh';
require_once NOALYSS_INCLUDE.'/class_user.php';
require_once NOALYSS_INCLUDE.'/class/class_user.php';
global $g_user;
$g_user = new User($cn);
$g_user->Check();

View file

@ -22,15 +22,15 @@
* \brief send the document template
*/
require_once '../include/constant.php';
require_once NOALYSS_INCLUDE.'/class_database.php';
require_once NOALYSS_INCLUDE.'/ac_common.php';
require_once NOALYSS_INCLUDE.'/class_dossier.php';
require_once NOALYSS_INCLUDE.'/lib/class_database.php';
require_once NOALYSS_INCLUDE.'/lib/ac_common.php';
require_once NOALYSS_INCLUDE.'/class/class_dossier.php';
$gDossier=dossier::id();
$cn=new Database($gDossier);
$cn=Dossier::connect();
require_once NOALYSS_INCLUDE.'/class_user.php';
require_once NOALYSS_INCLUDE.'/class/class_user.php';
global $g_user;
$g_user=new User($cn);
$g_user->Check();

View file

@ -22,8 +22,8 @@
* \brief show an attach of an operation
*/
require_once '../include/constant.php';
include_once NOALYSS_INCLUDE.'/ac_common.php';
require_once NOALYSS_INCLUDE.'/class_dossier.php';
include_once NOALYSS_INCLUDE.'/lib/ac_common.php';
require_once NOALYSS_INCLUDE.'/class/class_dossier.php';
$gDossier=dossier::id();
if ( !isset ($_GET['jrn'] ) ||
@ -32,15 +32,15 @@ if ( !isset ($_GET['jrn'] ) ||
echo_error("Missing parameters");
}
require_once NOALYSS_INCLUDE.'/class_database.php';
require_once NOALYSS_INCLUDE.'/lib/class_database.php';
set_language();
$jr_grpt_id=$_GET['jr_grpt_id'];
$cn=new Database($gDossier);
$cn=Dossier::connect();
require_once NOALYSS_INCLUDE.'/class_user.php';
require_once NOALYSS_INCLUDE.'/class/class_user.php';
global $g_user;
$g_user=new User($cn);
$g_user->Check();

View file

@ -30,12 +30,12 @@
include_once("../include/constant.php");
include_once("ac_common.php");
require_once('class_database.php');
require_once ('class_dossier.php');
require_once('class_html_input.php');
require_once ('function_javascript.php');
require_once 'class_user.php';
include_once("lib/ac_common.php");
require_once('lib/class_database.php');
require_once ('class/class_dossier.php');
require_once('lib/class_html_input.php');
require_once ('lib/function_javascript.php');
require_once 'class/class_user.php';
load_all_script();
$gDossier=HtmlInput::default_value_get('gDossier', -1);
if ($gDossier==-1)
@ -45,7 +45,7 @@ if ($gDossier==-1)
}
$gDossierLogInput=$gDossier;
global $cn, $g_user, $g_succeed, $g_failed;
$cn=new Database($_GET['gDossier']);
$cn=Dossier::id();
$g_parameter=new Own($cn);
$g_user=new User($cn);

View file

@ -22,14 +22,14 @@
// Copyright Author Dany De Bontridder danydb@aevalys.eu
require_once '../include/constant.php';
include_once NOALYSS_INCLUDE.'/ac_common.php';
require_once NOALYSS_INCLUDE.'/class_database.php';
require_once NOALYSS_INCLUDE.'/class_itext.php';
require_once NOALYSS_INCLUDE.'/function_javascript.php';
include_once NOALYSS_INCLUDE.'/lib/ac_common.php';
require_once NOALYSS_INCLUDE.'/lib/class_database.php';
require_once NOALYSS_INCLUDE.'/lib/class_itext.php';
require_once NOALYSS_INCLUDE.'/lib/function_javascript.php';
@html_page_start($_SESSION['g_theme']);
$rep=new Database();
include_once NOALYSS_INCLUDE.'/class_user.php';
include_once NOALYSS_INCLUDE.'/class/class_user.php';
$User=new User($rep);
$User->Check();

View file

@ -28,11 +28,11 @@ $retour=HtmlInput::button_anchor(_('Retour liste'),
//-----------------------------------------------------
// Follow_Up
//-----------------------------------------------------
require_once NOALYSS_INCLUDE.'/class_icard.php';
require_once NOALYSS_INCLUDE.'/class_ispan.php';
require_once NOALYSS_INCLUDE.'/class_ifile.php';
require_once NOALYSS_INCLUDE.'/class_itext.php';
require_once NOALYSS_INCLUDE.'/class_follow_up.php';
require_once NOALYSS_INCLUDE.'/lib/class_icard.php';
require_once NOALYSS_INCLUDE.'/lib/class_ispan.php';
require_once NOALYSS_INCLUDE.'/lib/class_ifile.php';
require_once NOALYSS_INCLUDE.'/lib/class_itext.php';
require_once NOALYSS_INCLUDE.'/class/class_follow_up.php';
/*!\brief Show the list of action, this code should be common
* to several webpage. But for the moment we keep like that
* because it is used only by this file.

View file

@ -21,13 +21,13 @@
* the customer category
*/
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_iselect.php';
require_once NOALYSS_INCLUDE.'/class_ihidden.php';
require_once NOALYSS_INCLUDE.'/class_customer.php';
require_once NOALYSS_INCLUDE.'/class_ibutton.php';
require_once NOALYSS_INCLUDE.'/class_fiche_def.php';
require_once NOALYSS_INCLUDE.'/class_fiche_def.php';
require_once NOALYSS_INCLUDE.'/class_admin.php';
require_once NOALYSS_INCLUDE.'/lib/class_iselect.php';
require_once NOALYSS_INCLUDE.'/lib/class_ihidden.php';
require_once NOALYSS_INCLUDE.'/class/class_customer.php';
require_once NOALYSS_INCLUDE.'/lib/class_ibutton.php';
require_once NOALYSS_INCLUDE.'/class/class_fiche_def.php';
require_once NOALYSS_INCLUDE.'/class/class_fiche_def.php';
require_once NOALYSS_INCLUDE.'/class/class_admin.php';
global $g_user;

View file

@ -23,7 +23,7 @@ if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
$ag_id=HtmlInput::default_value_get("ag_id", "0");
$f_id=HtmlInput::default_value_get("f_id", "0");
if ( $ag_id == 0 || $f_id == 0 ) throw new Exception ("Invalid values", 0);
require_once 'class_follow_up.php';
require_once 'class/class_follow_up.php';
$follow=new Follow_Up($cn,$ag_id);
ob_start();

View file

@ -24,7 +24,7 @@ if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
/**
* Insert into follow-up the card (f_id) for the action_gestion (ag_id)
*/
require_once 'class_follow_up.php';
require_once 'class/class_follow_up.php';
$follow=new Follow_Up($cn,$ag_id);
$follow->insert_linked_card($f_id);
/**

View file

@ -28,7 +28,7 @@ $ag_id=HtmlInput::default_value_get("ag_id", "0");
if ($ag_id == 0 ) throw new Exception('ag_id is null');
require_once('class_acc_ledger.php');
require_once('class/class_acc_ledger.php');
$r=HtmlInput::title_box(_("Détail fiche"), 'search_card');
$r.='<form id="search_card1_frm" method="GET" onsubmit="action_add_concerned_card(this);return false;">';
@ -66,7 +66,7 @@ for ($i=0; $i<count($a); $i++)
echo $r;
require_once('template/card_result.php');
require_once(NOALYSS_INCLUDE.'/template/card_result.php');
$response=ob_get_contents();
ob_end_clean();

View file

@ -144,7 +144,7 @@ if ($op=='folder_display') // operation
?>
</p>
<?php
require 'template/folder_display.php';
require NOALYSS_INCLUDE.'/template/folder_display.php';
$content=ob_get_clean();
$status='OK';
}

View file

@ -32,7 +32,7 @@ $ledger=HtmlInput::default_value_get('led',0);
if ($table_id == "" || isNumber($amount) == 0 || isNumber($ledger) == 0) die ('Invalid Parameter');
require_once 'class_anc_key.php';
require_once 'class/class_anc_key.php';
ob_start();
echo HtmlInput::title_box(_("Choix d'une clef"), 'div_anc_key_choice');

View file

@ -28,7 +28,7 @@
//
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_anc_key.php';
require_once NOALYSS_INCLUDE.'/class/class_anc_key.php';
ob_start();
/////
$key=HtmlInput::default_value_get('key',0);

View file

@ -28,15 +28,15 @@
// parameter are gDossier , c1 : the control id to update,
// c2 the control id which contains the pa_id
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_itext.php';
require_once NOALYSS_INCLUDE.'/class_ihidden.php';
require_once NOALYSS_INCLUDE.'/class_ibutton.php';
require_once NOALYSS_INCLUDE.'/class_database.php';
require_once NOALYSS_INCLUDE.'/ac_common.php';
require_once NOALYSS_INCLUDE.'/class_dossier.php';
require_once NOALYSS_INCLUDE.'/class_anc_account.php';
require_once NOALYSS_INCLUDE.'/class_anc_plan.php';
require_once NOALYSS_INCLUDE.'/function_javascript.php';
require_once NOALYSS_INCLUDE.'/lib/class_itext.php';
require_once NOALYSS_INCLUDE.'/lib/class_ihidden.php';
require_once NOALYSS_INCLUDE.'/lib/class_ibutton.php';
require_once NOALYSS_INCLUDE.'/lib/class_database.php';
require_once NOALYSS_INCLUDE.'/lib/ac_common.php';
require_once NOALYSS_INCLUDE.'/class/class_dossier.php';
require_once NOALYSS_INCLUDE.'/class/class_anc_account.php';
require_once NOALYSS_INCLUDE.'/class/class_anc_plan.php';
require_once NOALYSS_INCLUDE.'/lib/function_javascript.php';
echo HtmlInput::title_box(_("Recherche activité"), $ctl);

View file

@ -3,9 +3,9 @@
//see licence.txt
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_database.php';
require_once NOALYSS_INCLUDE.'/class_user.php';
$cn=new Database($_GET['gDossier']);
require_once NOALYSS_INCLUDE.'/lib/class_database.php';
require_once NOALYSS_INCLUDE.'/class/class_user.php';
$cn=Dossier::connect();
if ( isset($_REQUEST['pa_id']) )

View file

@ -35,9 +35,9 @@
* - ctl the ctl where to get the quick_code
*/
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_user.php';
require_once NOALYSS_INCLUDE.'/class_dossier.php';
require_once NOALYSS_INCLUDE.'/class_fiche.php';
require_once NOALYSS_INCLUDE.'/class/class_user.php';
require_once NOALYSS_INCLUDE.'/class/class_dossier.php';
require_once NOALYSS_INCLUDE.'/class/class_fiche.php';
extract($_GET);
/* check the parameters */
foreach ( array('j','ctl') as $a )

View file

@ -18,7 +18,7 @@
*/
// Copyright Author Dany De Bontridder danydb@aevalys.eu
if ( !defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_calendar.php';
require_once NOALYSS_INCLUDE.'/class/class_calendar.php';
ob_start();
if ( $notitle== 0 ) echo HtmlInput::title_box(_("Calendrier"), "calendar_zoom_div");
$cal=new Calendar();

View file

@ -3,12 +3,12 @@
//see licence.txt
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_menu_ref.php';
require_once NOALYSS_INCLUDE.'/class/class_menu_ref.php';
$msg=_("Création");
$m=new Menu_Ref($cn);
echo '<form method="POST" id="ajax_create_menu_frm" onsubmit="return confirm_box(this,\''._('Vous confirmez ?').'\')">';
echo HtmlInput::hidden('create_menu', 1);
require_once 'template/menu_detail.php';
require_once NOALYSS_INCLUDE.'/template/menu_detail.php';
echo HtmlInput::submit('create_menubt',_('Sauver'));
echo HtmlInput::button_close('divmenu');
echo '</form>';

View file

@ -45,54 +45,10 @@ if ($module == ""
return;
}
require_once NOALYSS_INCLUDE.'/class_profile_menu.php';
require_once NOALYSS_INCLUDE.'/class/class_profile_menu.php';
$p_level++;
$profile=new Profile_Menu($cn);
$profile->p_id=$p_id;
$profile->display_module_menu($module,$p_level);
////////////////////////////////////////////////////////////////////////////////
// EXAMPLE
////////////////////////////////////////////////////////////////////////////////
/*
if ($ac == 'save') // operation
{
$cn=new Database(dossier::id());
$todo=new Todo_List($cn);
$id=HtmlInput::default_value_get("id", 0); // get variable
$todo->set_parameter("id",$id);
if ($id <> 0 ) { $todo->load(); }
else
{
$todo->set_parameter("owner", $_SESSION['g_user']);
}
$todo->set_parameter("date", HtmlInput::default_value_get("p_date_todo", ""));
$todo->set_parameter("title", HtmlInput::default_value_get("p_title", ""));
$todo->set_parameter("desc", HtmlInput::default_value_get("p_desc", ""));
$todo->set_is_public(HtmlInput::default_value_get("p_public", "N"));
if ( $todo->get_parameter('owner') == $_SESSION['g_user'] ) $todo->save();
$todo->load();
//----------------------------------------------------------------
// Answer in XML
header('Content-type: text/xml; charset=UTF-8');
$dom=new DOMDocument('1.0','UTF-8');
$tl_id=$dom->createElement('tl_id',$todo->get_parameter('id'));
$tl_content=$dom->createElement('row',$todo->display_row('class="odd"','N'));
$root=$dom->createElement("root");
$todo_class=$todo->get_class();
$todo_class=($todo_class=="")?' odd ':$todo_class;
$class=$dom->createElement("style",$todo_class);
$root->appendChild($tl_id);
$root->appendChild($tl_content);
$root->appendChild($class);
$dom->appendChild($root);
echo $dom->saveXML();
exit();
}
*/
?>

View file

@ -26,8 +26,8 @@
*
*/
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_fiche_def.php';
require_once NOALYSS_INCLUDE.'/class_tool_uos.php';
require_once NOALYSS_INCLUDE.'/class/class_fiche_def.php';
require_once NOALYSS_INCLUDE.'/lib/class_tool_uos.php';
global $g_user;
$g_user->can_request(FICCAT,0);

View file

@ -30,7 +30,7 @@ if ($op=='action_show')
/**
* display action
*/
require_once NOALYSS_INCLUDE.'/class_follow_up.php';
require_once NOALYSS_INCLUDE.'/class/class_follow_up.php';
$gestion=new Follow_Up($cn);
$array=$gestion->get_last(25);
$len_array=count($array);
@ -39,14 +39,14 @@ if ($op=='action_show')
}
if ($op=='action_add')
{
require_once NOALYSS_INCLUDE.'/class_follow_up.php';
require_once NOALYSS_INCLUDE.'/class/class_follow_up.php';
$gestion=new Follow_Up($cn);
$gestion->display_short();
return;
}
if ($op=='action_save')
{
require_once NOALYSS_INCLUDE.'/class_follow_up.php';
require_once NOALYSS_INCLUDE.'/class/class_follow_up.php';
/**
* save info from the get

View file

@ -31,9 +31,9 @@ if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
// Security
if ( $g_user->check_module('CFGPRO') == 0 ) die();
require_once NOALYSS_INCLUDE.'/class_profile_sql.php';
require_once NOALYSS_INCLUDE.'/class_profile_menu.php';
require_once NOALYSS_INCLUDE.'/class_html_input.php';
require_once NOALYSS_INCLUDE.'/database/class_profile_sql.php';
require_once NOALYSS_INCLUDE.'/class/class_profile_menu.php';
require_once NOALYSS_INCLUDE.'/lib/class_html_input.php';
$p_id=HtmlInput::default_value_request('p_id', -1);
$profile=new Profile_sql($cn,$p_id);
$gDossier=Dossier::id();

View file

@ -30,10 +30,10 @@
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/constant.php';
require_once NOALYSS_INCLUDE.'/class_database.php';
require_once NOALYSS_INCLUDE.'/class_dossier.php';
require_once NOALYSS_INCLUDE.'/class_acc_ledger.php';
require_once NOALYSS_INCLUDE.'/class_user.php';
require_once NOALYSS_INCLUDE.'/lib/class_database.php';
require_once NOALYSS_INCLUDE.'/class/class_dossier.php';
require_once NOALYSS_INCLUDE.'/class/class_acc_ledger.php';
require_once NOALYSS_INCLUDE.'/class/class_user.php';
// Check if the needed field does exist
extract ($_GET);

View file

@ -14,8 +14,8 @@
*/
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_acc_ledger.php';
require_once NOALYSS_INCLUDE.'/class_html_input.php';
require_once NOALYSS_INCLUDE.'/class/class_acc_ledger.php';
require_once NOALYSS_INCLUDE.'/lib/class_html_input.php';
if ( ! isset ($r_jrn)) { $r_jrn=null;}
$ctl='div_jrn'.$div;
ob_start();

View file

@ -26,8 +26,8 @@
*
*/
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_user.php';
require_once NOALYSS_INCLUDE.'/class_dossier.php';
require_once NOALYSS_INCLUDE.'/class/class_user.php';
require_once NOALYSS_INCLUDE.'/class/class_dossier.php';
extract($_GET);
/* check the parameters */
foreach ( array('j','ctl') as $a )

View file

@ -23,12 +23,12 @@
* \brief show the detail of a document and let you modify it
*/
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_database.php';
require_once NOALYSS_INCLUDE.'/class_dossier.php';
require_once NOALYSS_INCLUDE.'/class_document_modele.php';
require_once NOALYSS_INCLUDE.'/lib/class_database.php';
require_once NOALYSS_INCLUDE.'/class/class_dossier.php';
require_once NOALYSS_INCLUDE.'/class/class_document_modele.php';
/* 1. Check security */
$cn=new Database(dossier::id());
$cn=Dossier::id();
/* 2. find the document */
$doc=new Document_Modele($cn,$id);

View file

@ -3,7 +3,7 @@
//see licence.txt
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_menu_ref.php';
require_once NOALYSS_INCLUDE.'/class/class_menu_ref.php';
$m=new Menu_Ref($cn,$me_code);
$msg="Modification ".$m->me_code.' '.h($m->me_menu);
echo '<form method="POST" id="ajax_mod_menu_frm" onsubmit="return confirm_box(this,\'Vous confirmez ?\')">';

View file

@ -20,7 +20,7 @@
// Copyright Author Dany De Bontridder danydb@aevalys.eu
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_periode.php';
require_once NOALYSS_INCLUDE.'/class/class_periode.php';
/**\file
* \brief display or save a periode

View file

@ -25,7 +25,7 @@
*/
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
ob_start();
require_once NOALYSS_INCLUDE.'/class_pre_operation.php';
require_once NOALYSS_INCLUDE.'/class/class_pre_operation.php';
$op=new Pre_Operation($cn,$_GET['id']);
$array=$op->load();
echo HtmlInput::anchor_close('mod_predf_op');

View file

@ -26,7 +26,7 @@
*
*/
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_stock_sql.php';
require_once NOALYSS_INCLUDE.'/database/class_stock_sql.php';
$st=new Stock_Sql($_GET['r_id']);
?>

View file

@ -76,7 +76,7 @@ if ( $pcmn_val != "")
}
require 'template/pcmn_update.php';
require NOALYSS_INCLUDE.'/template/pcmn_update.php';
$response = ob_get_clean();
$html = escape_xml($response);
if ( headers_sent() ) {

View file

@ -22,11 +22,11 @@
* it permits to change the user preferences
*/
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_user.php';
require_once NOALYSS_INCLUDE.'/class_iselect.php';
require_once NOALYSS_INCLUDE.'/class_iperiod.php';
require_once NOALYSS_INCLUDE.'/class_acc_report.php';
require_once NOALYSS_INCLUDE.'/class_periode.php';
require_once NOALYSS_INCLUDE.'/class/class_user.php';
require_once NOALYSS_INCLUDE.'/lib/class_iselect.php';
require_once NOALYSS_INCLUDE.'/lib/class_iperiod.php';
require_once NOALYSS_INCLUDE.'/class/class_acc_report.php';
require_once NOALYSS_INCLUDE.'/class/class_periode.php';
echo HtmlInput::title_box(_('Préférence'), 'preference_div');
echo '<DIV class="content">';
echo '<p class="notice">';
@ -43,7 +43,7 @@ if (isset($_REQUEST['gDossier']) && $_REQUEST['gDossier']<>0)
{
$g_user->load_global_pref();
$msg = "";
$cn = new Database($_REQUEST['gDossier']);
$cn =Dossier::connect();
$g_user->cn = $cn;
$inside_dossier = true;
$local_pref=$g_user->get_preference();

View file

@ -21,9 +21,9 @@
* \brief Search module
*/
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_dossier.php';
include_once NOALYSS_INCLUDE.'/ac_common.php';
require_once NOALYSS_INCLUDE.'/class_follow_up.php';
require_once NOALYSS_INCLUDE.'/class/class_dossier.php';
include_once NOALYSS_INCLUDE.'/lib/ac_common.php';
require_once NOALYSS_INCLUDE.'/class/class_follow_up.php';
$_REQUEST['ac']='FOLLOW';

View file

@ -19,7 +19,7 @@
// Copyright Author Dany De Bontridder danydb@aevalys.eu
if ( !defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_tag.php';
require_once NOALYSS_INCLUDE.'/class/class_tag.php';
ob_start();
if ($_GET['clear']==1) {
/* Add a clear button */

View file

@ -19,7 +19,7 @@
// Copyright Author Dany De Bontridder danydb@aevalys.eu
if ( !defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_tag.php';
require_once NOALYSS_INCLUDE.'/class/class_tag.php';
ob_start();
echo Tag::button_search($_GET['pref']);
$response= ob_get_clean();

View file

@ -19,7 +19,7 @@
// Copyright Author Dany De Bontridder danydb@aevalys.eu
if ( !defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_tag.php';
require_once NOALYSS_INCLUDE.'/class/class_tag.php';
ob_start();
$tag=new Tag($cn);
$tag->select_search($_GET['pref']);

View file

@ -6,8 +6,8 @@
//see licence.txt
if ( !defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_tool_uos.php';
require_once NOALYSS_INCLUDE.'/class_tag.php';
require_once NOALYSS_INCLUDE.'/lib/class_tool_uos.php';
require_once NOALYSS_INCLUDE.'/class/class_tag.php';
ob_start();
$tag=new Tag($cn);
$tag->data->t_id=$_GET['tag'];
@ -32,7 +32,7 @@ else :
echo HtmlInput::hidden('t_id', $_GET['tag']);
echo HtmlInput::hidden('ac',$_GET['ac']);
$data=$tag->data;
require_once 'template/tag_detail.php';
require_once NOALYSS_INCLUDE.'/template/tag_detail.php';
echo HtmlInput::submit("save_tag_sb", "Valider");
?>
</form>

View file

@ -19,7 +19,7 @@
// Copyright Author Dany De Bontridder danydb@aevalys.eu
if ( !defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_tag.php';
require_once NOALYSS_INCLUDE.'/class/class_tag.php';
ob_start();
$tag=new Tag($cn);
$tag->select();

View file

@ -4,7 +4,7 @@
if ( !defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_tag.php';
require_once NOALYSS_INCLUDE.'/class/class_tag.php';
$tag=new Tag($cn);
$tag->save($_GET);

View file

@ -19,7 +19,7 @@
// Copyright Author Dany De Bontridder danydb@aevalys.eu
if ( !defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_tag.php';
require_once NOALYSS_INCLUDE.'/class/class_tag.php';
ob_start();
$tag=new Tag($cn);
$tag->select_search();

View file

@ -26,7 +26,7 @@
* -l for the ledger
*/
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_acc_ledger.php';
require_once NOALYSS_INCLUDE.'/class/class_acc_ledger.php';
$ledger=new Acc_Ledger($cn,$l);
echo $ledger->input_paid(1);
?>

View file

@ -29,9 +29,9 @@
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/constant.php';
require_once NOALYSS_INCLUDE.'/class_database.php';
require_once NOALYSS_INCLUDE.'/class_dossier.php';
require_once NOALYSS_INCLUDE.'/class_pre_operation.php';
require_once NOALYSS_INCLUDE.'/lib/class_database.php';
require_once NOALYSS_INCLUDE.'/class/class_dossier.php';
require_once NOALYSS_INCLUDE.'/class/class_pre_operation.php';
// Check if the needed field does exist
extract ($_GET);
@ -44,7 +44,7 @@ foreach (array('l','t','d','gDossier') as $a)
}
}
$cn=new Database(dossier::id());
$cn=Dossier::id();
$op=new Pre_operation_detail($cn);
$op->set('ledger',$l);
$op->set('ledger_type',$t);

View file

@ -27,8 +27,8 @@
*/
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
ob_start();
require_once NOALYSS_INCLUDE.'/class_follow_up.php';
require_once NOALYSS_INCLUDE.'/class_default_menu.php';
require_once NOALYSS_INCLUDE.'/class/class_follow_up.php';
require_once NOALYSS_INCLUDE.'/class/class_default_menu.php';
echo HtmlInput::title_box(_("Détail action"), $div);
$act = new Follow_Up($cn);

View file

@ -25,7 +25,7 @@
* @brief show detail of inv.
*
*/
require_once NOALYSS_INCLUDE.'/class_stock_goods.php';
require_once NOALYSS_INCLUDE.'/class/class_stock_goods.php';
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
$st=new Stock_Goods($cn);

View file

@ -3,7 +3,7 @@
//see licence.txt
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_anc_acc_list.php';
require_once NOALYSS_INCLUDE.'/class/class_anc_acc_list.php';
echo '<div class="content">';
$tab = new Anc_Acc_List($cn);
$tab->get_request();

View file

@ -3,7 +3,7 @@
//see licence.txt
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_anc_table.php';
require_once NOALYSS_INCLUDE.'/class/class_anc_table.php';
$tab = new Anc_Table($cn);
$tab->get_request();
echo '<form method="get">';

View file

@ -3,7 +3,7 @@
//see licence.txt
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_anc_balance_double.php';
require_once NOALYSS_INCLUDE.'/class/class_anc_balance_double.php';
$bc = new Anc_Balance_Double($cn);
$bc->get_request();
echo '<form method="get">';

View file

@ -3,7 +3,7 @@
//see licence.txt
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_anc_balance_simple.php';
require_once NOALYSS_INCLUDE.'/class/class_anc_balance_simple.php';
$bs = new Anc_Balance_Simple($cn);
$bs->get_request();
echo '<form method="get">';

View file

@ -5,7 +5,7 @@
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
echo '<div style="content">';
require_once NOALYSS_INCLUDE.'/class_anc_grandlivre.php';
require_once NOALYSS_INCLUDE.'/class/class_anc_grandlivre.php';
$grandLivre=new Anc_Grandlivre($cn);

View file

@ -24,9 +24,9 @@
*
*/
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_itext.php';
require_once NOALYSS_INCLUDE.'/class_iselect.php';
require_once NOALYSS_INCLUDE.'/class_anc_group.php';
require_once NOALYSS_INCLUDE.'/lib/class_itext.php';
require_once NOALYSS_INCLUDE.'/lib/class_iselect.php';
require_once NOALYSS_INCLUDE.'/class/class_anc_group.php';
$r=new Anc_Group($cn);

View file

@ -3,7 +3,7 @@
//see licence.txt
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_anc_group.php';
require_once NOALYSS_INCLUDE.'/class/class_anc_group.php';
$gr = new Anc_Group($cn);
$gr->get_request();

View file

@ -5,7 +5,7 @@
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_anc_listing.php';
require_once NOALYSS_INCLUDE.'/class/class_anc_listing.php';
$list = new Anc_Listing($cn);
$list->get_request();

View file

@ -29,7 +29,7 @@
if (!defined('ALLOWED'))
die('Appel direct ne sont pas permis');
global $cn, $g_user;
require_once NOALYSS_INCLUDE.'/class_anc_key.php';
require_once NOALYSS_INCLUDE.'/class/class_anc_key.php';
$op=HtmlInput::default_value_request("op", "list");
switch ($op)

View file

@ -26,12 +26,12 @@
*
*/
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_ihidden.php';
require_once NOALYSS_INCLUDE.'/class_iselect.php';
require_once NOALYSS_INCLUDE.'/class_anc_account.php';
require_once NOALYSS_INCLUDE.'/class_anc_operation.php';
require_once NOALYSS_INCLUDE.'/class_anc_plan.php';
require_once NOALYSS_INCLUDE.'/class_anc_group_operation.php';
require_once NOALYSS_INCLUDE.'/lib/class_ihidden.php';
require_once NOALYSS_INCLUDE.'/lib/class_iselect.php';
require_once NOALYSS_INCLUDE.'/class/class_anc_account.php';
require_once NOALYSS_INCLUDE.'/class/class_anc_operation.php';
require_once NOALYSS_INCLUDE.'/class/class_anc_plan.php';
require_once NOALYSS_INCLUDE.'/class/class_anc_group_operation.php';
global $g_user;

View file

@ -25,8 +25,8 @@
*
*/
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_anc_plan.php';
require_once NOALYSS_INCLUDE.'/class_anc_account.php';
require_once NOALYSS_INCLUDE.'/class/class_anc_plan.php';
require_once NOALYSS_INCLUDE.'/class/class_anc_account.php';
$ret="";
$str_dossier=Dossier::get();
//---------------------------------------------------------------------------

View file

@ -24,15 +24,15 @@
* some variable are already defined ($cn, $g_user ...)
*/
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
include_once NOALYSS_INCLUDE.'/ac_common.php';
include_once NOALYSS_INCLUDE.'/class_acc_balance.php';
require_once NOALYSS_INCLUDE.'/class_iselect.php';
require_once NOALYSS_INCLUDE.'/class_ispan.php';
require_once NOALYSS_INCLUDE.'/class_icheckbox.php';
require_once NOALYSS_INCLUDE.'/class_ihidden.php';
require_once NOALYSS_INCLUDE.'/class_acc_ledger.php';
require_once NOALYSS_INCLUDE.'/class_periode.php';
require_once NOALYSS_INCLUDE.'/class_exercice.php';
include_once NOALYSS_INCLUDE.'/lib/ac_common.php';
include_once NOALYSS_INCLUDE.'/class/class_acc_balance.php';
require_once NOALYSS_INCLUDE.'/lib/class_iselect.php';
require_once NOALYSS_INCLUDE.'/lib/class_ispan.php';
require_once NOALYSS_INCLUDE.'/lib/class_icheckbox.php';
require_once NOALYSS_INCLUDE.'/lib/class_ihidden.php';
require_once NOALYSS_INCLUDE.'/class/class_acc_ledger.php';
require_once NOALYSS_INCLUDE.'/class/class_periode.php';
require_once NOALYSS_INCLUDE.'/class/class_exercice.php';
global $g_user;
$gDossier=dossier::id();
$exercice=(isset($_GET['exercice']))?$_GET['exercice']:$g_user->get_exercice();

View file

@ -65,7 +65,7 @@ $w_lettre->selected=HtmlInput::default_value_get('p_let','unlet');
?>
</form>
<?php
require_once 'class_balance_age.php';
require_once NOALYSS_INCLUDE.'/class/class_balance_age.php';
$balance=new Balance_Age($cn);
$type=HtmlInput::default_value_get('p_type', 'C');
$let=HtmlInput::default_value_get('p_let', 'unlet');

View file

@ -23,7 +23,7 @@
* \brief show the status of a card
*/
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_exercice.php';
require_once NOALYSS_INCLUDE.'/class/class_exercice.php';
global $g_user;
echo '<div class="content" style="width:90%;margin-left:5%">';

View file

@ -25,8 +25,8 @@ if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
* @brief
* @param type $name Descriptionara
*/
require_once NOALYSS_INCLUDE.'/class_exercice.php';
require_once NOALYSS_INCLUDE.'/class_balance_age.php';
require_once NOALYSS_INCLUDE.'/class/class_exercice.php';
require_once NOALYSS_INCLUDE.'/class/class_balance_age.php';
$let=( isset ($_GET['p_let']))?'let':'unlet';
$export_csv = '<FORM METHOD="get" ACTION="export.php" style="display:inline">';

View file

@ -21,10 +21,10 @@
* the supplier category
*/
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_iselect.php';
require_once NOALYSS_INCLUDE.'/class_ihidden.php';
require_once NOALYSS_INCLUDE.'/class_bank.php';
require_once NOALYSS_INCLUDE.'/class_ibutton.php';
require_once NOALYSS_INCLUDE.'/lib/class_iselect.php';
require_once NOALYSS_INCLUDE.'/lib/class_ihidden.php';
require_once NOALYSS_INCLUDE.'/class/class_bank.php';
require_once NOALYSS_INCLUDE.'/lib/class_ibutton.php';
global $g_user;
$low_action=(isset($_REQUEST['sb']))?$_REQUEST['sb']:'list';

View file

@ -8,7 +8,7 @@
*/
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
require_once NOALYSS_INCLUDE.'/class_calendar.php';
require_once NOALYSS_INCLUDE.'/class/class_calendar.php';
$cal=new Calendar();
$cal->default_periode=(isset ($_GET['in']))?$_GET['in']:$g_user->get_periode();

Some files were not shown because too many files have changed in this diff Show more