mirror of
https://github.com/YunoHost-Apps/noalyss_ynh.git
synced 2024-09-03 19:46:20 +02:00
66 lines
1.7 KiB
PHP
66 lines
1.7 KiB
PHP
|
<?php
|
||
|
/*
|
||
|
* This file is part of NOALYSS.
|
||
|
*
|
||
|
* NOALYSS is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation; either version 2 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*
|
||
|
* NOALYSS is distributed in the hope that it will be useful,
|
||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
* GNU General Public License for more details.
|
||
|
*
|
||
|
* You should have received a copy of the GNU General Public License
|
||
|
* along with NOALYSS; if not, write to the Free Software
|
||
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||
|
*/
|
||
|
|
||
|
// Copyright Author Dany De Bontridder danydb@aevalys.eu
|
||
|
|
||
|
/*!\file
|
||
|
* \brief respond ajax request, the get contains
|
||
|
* the value :
|
||
|
* - l for ledger
|
||
|
* - gDossier
|
||
|
* Must return at least tva, htva and tvac
|
||
|
|
||
|
*/
|
||
|
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';
|
||
|
|
||
|
// Check if the needed field does exist
|
||
|
extract ($_GET);
|
||
|
foreach (array('l','gDossier') as $a)
|
||
|
{
|
||
|
if ( ! isset (${$a}) )
|
||
|
{
|
||
|
echo "error $a is not set ";
|
||
|
exit();
|
||
|
}
|
||
|
|
||
|
}
|
||
|
if ( is_numeric($l) == false )
|
||
|
{
|
||
|
exit();
|
||
|
}
|
||
|
|
||
|
|
||
|
$Ledger=new Acc_Ledger($cn,$l);
|
||
|
$prop=$Ledger->get_propertie();
|
||
|
$pj_seq=$Ledger->guess_pj();
|
||
|
$string='{"pj":"'.$pj_seq.'"}';
|
||
|
|
||
|
header("Content-type: text/json; charset: utf8",true);
|
||
|
echo $string;
|
||
|
|
||
|
|
||
|
?>
|
||
|
|