dolibarr/htdocs/admin/workflow.php

315 lines
9.6 KiB
PHP
Raw Normal View History

<?php
2020-09-11 14:15:10 +02:00
/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
* Copyright (C) 2004 Eric Seigne <eric.seigne@ryxeo.com>
2021-02-15 16:35:51 +01:00
* Copyright (C) 2005-2021 Laurent Destailleur <eldy@users.sourceforge.net>
2020-09-11 14:15:10 +02:00
* Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
*
* 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 3 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
2019-09-23 21:55:30 +02:00
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
/**
2020-09-11 14:15:10 +02:00
* \file htdocs/admin/workflow.php
* \ingroup company
* \brief Workflows setup page
*/
2022-09-07 20:08:59 +02:00
// Load Dolibarr environment
require '../main.inc.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
2020-09-11 14:15:10 +02:00
// security check
2021-02-26 22:04:03 +01:00
if (!$user->admin) {
accessforbidden();
}
2012-02-13 09:45:38 +01:00
2020-09-11 14:15:10 +02:00
// Load translation files required by the page
$langs->loadLangs(array("admin", "workflow", "propal", "workflow", "orders", "supplier_proposal", "receptions", "errors", 'sendings'));
2020-09-11 14:15:10 +02:00
2020-09-16 19:39:50 +02:00
$action = GETPOST('action', 'aZ09');
2019-05-10 18:19:10 +02:00
/*
* Actions
*/
2019-05-10 18:19:10 +02:00
2020-09-11 14:15:10 +02:00
if (preg_match('/set(.*)/', $action, $reg)) {
if (!dolibarr_set_const($db, $reg[1], '1', 'chaine', 0, '', $conf->entity) > 0) {
dol_print_error($db);
}
}
2020-09-11 14:15:10 +02:00
if (preg_match('/del(.*)/', $action, $reg)) {
if (!dolibarr_set_const($db, $reg[1], '0', 'chaine', 0, '', $conf->entity) > 0) {
dol_print_error($db);
}
}
2012-02-13 10:02:28 +01:00
// List of workflow we can enable
clearstatcache();
$workflowcodes = array(
2020-09-11 14:15:10 +02:00
// Automatic creation
'WORKFLOW_PROPAL_AUTOCREATE_ORDER'=>array(
'family'=>'create',
'position'=>10,
2022-08-31 21:55:55 +02:00
'enabled'=>(isModEnabled("propal") && isModEnabled('commande')),
2020-09-11 14:15:10 +02:00
'picto'=>'order'
),
'WORKFLOW_ORDER_AUTOCREATE_INVOICE'=>array(
'family'=>'create',
'position'=>20,
2022-08-31 21:55:55 +02:00
'enabled'=>(isModEnabled('commande') && isModEnabled('facture')),
2020-09-11 14:15:10 +02:00
'picto'=>'bill'
),
'WORKFLOW_TICKET_CREATE_INTERVENTION' => array (
2022-02-10 17:47:40 +01:00
'family'=>'create',
'position'=>25,
2022-09-25 06:15:47 +02:00
'enabled'=>(isModEnabled('ticket') && isModEnabled('ficheinter')),
2022-02-10 17:47:40 +01:00
'picto'=>'ticket'
),
2020-09-11 14:15:10 +02:00
'separator1'=>array('family'=>'separator', 'position'=>25, 'title'=>'', 'enabled'=>((isModEnabled("propal") && isModEnabled('commande')) || (isModEnabled('commande') && isModEnabled('facture')) || (isModEnabled('ticket') && isModEnabled('ficheinter')))),
2020-09-11 14:15:10 +02:00
// Automatic classification of proposal
2020-09-11 14:15:10 +02:00
'WORKFLOW_ORDER_CLASSIFY_BILLED_PROPAL'=>array(
'family'=>'classify_proposal',
'position'=>30,
2022-08-31 21:55:55 +02:00
'enabled'=>(isModEnabled("propal") && isModEnabled('commande')),
2020-09-11 14:15:10 +02:00
'picto'=>'propal',
'warning'=>''
),
'WORKFLOW_INVOICE_CLASSIFY_BILLED_PROPAL'=>array(
'family'=>'classify_proposal',
'position'=>31,
2022-08-23 20:01:34 +02:00
'enabled'=>(isModEnabled("propal") && isModEnabled('facture')),
2020-09-11 14:15:10 +02:00
'picto'=>'propal',
'warning'=>''
),
// Automatic classification of order
'WORKFLOW_ORDER_CLASSIFY_SHIPPED_SHIPPING'=>array( // when shipping validated
2020-09-11 14:15:10 +02:00
'family'=>'classify_order',
'position'=>40,
2022-08-31 21:55:55 +02:00
'enabled'=>(isModEnabled("expedition") && isModEnabled('commande')),
2020-09-11 14:15:10 +02:00
'picto'=>'order'
),
'WORKFLOW_ORDER_CLASSIFY_SHIPPED_SHIPPING_CLOSED'=>array( // when shipping closed
2020-09-11 14:15:10 +02:00
'family'=>'classify_order',
'position'=>41,
2022-08-31 21:55:55 +02:00
'enabled'=>(isModEnabled("expedition") && isModEnabled('commande')),
'picto'=>'order'
),
'WORKFLOW_INVOICE_AMOUNT_CLASSIFY_BILLED_ORDER'=>array(
'family'=>'classify_order',
'position'=>42,
2022-08-31 21:55:55 +02:00
'enabled'=>(isModEnabled('facture') && isModEnabled('commande')),
2020-09-11 14:15:10 +02:00
'picto'=>'order',
'warning'=>''
), // For this option, if module invoice is disabled, it does not exists, so "Classify billed" for order must be done manually from order card.
// Automatic classification supplier proposal
2020-09-11 14:15:10 +02:00
'WORKFLOW_ORDER_CLASSIFY_BILLED_SUPPLIER_PROPOSAL'=>array(
'family'=>'classify_supplier_proposal',
'position'=>60,
2023-04-18 16:15:13 +02:00
'enabled'=>(isModEnabled('supplier_proposal') && (isModEnabled("supplier_order") || isModEnabled("supplier_invoice"))),
2021-04-13 22:58:37 +02:00
'picto'=>'supplier_proposal',
2020-09-11 14:15:10 +02:00
'warning'=>''
),
// Automatic classification supplier order
'WORKFLOW_ORDER_CLASSIFY_RECEIVED_RECEPTION'=>array(
'family'=>'classify_supplier_order',
'position'=>63,
2023-04-18 16:15:13 +02:00
'enabled'=>(!empty($conf->global->MAIN_FEATURES_LEVEL) && isModEnabled("reception") && isModEnabled('supplier_order')),
'picto'=>'supplier_order',
'warning'=>''
),
'WORKFLOW_ORDER_CLASSIFY_RECEIVED_RECEPTION_CLOSED'=>array(
'family'=>'classify_supplier_order',
'position'=>64,
2023-04-18 16:15:13 +02:00
'enabled'=>(!empty($conf->global->MAIN_FEATURES_LEVEL) && isModEnabled("reception") && isModEnabled('supplier_order')),
'picto'=>'supplier_order',
'warning'=>''
),
2020-09-11 14:15:10 +02:00
'WORKFLOW_INVOICE_AMOUNT_CLASSIFY_BILLED_SUPPLIER_ORDER'=>array(
'family'=>'classify_supplier_order',
'position'=>65,
2023-04-18 16:15:13 +02:00
'enabled'=>(isModEnabled("supplier_order") || isModEnabled("supplier_invoice")),
2021-04-13 22:58:37 +02:00
'picto'=>'supplier_order',
2020-09-11 14:15:10 +02:00
'warning'=>''
),
// Automatic classification shipping
'WORKFLOW_SHIPPING_CLASSIFY_CLOSED_INVOICE' => array(
'family' => 'classify_shipping',
'position' => 90,
2022-08-23 20:01:34 +02:00
'enabled' => isModEnabled("expedition") && isModEnabled("facture"),
'picto' => 'shipment'
),
// Automatic classification reception
'WORKFLOW_EXPEDITION_CLASSIFY_CLOSED_INVOICE'=>array(
'family'=>'classify_reception',
'position'=>95,
2023-04-18 16:15:13 +02:00
'enabled'=>(isModEnabled("reception") && (isModEnabled("supplier_order") || isModEnabled("supplier_invoice"))),
'picto'=>'reception'
),
'separator2'=>array('family'=>'separator', 'position'=>400, 'enabled' => (isModEnabled('ticket') && isModEnabled('contract'))),
// Automatic link ticket -> contract
'WORKFLOW_TICKET_LINK_CONTRACT' => array(
'family' => 'link_ticket',
'position' => 500,
'enabled' => (isModEnabled('ticket') && isModEnabled('contract')),
'picto' => 'ticket'
),
'WORKFLOW_TICKET_USE_PARENT_COMPANY_CONTRACTS' => array(
'family' => 'link_ticket',
'position' => 501,
'enabled' => (isModEnabled('ticket') && isModEnabled('contract')),
'picto' => 'ticket'
),
);
2020-09-11 14:15:10 +02:00
if (!empty($conf->modules_parts['workflow']) && is_array($conf->modules_parts['workflow'])) {
foreach ($conf->modules_parts['workflow'] as $workflow) {
$workflowcodes = array_merge($workflowcodes, $workflow);
}
}
2020-09-11 14:15:10 +02:00
// remove not available workflows (based on activated modules and global defined keys)
2020-10-31 21:04:38 +01:00
$workflowcodes = array_filter($workflowcodes, function ($var) {
2021-02-26 22:04:03 +01:00
return $var['enabled'];
});
2020-09-11 14:15:10 +02:00
/*
* View
*/
llxHeader('', $langs->trans("WorkflowSetup"), "EN:Module_Workflow_En|FR:Module_Workflow|ES:Módulo_Workflow");
$linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
print load_fiche_titre($langs->trans("WorkflowSetup"), $linkback, 'title_setup');
print '<span class="opacitymedium">'.$langs->trans("WorkflowDesc").'</span>';
print '<br>';
print '<br>';
// current module setup don't support any automatic workflow of this module
if (count($workflowcodes) < 1) {
print $langs->trans("ThereIsNoWorkflowToModify");
llxFooter();
$db->close();
return;
}
// Sort on position
$workflowcodes = dol_sort_array($workflowcodes, 'position');
2020-09-11 14:15:10 +02:00
print '<table class="noborder centpercent">';
$oldfamily = '';
2020-09-11 14:15:10 +02:00
foreach ($workflowcodes as $key => $params) {
if ($params['family'] == 'separator') {
print '</table>';
print '<br>';
2021-02-15 16:35:51 +01:00
2020-09-11 14:15:10 +02:00
print '<table class="noborder centpercent">';
continue;
}
2022-10-27 00:40:41 +02:00
$reg = array();
2020-09-11 14:15:10 +02:00
if ($oldfamily != $params['family']) {
if ($params['family'] == 'create') {
$header = $langs->trans("AutomaticCreation");
} elseif (preg_match('/classify_(.*)/', $params['family'], $reg)) {
$header = $langs->trans("AutomaticClassification");
2021-02-26 22:04:03 +01:00
if ($reg[1] == 'proposal') {
$header .= ' - '.$langs->trans('Proposal');
}
if ($reg[1] == 'order') {
$header .= ' - '.$langs->trans('Order');
}
if ($reg[1] == 'supplier_proposal') {
$header .= ' - '.$langs->trans('SupplierProposal');
}
if ($reg[1] == 'supplier_order') {
$header .= ' - '.$langs->trans('SupplierOrder');
}
if ($reg[1] == 'reception') {
$header .= ' - '.$langs->trans('Reception');
}
if ($reg[1] == 'shipping') {
$header .= ' - '.$langs->trans('Shipment');
}
} elseif (preg_match('/link_(.*)/', $params['family'], $reg)) {
$header = $langs->trans("AutomaticLinking");
if ($reg[1] == 'ticket') {
$header .= ' - '.$langs->trans('Ticket');
}
2020-09-11 14:15:10 +02:00
} else {
$header = $langs->trans("Description");
}
2020-09-11 14:15:10 +02:00
print '<tr class="liste_titre">';
print '<th>'.$header.'</th>';
2022-10-27 00:40:41 +02:00
print '<th class="right">'.$langs->trans("Status").'</th>';
2020-09-11 14:15:10 +02:00
print '</tr>';
2020-09-11 14:15:10 +02:00
$oldfamily = $params['family'];
}
2020-09-11 14:15:10 +02:00
print '<tr class="oddeven">';
print '<td>';
2021-04-13 22:58:37 +02:00
print img_object('', $params['picto'], 'class="pictofixedwidth"');
2020-09-11 14:15:10 +02:00
print ' '.$langs->trans('desc'.$key);
if (!empty($params['warning'])) {
print ' '.img_warning($langs->transnoentitiesnoconv($params['warning']));
}
2020-09-11 14:15:10 +02:00
print '</td>';
2022-10-27 00:40:41 +02:00
print '<td class="right">';
2020-09-11 14:15:10 +02:00
if (!empty($conf->use_javascript_ajax)) {
print ajax_constantonoff($key);
} else {
if (!empty($conf->global->$key)) {
print '<a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=del'.$key.'&token='.newToken().'">';
2020-09-11 14:15:10 +02:00
print img_picto($langs->trans("Activated"), 'switch_on');
print '</a>';
2020-05-21 09:35:30 +02:00
} else {
print '<a class="reposition" href="'.$_SERVER['PHP_SELF'].'?action=set'.$key.'&token='.newToken().'">';
2020-09-11 14:15:10 +02:00
print img_picto($langs->trans("Disabled"), 'switch_off');
print '</a>';
}
2020-09-11 14:15:10 +02:00
}
2020-09-11 14:15:10 +02:00
print '</td>';
print '</tr>';
}
2020-09-11 14:15:10 +02:00
print '</table>';
2018-07-29 10:29:12 +02:00
// End of page
2012-02-13 09:45:38 +01:00
llxFooter();
$db->close();