File cleaning
This commit is contained in:
parent
c3cb74283d
commit
4a3731a3e0
27 changed files with 12 additions and 443 deletions
|
|
@ -1,16 +0,0 @@
|
|||
#!/bin/bash
|
||||
# Brief : compite the file .mo,
|
||||
# It is used for the translation
|
||||
#
|
||||
#
|
||||
# This file is a part of NOALYSS under GPL
|
||||
# Author D. DE BONTRIDDER danydb@aevalys.eu
|
||||
cd ../html/lang
|
||||
echo "English"
|
||||
cd en_US/LC_MESSAGES
|
||||
msgfmt -c -v messages.po
|
||||
echo "Dutch"
|
||||
cd ../..
|
||||
cd nl_NL/LC_MESSAGES
|
||||
msgfmt -c -v messages.po
|
||||
|
||||
12
doc/Documentation.txt
Normal file
12
doc/Documentation.txt
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
DOCUMENTATION
|
||||
=================
|
||||
|
||||
|
||||
La documentation se trouve sur le site de Noalyss
|
||||
|
||||
WIKI : https://wiki.noalyss.eu/doku.php
|
||||
|
||||
MANUEL : https://manuel-fr.noalyss.eu/
|
||||
|
||||
Résumé des liens : https://www.noalyss.eu/?page_id=1031
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
|
@ -1,77 +0,0 @@
|
|||
<?php
|
||||
|
||||
// Simon Willison, 16th April 2003
|
||||
// Based on Lars Marius Garshol's Python XMLWriter class
|
||||
// See http://www.xml.com/pub/a/2003/04/09/py-xml.html
|
||||
|
||||
class XmlWriter {
|
||||
var $xml;
|
||||
var $indent;
|
||||
var $stack = array();
|
||||
function XmlWriter($indent = ' ') {
|
||||
$this->indent = $indent;
|
||||
$this->xml = '<?xml version="1.0" encoding="utf-8"?>'."\n";
|
||||
}
|
||||
function _indent() {
|
||||
for ($i = 0, $j = count($this->stack); $i < $j; $i++) {
|
||||
$this->xml .= $this->indent;
|
||||
}
|
||||
}
|
||||
function push($element, $attributes = array()) {
|
||||
$this->_indent();
|
||||
$this->xml .= '<'.$element;
|
||||
foreach ($attributes as $key => $value) {
|
||||
$this->xml .= ' '.$key.'="'.htmlentities($value).'"';
|
||||
}
|
||||
$this->xml .= ">\n";
|
||||
$this->stack[] = $element;
|
||||
}
|
||||
function element($element, $content, $attributes = array()) {
|
||||
$this->_indent();
|
||||
$this->xml .= '<'.$element;
|
||||
foreach ($attributes as $key => $value) {
|
||||
$this->xml .= ' '.$key.'="'.htmlentities($value).'"';
|
||||
}
|
||||
$this->xml .= '>'.htmlentities($content).'</'.$element.'>'."\n";
|
||||
}
|
||||
function emptyelement($element, $attributes = array()) {
|
||||
$this->_indent();
|
||||
$this->xml .= '<'.$element;
|
||||
foreach ($attributes as $key => $value) {
|
||||
$this->xml .= ' '.$key.'="'.htmlentities($value).'"';
|
||||
}
|
||||
$this->xml .= " />\n";
|
||||
}
|
||||
function pop() {
|
||||
$element = array_pop($this->stack);
|
||||
$this->_indent();
|
||||
$this->xml .= "</$element>\n";
|
||||
}
|
||||
function getXml() {
|
||||
return $this->xml;
|
||||
}
|
||||
}
|
||||
|
||||
/* Test
|
||||
|
||||
$xml = new XmlWriter();
|
||||
$array = array(
|
||||
array('monkey', 'banana', 'Jim'),
|
||||
array('hamster', 'apples', 'Kola'),
|
||||
array('turtle', 'beans', 'Berty'),
|
||||
);
|
||||
|
||||
$xml->push('zoo');
|
||||
foreach ($array as $animal) {
|
||||
$xml->push('animal', array('species' => $animal[0]));
|
||||
$xml->element('name', $animal[2]);
|
||||
$xml->element('food', $animal[1]);
|
||||
$xml->pop();
|
||||
}
|
||||
$xml->pop();
|
||||
|
||||
print $xml->getXml();
|
||||
|
||||
*/
|
||||
?>
|
||||
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
<?php
|
||||
//@description:CFGLED Configuration journaux
|
||||
$_GET=array (
|
||||
'gDossier' => '42',
|
||||
'ac' => 'PARAM/CFGLED',
|
||||
'sa' => 'detail',
|
||||
'p_jrn' => '1',
|
||||
);
|
||||
$_POST=array (
|
||||
);
|
||||
$_POST['gDossier']=$gDossierLogInput;
|
||||
$_GET['gDossier']=$gDossierLogInput;
|
||||
$_REQUEST=array_merge($_GET,$_POST);
|
||||
include 'cfgledger.inc.php';
|
||||
|
|
@ -1,32 +0,0 @@
|
|||
<?php
|
||||
//@description:COMPANY Sauve donnée companie
|
||||
$_GET=array (
|
||||
'gDossier' => '42',
|
||||
'ac' => 'PARAM/COMPANY',
|
||||
);
|
||||
$_POST=array (
|
||||
'gDossier' => '42',
|
||||
'p_name' => 'NOALYSS',
|
||||
'p_tel' => '',
|
||||
'p_fax' => '',
|
||||
'p_street' => 'Rue de l\'espoir',
|
||||
'p_no' => '14',
|
||||
'p_cp' => '1090',
|
||||
'p_Commune' => 'Jette',
|
||||
'p_pays' => 'Belgique',
|
||||
'p_tva' => 'BE99999999',
|
||||
'p_compta' => 'nu',
|
||||
'p_stock' => 'N',
|
||||
'p_strict' => 'Y',
|
||||
'p_tva_use' => 'Y',
|
||||
'p_pj' => 'Y',
|
||||
'p_date_suggest' => 'Y',
|
||||
'p_check_periode' => 'N',
|
||||
'p_alphanum' => 'N',
|
||||
'p_updlab' => 'N',
|
||||
'record_company' => 'Sauve',
|
||||
);
|
||||
$_POST['gDossier']=$gDossierLogInput;
|
||||
$_GET['gDossier']=$gDossierLogInput;
|
||||
$_REQUEST=array_merge($_GET,$_POST);
|
||||
include 'company.inc.php';
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
<?php
|
||||
//@description:ODS utilisation code AD
|
||||
$_GET=array (
|
||||
'gDossier' => '42',
|
||||
'ac' => 'ODS',
|
||||
'go' => 'aller',
|
||||
);
|
||||
$_POST=array (
|
||||
);
|
||||
$_POST['gDossier']=$gDossierLogInput;
|
||||
$_GET['gDossier']=$gDossierLogInput;
|
||||
$_REQUEST=array_merge($_GET,$_POST);
|
||||
|
|
@ -1,44 +0,0 @@
|
|||
<?php
|
||||
//@description:ODS sauver opération
|
||||
$_GET=array (
|
||||
'gDossier' => '42',
|
||||
'ac' => 'COMPTA/MENUODS/ODS',
|
||||
);
|
||||
$_POST=array (
|
||||
'gDossier' => '42',
|
||||
'ac' => 'COMPTA/MENUODS/ODS',
|
||||
'p_jrn' => '4',
|
||||
'e_date' => '14.11.2014',
|
||||
'e_pj' => 'ODS1',
|
||||
'e_pj_suggest' => 'ODS1',
|
||||
'desc' => 'TVA',
|
||||
'nb_item' => '5',
|
||||
'jrn_type' => 'ODS',
|
||||
'qc_0' => '',
|
||||
'poste0' => '4519',
|
||||
'ld0' => 'Compte TVA',
|
||||
'amount0' => '250',
|
||||
'qc_1' => '',
|
||||
'poste1' => '6700',
|
||||
'ld1' => 'Paiement TVA',
|
||||
'amount1' => '250',
|
||||
'ck1' => '',
|
||||
'qc_2' => '',
|
||||
'poste2' => '',
|
||||
'ld2' => '',
|
||||
'amount2' => '',
|
||||
'qc_3' => '',
|
||||
'poste3' => '',
|
||||
'ld3' => '',
|
||||
'amount3' => '',
|
||||
'qc_4' => '',
|
||||
'poste4' => '',
|
||||
'ld4' => '',
|
||||
'amount4' => '',
|
||||
'jrn_concerned' => '',
|
||||
'summary' => 'Sauvez',
|
||||
);
|
||||
$_POST['gDossier']=$gDossierLogInput;
|
||||
$_GET['gDossier']=$gDossierLogInput;
|
||||
$_REQUEST=array_merge($_GET,$_POST);
|
||||
include 'compta_ods.inc.php';
|
||||
|
|
@ -1,35 +0,0 @@
|
|||
<?php
|
||||
//@description:ODS
|
||||
$_GET=array (
|
||||
'gDossier' => '42',
|
||||
'ac' => 'COMPTA/MENUODS/ODS',
|
||||
);
|
||||
$_POST=array (
|
||||
'ac' => 'COMPTA/MENUODS/ODS',
|
||||
'e_date' => '14.11.2014',
|
||||
'desc' => 'TVA',
|
||||
'period' => '102',
|
||||
'e_pj' => 'ODS1',
|
||||
'e_pj_suggest' => 'ODS1',
|
||||
'mt' => '1415997352.5804',
|
||||
'e_comm' => 'TVA',
|
||||
'jrn_type' => 'ODS',
|
||||
'p_jrn' => '4',
|
||||
'nb_item' => '5',
|
||||
'jrn_concerned' => '',
|
||||
'gDossier' => '42',
|
||||
'poste0' => '4519',
|
||||
'ld0' => 'Compte TVA',
|
||||
'amount0' => '250',
|
||||
'poste1' => '6700',
|
||||
'ld1' => 'Paiement TVA',
|
||||
'amount1' => '250',
|
||||
'ck1' => '',
|
||||
'opd_name' => 'Paiement TVA',
|
||||
'od_description' => '',
|
||||
'save' => 'Confirmer',
|
||||
);
|
||||
$_POST['gDossier']=$gDossierLogInput;
|
||||
$_GET['gDossier']=$gDossierLogInput;
|
||||
$_REQUEST=array_merge($_GET,$_POST);
|
||||
include 'compta_ods.inc.php';
|
||||
|
|
@ -1,12 +0,0 @@
|
|||
<?php
|
||||
//@description:ODS
|
||||
$_GET=array (
|
||||
'gDossier' => '42',
|
||||
'ac' => 'COMPTA/MENUODS/ODS',
|
||||
);
|
||||
$_POST=array (
|
||||
);
|
||||
$_POST['gDossier']=$gDossierLogInput;
|
||||
$_GET['gDossier']=$gDossierLogInput;
|
||||
$_REQUEST=array_merge($_GET,$_POST);
|
||||
include 'compta_ods.inc.php';
|
||||
|
|
@ -1,67 +0,0 @@
|
|||
<?php
|
||||
//@description:ODS enregistrement avec operation predef
|
||||
$_GET=array (
|
||||
'action' => 'use_opd',
|
||||
'p_jrn_predef' => '4',
|
||||
'ac' => 'COMPTA/MENUODS/ODS',
|
||||
'gDossier' => '42',
|
||||
'pre_def' => '2',
|
||||
);
|
||||
$_POST=array (
|
||||
'gDossier' => '42',
|
||||
'ac' => 'COMPTA/MENUODS/ODS',
|
||||
'p_jrn' => '4',
|
||||
'e_date' => '14.11.2014',
|
||||
'e_pj' => 'ODS4',
|
||||
'e_pj_suggest' => 'ODS4',
|
||||
'desc' => 'Paiement TVA',
|
||||
'nb_item' => '10',
|
||||
'jrn_type' => 'ODS',
|
||||
'qc_0' => '',
|
||||
'poste0' => '4519',
|
||||
'ld0' => 'Compte TVA',
|
||||
'amount0' => '250.0000',
|
||||
'qc_1' => '',
|
||||
'poste1' => '6700',
|
||||
'ld1' => 'Impôts et précomptes dus ou versés',
|
||||
'amount1' => '250.0000',
|
||||
'ck1' => '',
|
||||
'qc_2' => '',
|
||||
'poste2' => '',
|
||||
'ld2' => '',
|
||||
'amount2' => '',
|
||||
'qc_3' => '',
|
||||
'poste3' => '',
|
||||
'ld3' => '',
|
||||
'amount3' => '',
|
||||
'qc_4' => '',
|
||||
'poste4' => '',
|
||||
'ld4' => '',
|
||||
'amount4' => '',
|
||||
'qc_5' => '',
|
||||
'poste5' => '',
|
||||
'ld5' => '',
|
||||
'amount5' => '',
|
||||
'qc_6' => '',
|
||||
'poste6' => '',
|
||||
'ld6' => '',
|
||||
'amount6' => '',
|
||||
'qc_7' => '',
|
||||
'poste7' => '',
|
||||
'ld7' => '',
|
||||
'amount7' => '',
|
||||
'qc_8' => '',
|
||||
'poste8' => '',
|
||||
'ld8' => '',
|
||||
'amount8' => '',
|
||||
'qc_9' => '',
|
||||
'poste9' => '',
|
||||
'ld9' => '',
|
||||
'amount9' => '',
|
||||
'jrn_concerned' => '',
|
||||
'summary' => 'Sauvez',
|
||||
);
|
||||
$_POST['gDossier']=$gDossierLogInput;
|
||||
$_GET['gDossier']=$gDossierLogInput;
|
||||
$_REQUEST=array_merge($_GET,$_POST);
|
||||
include 'compta_ods.inc.php';
|
||||
|
|
@ -1,38 +0,0 @@
|
|||
<?php
|
||||
//@description:ODS utilisation opération prédéfinie pour OD
|
||||
$_GET=array (
|
||||
'action' => 'use_opd',
|
||||
'p_jrn_predef' => '4',
|
||||
'ac' => 'COMPTA/MENUODS/ODS',
|
||||
'gDossier' => '42',
|
||||
'pre_def' => '2',
|
||||
);
|
||||
$_POST=array (
|
||||
'ac' => 'COMPTA/MENUODS/ODS',
|
||||
'e_date' => '14.11.2014',
|
||||
'desc' => 'Paiement TVA',
|
||||
'period' => '102',
|
||||
'e_pj' => 'ODS4',
|
||||
'e_pj_suggest' => 'ODS4',
|
||||
'mt' => '1415997404.8993',
|
||||
'e_comm' => 'Paiement TVA',
|
||||
'jrn_type' => 'ODS',
|
||||
'p_jrn' => '4',
|
||||
'nb_item' => '10',
|
||||
'jrn_concerned' => '',
|
||||
'gDossier' => '42',
|
||||
'poste0' => '4519',
|
||||
'ld0' => 'Compte TVA',
|
||||
'amount0' => '250.0000',
|
||||
'poste1' => '6700',
|
||||
'ld1' => 'Impôts et précomptes dus ou versés',
|
||||
'amount1' => '250.0000',
|
||||
'ck1' => '',
|
||||
'opd_name' => '',
|
||||
'od_description' => '',
|
||||
'save' => 'Confirmer',
|
||||
);
|
||||
$_POST['gDossier']=$gDossierLogInput;
|
||||
$_GET['gDossier']=$gDossierLogInput;
|
||||
$_REQUEST=array_merge($_GET,$_POST);
|
||||
include 'compta_ods.inc.php';
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
<?php
|
||||
//@description:ACHISTO
|
||||
$_GET=array (
|
||||
'gDossier' => '42',
|
||||
'ac' => 'COMPTA/MENUACH/ACHISTO',
|
||||
'go' => 'aller',
|
||||
);
|
||||
$_POST=array (
|
||||
);
|
||||
$_POST['gDossier']=$gDossierLogInput;
|
||||
$_GET['gDossier']=$gDossierLogInput;
|
||||
$_REQUEST=array_merge($_GET,$_POST);
|
||||
include 'history_operation.inc.php';
|
||||
|
|
@ -1,14 +0,0 @@
|
|||
<?php
|
||||
//@description:bc
|
||||
$_GET=array (
|
||||
'gDossier' => '42',
|
||||
'ctl' => 'div_new_card',
|
||||
'fd_id' => '2',
|
||||
'op' => 'bc',
|
||||
);
|
||||
$_POST=array (
|
||||
);
|
||||
$_POST['gDossier']=$gDossierLogInput;
|
||||
$_GET['gDossier']=$gDossierLogInput;
|
||||
$_REQUEST=array_merge($_GET,$_POST);
|
||||
include 'ajax_card.php';
|
||||
|
|
@ -1,30 +0,0 @@
|
|||
<?php
|
||||
//@description:sc Ajout d'une fiche
|
||||
$_GET=array (
|
||||
);
|
||||
$_POST=array (
|
||||
'gDossier' => '42',
|
||||
'ctl' => 'div_new_card',
|
||||
'fd_id' => '3',
|
||||
'av_text1' => 'caisse',
|
||||
'av_text3' => '',
|
||||
'av_text4' => '',
|
||||
'av_text12' => '',
|
||||
'av_text5' => '',
|
||||
'av_text5_bt' => 'Recherche',
|
||||
'av_text13' => '',
|
||||
'av_text14' => '',
|
||||
'av_text15' => '',
|
||||
'av_text16' => '',
|
||||
'av_text17' => '',
|
||||
'av_text18' => '',
|
||||
'av_text23' => '',
|
||||
'sc' => 'Sauve',
|
||||
'op' => 'sc',
|
||||
);
|
||||
$_POST['gDossier']=$gDossierLogInput;
|
||||
$_GET['gDossier']=$gDossierLogInput;
|
||||
$_REQUEST=array_merge($_GET,$_POST);
|
||||
ini_set('disable_functions', 'exit,die,header');
|
||||
include 'ajax_card.php';
|
||||
?>
|
||||
|
|
@ -1,26 +0,0 @@
|
|||
<?php
|
||||
//@description:HIST Historique operation du 1.1.2014 au 31.12.2014
|
||||
$_GET=array (
|
||||
'gDossier' => '37',
|
||||
'ledger_type' => 'ALL',
|
||||
'ac' => 'HIST',
|
||||
'nb_jrn' => '0',
|
||||
'date_start' => '01.01.2014',
|
||||
'date_end' => '31.12.2014',
|
||||
'date_paid_start' => '',
|
||||
'date_paid_end' => '',
|
||||
'desc' => '',
|
||||
'amount_min' => '0',
|
||||
'amount_max' => '0',
|
||||
'qcode' => '',
|
||||
'accounting' => '',
|
||||
'search' => 'Rechercher',
|
||||
);
|
||||
$_POST=array (
|
||||
);
|
||||
$_POST['gDossier']=$gDossierLogInput;
|
||||
$_GET['gDossier']=$gDossierLogInput;
|
||||
$_REQUEST=array_merge($_GET,$_POST);
|
||||
global $http;
|
||||
$http=new HttpInput();
|
||||
include 'history_operation.inc.php';
|
||||
|
|
@ -1,13 +0,0 @@
|
|||
<?php
|
||||
//@description:VERIFBIL
|
||||
$_GET=array (
|
||||
'gDossier' => '27',
|
||||
'ac' => 'COMPTA/ADV/VERIFBIL',
|
||||
'go' => 'aller',
|
||||
);
|
||||
$_POST=array (
|
||||
);
|
||||
$_POST['gDossier']=$gDossierLogInput;
|
||||
$_GET['gDossier']=$gDossierLogInput;
|
||||
$_REQUEST=array_merge($_GET,$_POST);
|
||||
include 'verif_bilan.inc.php';
|
||||
Loading…
Add table
Add a link
Reference in a new issue