dolibarr/htdocs/admin/workflow.php

161 lines
4.1 KiB
PHP
Raw Normal View History

<?php
/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004 Eric Seigne <eric.seigne@ryxeo.com>
2012-02-13 09:45:38 +01:00
* Copyright (C) 2005-2012 Laurent Destailleur <eldy@users.sourceforge.net>
* Copyright (C) 2005-2012 Regis Houssin <regis@dolibarr.fr>
*
* This program 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.
*
* This program 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
2011-08-01 00:21:57 +02:00
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
/**
2011-08-08 18:00:16 +02:00
* \file htdocs/admin/workflow.php
* \ingroup company
2011-08-08 18:00:16 +02:00
* \brief Workflows setup page
*/
require("../main.inc.php");
2011-10-24 11:25:54 +02:00
require_once(DOL_DOCUMENT_ROOT."/core/lib/admin.lib.php");
$langs->load("admin");
$langs->load("workflow");
2012-02-13 09:45:38 +01:00
if (! $user->admin) accessforbidden();
$action = GETPOST('action', 'alpha');
/*
* Actions
*/
2012-02-13 09:45:38 +01:00
if (preg_match('/set(.*)/',$action,$reg))
{
2012-02-13 10:02:28 +01:00
if (! dolibarr_set_const($db, $reg[1], 1, 'chaine', 0, '', $conf->entity) > 0)
{
dol_print_error($db);
}
}
2012-02-13 09:45:38 +01:00
if (preg_match('/del(.*)/',$action,$reg))
{
2012-02-13 10:02:28 +01:00
if (! dolibarr_del_const($db, $reg[1], $conf->entity) > 0)
{
dol_print_error($db);
}
}
/*
* View
*/
llxHeader('',$langs->trans("WorkflowSetup"),'');
$linkback='<a href="'.DOL_URL_ROOT.'/admin/modules.php">'.$langs->trans("BackToModuleList").'</a>';
print_fiche_titre($langs->trans("WorkflowSetup"),$linkback,'setup');
print $langs->trans("WorkflowDesc").'<br>';
print "<br>";
2012-02-13 10:02:28 +01:00
// List of workflow we can enable
2012-02-13 09:45:38 +01:00
print '<table class="noborder" width="100%">'."\n";
print '<tr class="liste_titre">'."\n";
print ' <td>'.$langs->trans("Description").'</td>';
print ' <td align="center">'.$langs->trans("Status").'</td>';
print "</tr>\n";
clearstatcache();
$workflowcodes=array();
$workflow=array(
'propal' => array(
'order' => array('WORKFLOW_ORDER_CLASSIFY_BILLED_PROPAL')
),
'order' => array(
'propal' => array('WORKFLOW_PROPAL_AUTOCREATE_ORDER')
,'invoice' => array('WORKFLOW_INVOICE_CLASSIFY_BILLED_ORDER')
),
'invoice' => array (
'order' => array('WORKFLOW_ORDER_AUTOCREATE_INVOICE')
//,'contract' => array('WORKFLOW_CONTRACT_AUTOCREATE_INVOICE')
//, 'propal' => array('WORKFLOW_PROPAL_AUTOCREATE_INVOICE')
)
);
2012-06-24 19:43:38 +02:00
if (! empty($conf->modules_parts['workflow']) && is_array($conf->modules_parts['workflow'])) $workflow = array_merge($workflow, $conf->modules_parts['workflow']);
foreach($workflow as $child => $parents)
{
if ($conf->$child->enabled)
{
$langs->Load($child.'@'.$child);
2012-06-24 19:43:38 +02:00
foreach($parents as $parent => $actions)
{
if ($conf->$parent->enabled)
{
foreach($actions as $action)
{
2012-07-08 15:50:27 +02:00
$workflowcodes[$child][] = $action;
}
}
}
}
}
if (count($workflowcodes) > 0)
{
2012-07-08 15:50:27 +02:00
foreach($workflowcodes as $key => $actions)
{
2012-07-08 15:50:27 +02:00
foreach($actions as $action)
{
2012-07-08 15:50:27 +02:00
$var = !$var;
print "<tr ".$bc[$var].">\n";
print "<td>".img_object('', $key).$langs->trans('desc'.$action)."</td>\n";
print '<td align="center">';
if ($conf->use_javascript_ajax)
2012-02-13 09:45:38 +01:00
{
2012-07-08 15:50:27 +02:00
print ajax_constantonoff($action);
2012-02-13 09:45:38 +01:00
}
else
{
2012-07-08 15:50:27 +02:00
if (! empty($conf->global->$action))
{
print '<a href="'.$_SERVER['PHP_SELF'].'?action=del'.$action.'">';
print img_picto($langs->trans("Activated"),'switch_on');
print '</a>';
}
else
{
print '<a href="'.$_SERVER['PHP_SELF'].'?action=set'.$action.'">';
print img_picto($langs->trans("Disabled"),'switch_off');
print '</a>';
}
2012-02-13 09:45:38 +01:00
}
2012-07-08 15:50:27 +02:00
print '</td>';
print '</tr>';
}
}
}
else
{
print '<tr><td colspan="3">'.$langs->trans("ThereIsNoWorkflowToModify");
}
print '</table>';
2012-02-13 10:02:28 +01:00
2012-02-13 09:45:38 +01:00
llxFooter();
$db->close();
?>