mirror of
https://github.com/YunoHost-Apps/noalyss_ynh.git
synced 2024-09-03 19:46:20 +02:00
50 lines
1.6 KiB
PHP
50 lines
1.6 KiB
PHP
|
<?php
|
||
|
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
|
||
|
require_once NOALYSS_INCLUDE.'/class_idate.php';
|
||
|
require_once NOALYSS_INCLUDE.'/class_itext.php';
|
||
|
require_once NOALYSS_INCLUDE.'/constant.php';
|
||
|
require_once NOALYSS_INCLUDE.'/ac_common.php';
|
||
|
require_once NOALYSS_INCLUDE.'/class_user.php';
|
||
|
require_once NOALYSS_INCLUDE.'/class_acc_report.php';
|
||
|
require_once NOALYSS_INCLUDE.'/class_periode.php';
|
||
|
require_once NOALYSS_INCLUDE.'/user_menu.php';
|
||
|
require_once NOALYSS_INCLUDE.'/class_dossier.php';
|
||
|
require_once NOALYSS_INCLUDE.'/class_todo_list.php';
|
||
|
require_once NOALYSS_INCLUDE.'/class_itextarea.php';
|
||
|
require_once NOALYSS_INCLUDE.'/class_calendar.php';
|
||
|
require_once NOALYSS_INCLUDE.'/class_acc_ledger.php';
|
||
|
require_once NOALYSS_INCLUDE.'/class_follow_up.php';
|
||
|
|
||
|
echo '<div class="content">';
|
||
|
global $g_user;
|
||
|
/* others report */
|
||
|
$cal=new Calendar();
|
||
|
$cal->get_preference();
|
||
|
|
||
|
$obj=sprintf("{gDossier:%d,invalue:'%s',outdiv:'%s','distype':'%s'}",
|
||
|
dossier::id(),'per','calendar_zoom_div','cal');
|
||
|
$Operation=new Follow_Up($cn);
|
||
|
$last_operation=$Operation->get_today();
|
||
|
$late_operation=$Operation->get_late();
|
||
|
|
||
|
$Ledger=new Acc_Ledger($cn,0);
|
||
|
$last_ledger=array();
|
||
|
$last_ledger=$Ledger->get_last(20);
|
||
|
|
||
|
// Supplier late and now
|
||
|
$supplier_now=$Ledger->get_supplier_now();
|
||
|
$supplier_late=$Ledger->get_supplier_late();
|
||
|
|
||
|
// Customer late and now
|
||
|
$customer_now=$Ledger->get_customer_now();
|
||
|
$customer_late=$Ledger->get_customer_late();
|
||
|
|
||
|
ob_start();
|
||
|
require_once NOALYSS_INCLUDE.'/template/dashboard.php';
|
||
|
$ret=ob_get_contents();
|
||
|
ob_end_clean();
|
||
|
echo $ret;
|
||
|
|
||
|
echo '</div>';
|
||
|
?>
|