diff --git a/modules/visa/resetVisaWF.php b/modules/visa/resetVisaWF.php deleted file mode 100644 index 4e11b9d1cf24079e54e9b04cbcea8841d78b7074..0000000000000000000000000000000000000000 --- a/modules/visa/resetVisaWF.php +++ /dev/null @@ -1,63 +0,0 @@ -<?php - /* - * Copyright 2008-2015 Maarch and Document Image Solutions - * - * This file is part of Maarch Framework. - * - * Maarch Framework 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 3 of the License, or - * (at your option) any later version. - * - * Maarch Framework 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 Maarch Framework. If not, see <http://www.gnu.org/licenses/>. - */ - - /** - * @brief Save the visa diffusion lis - * - * Save the visa diffusion list - * - * @file - * @author Nicolas Couture <couture@docimsol.com> - * @date $date$ - * @version $Revision$ - * @ingroup apps - */ - require_once "modules" . DIRECTORY_SEPARATOR . "visa" . DIRECTORY_SEPARATOR - . "class" . DIRECTORY_SEPARATOR - . "class_modules_tools.php"; - - - $res_id = $_REQUEST['res_id']; - $coll_id = $_REQUEST['coll_id']; - - - $_SESSION['error_visa'] = ''; - - $conseillers = explode('#',$_REQUEST['conseillers']); - $consignes = explode('#',$_REQUEST['consignes']); - $dates = explode('#',$_REQUEST['dates']); - $list_sign = explode('#',$_REQUEST['list_sign']); - - $visa = new visa(); - - $_SESSION['visa_wf']['diff_list']['visa']['users'] = array(); - $_SESSION['visa_wf']['diff_list']['sign']['users'] = array(); - - - $visa->saveWorkflow($res_id, $coll_id, $_SESSION['visa_wf']['diff_list'], 'VISA_CIRCUIT'); - - /*if ($_POST['fromDetail'] == "Y") { - $visa->setStatusVisa($res_id, $coll_id); - }*/ - $_SESSION['info'] = "Réinitialisation du circuit effectuée"; - - echo "{status : 1}"; - exit(); -?> \ No newline at end of file diff --git a/modules/visa/saveVisaWF.php b/modules/visa/saveVisaWF.php deleted file mode 100644 index ef49546a6bdd128a5e8033b27d1d7d5391fd7998..0000000000000000000000000000000000000000 --- a/modules/visa/saveVisaWF.php +++ /dev/null @@ -1,104 +0,0 @@ -<?php - /* - * Copyright 2008-2015 Maarch and Document Image Solutions - * - * This file is part of Maarch Framework. - * - * Maarch Framework 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 3 of the License, or - * (at your option) any later version. - * - * Maarch Framework 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 Maarch Framework. If not, see <http://www.gnu.org/licenses/>. - */ - - /** - * @brief Save the visa diffusion lis - * - * Save the visa diffusion list - * - * @file - * @author Nicolas Couture <couture@docimsol.com> - * @date $date$ - * @version $Revision$ - * @ingroup apps - */ - require_once "modules" . DIRECTORY_SEPARATOR . "visa" . DIRECTORY_SEPARATOR - . "class" . DIRECTORY_SEPARATOR - . "class_modules_tools.php"; - - - $res_id = $_REQUEST['res_id']; - $coll_id = $_REQUEST['coll_id']; - - if ( - isset($_REQUEST['cons_empty']) - && $_REQUEST['cons_empty'] <> '' - && $_REQUEST['cons_empty'] == 'true' - ) { - echo "{status : 2}"; - $_SESSION['error_visa'] = 'Sélectionner au moins un utilisateur'; - exit(); - } else { - $_SESSION['error_visa'] = ''; - } - $conseillers = explode('#',$_REQUEST['conseillers']); - $consignes = explode('#',$_REQUEST['consignes']); - $dates = explode('#',$_REQUEST['dates']); - $list_sign = explode('#',$_REQUEST['list_sign']); - - $visa = new visa(); - - $_SESSION['visa_wf']['diff_list']['visa']['users'] = array(); - $_SESSION['visa_wf']['diff_list']['sign']['users'] = array(); - - $nbConseillers = count($conseillers); - - for ($i = 0; $i < $nbConseillers - 1; $i++){ - if ($list_sign[$i] == 0 && $nbConseillers > 2){ - array_push( - $_SESSION['visa_wf']['diff_list']['visa']['users'], - array( - 'user_id' => $conseillers[$i], - 'process_comment' => $consignes[$i], - 'process_date' => $dates[$i], - 'viewed' => 0, - 'visible' => 'Y', - 'difflist_type' => 'VISA_CIRCUIT' - ) - ); - } - else { - array_push( - $_SESSION['visa_wf']['diff_list']['sign']['users'], - array( - 'user_id' => $conseillers[$i], - 'process_comment' => $consignes[$i], - 'process_date' => $dates[$i], - 'viewed' => 0, - 'visible' => 'Y', - 'difflist_type' => 'VISA_CIRCUIT' - ) - ); - } - } - - $visa->saveWorkflow($res_id, $coll_id, $_SESSION['visa_wf']['diff_list'], 'VISA_CIRCUIT'); - - //LOAD TOOLBAR BADGE - $toolbarBagde_script = $_SESSION['config']['businessappurl'] . 'index.php?display=true&module=visa&page=load_toolbar_visa&origin=parent&resId='.$res_id.'&collId='.$coll_id; - $js .='loadToolbarBadge(\'visa_tab\',\''.$toolbarBagde_script.'\');'; - - /*if ($_POST['fromDetail'] == "Y") { - $visa->setStatusVisa($res_id, $coll_id); - }*/ - - echo "{status : 1, exec_js : '".addslashes($js)."'}"; - exit(); -?> \ No newline at end of file