mirror of
https://github.com/YunoHost-Apps/noalyss_ynh.git
synced 2024-09-03 19:46:20 +02:00
3a905a4a87
Update files from sources with last update on noalyss.eu
32 lines
718 B
PHP
32 lines
718 B
PHP
<?php
|
|
//This file is part of NOALYSS and is under GPL
|
|
//see licence.txt
|
|
/**
|
|
*@file
|
|
*@brief Print the crossed balance between 2 plan
|
|
*@see Anc_Balance_Double
|
|
*/
|
|
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
|
|
require_once NOALYSS_INCLUDE.'/class/anc_balance_double.class.php';
|
|
$bc = new Anc_Balance_Double($cn);
|
|
$bc->get_request();
|
|
echo '<form method="get">';
|
|
echo $bc->display_form();
|
|
echo '</form>';
|
|
if (isset($_GET['result']))
|
|
{
|
|
$result=$bc->display_html();
|
|
if ($bc->has_data > 0)
|
|
{
|
|
echo $bc->show_button();
|
|
echo $result;
|
|
}
|
|
else
|
|
{
|
|
echo '<p class="notice">';
|
|
echo _('Aucune donnée trouvée');
|
|
echo '</p>';
|
|
}
|
|
|
|
}
|
|
?>
|