mirror of
https://github.com/YunoHost-Apps/noalyss_ynh.git
synced 2024-09-03 19:46:20 +02:00
51 lines
2.1 KiB
PHP
51 lines
2.1 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 this file is used for the follow up of the customer (mail, meeting...)
|
|
* - sb = detail
|
|
* - sc = sv
|
|
* - sd = this parameter is used here
|
|
* - $cn = database connection
|
|
*/
|
|
if ( ! defined ('ALLOWED') ) die('Appel direct ne sont pas permis');
|
|
require_once NOALYSS_INCLUDE.'/class_follow_up.php';
|
|
|
|
/**
|
|
*\note problem with ShowActionList, this function is local
|
|
* to the file action.inc.php. And this function must different for each
|
|
* suivi
|
|
*/
|
|
$sub_action=(isset($_REQUEST['sa']))?$_REQUEST['sa']:"list";
|
|
$ag_id=(isset($_REQUEST['ag_id']))?$_REQUEST['ag_id']:0;
|
|
if (! isset($_GET['submit_query'])) {$_REQUEST['closed_action']=1;$_GET['closed_action']=1;}
|
|
|
|
$p_action=$_REQUEST['ac'];
|
|
$base="ac=$p_action&sc=sv&sb=detail&f_id=".$_REQUEST['f_id']."&".HtmlInput::request_to_string(array("closed_action","remind_date_end","remind_date","sag_ref","only_internal","state","gDossier","qcode","ag_dest","query","tdoc","date_start","date_end","hsstate","searchtag","sb","sc"),"");
|
|
$retour=HtmlInput::button_anchor('Retour','?'.dossier::get().'&'.$base);
|
|
$fiche=new Fiche($cn,$_REQUEST['f_id']);
|
|
|
|
$_GET['qcode']=$fiche->get_quick_code();
|
|
$_REQUEST['qcode'] = $fiche->get_quick_code();
|
|
|
|
echo '<div class="content">';
|
|
require_once NOALYSS_INCLUDE.'/action.common.inc.php';
|
|
echo '</div>';
|