dolibarr/htdocs/admin/confexped.php

147 lines
4.6 KiB
PHP
Raw Normal View History

<?php
2010-02-25 00:29:46 +01:00
/* Copyright (C) 2004-2010 Laurent Destailleur <eldy@users.sourceforge.net>
2018-10-27 14:43:12 +02:00
* Copyright (C) 2005-2009 Regis Houssin <regis.houssin@inodbox.com>
* Copyright (C) 2006 Andre Cianfarani <acianfa@free.fr>
* Copyright (C) 2011-2016 Juanjo Menent <jmenent@2byte.es>ù
* Copyright (C) 2015 Claudio Aschieri <c.aschieri@19.coop>
*
* 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/>.
*/
/**
2010-02-25 00:29:46 +01:00
* \file htdocs/admin/confexped.php
* \ingroup produit
* \brief Page to setup sending module
*/
require '../main.inc.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
require_once DOL_DOCUMENT_ROOT.'/core/lib/expedition.lib.php';
2018-05-26 18:41:16 +02:00
// Load translation files required by the page
$langs->loadLangs(array('admin', 'sendings', 'deliveries'));
2021-02-26 22:04:03 +01:00
if (!$user->admin) {
accessforbidden();
}
2020-09-16 19:39:50 +02:00
$action = GETPOST('action', 'aZ09');
/*
* Actions
*/
// Shipment note
2021-02-26 22:04:03 +01:00
if (!empty($conf->expedition->enabled) && empty($conf->global->MAIN_SUBMODULE_EXPEDITION)) {
// This option should always be set to on when module is on.
dolibarr_set_const($db, "MAIN_SUBMODULE_EXPEDITION", "1", 'chaine', 0, '', $conf->entity);
}
/*
2011-08-31 16:28:42 +02:00
if ($action == 'activate_sending')
{
2021-02-26 22:04:03 +01:00
dolibarr_set_const($db, "MAIN_SUBMODULE_EXPEDITION", "1",'chaine',0,'',$conf->entity);
header("Location: confexped.php");
exit;
}
if ($action == 'disable_sending')
{
dolibarr_del_const($db, "MAIN_SUBMODULE_EXPEDITION",$conf->entity);
2021-02-26 22:04:03 +01:00
header("Location: confexped.php");
exit;
}
*/
// Delivery note
2021-02-26 22:04:03 +01:00
if ($action == 'activate_delivery') {
dolibarr_set_const($db, "MAIN_SUBMODULE_EXPEDITION", "1", 'chaine', 0, '', $conf->entity); // We must also enable this
dolibarr_set_const($db, "MAIN_SUBMODULE_DELIVERY", "1", 'chaine', 0, '', $conf->entity);
2012-08-31 05:58:38 +02:00
header("Location: confexped.php");
exit;
2021-02-26 22:04:03 +01:00
} elseif ($action == 'disable_delivery') {
dolibarr_del_const($db, "MAIN_SUBMODULE_DELIVERY", $conf->entity);
header("Location: confexped.php");
exit;
}
/*
* View
*/
$dir = DOL_DOCUMENT_ROOT."/core/modules/expedition/";
$form = new Form($db);
llxHeader("", $langs->trans("SendingsSetup"));
$linkback = '<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
print load_fiche_titre($langs->trans("SendingsSetup"), $linkback, 'title_setup');
print '<br>';
$head = expedition_admin_prepare_head();
2020-10-22 22:50:03 +02:00
print dol_get_fiche_head($head, 'general', $langs->trans("Sendings"), -1, 'shipment');
2017-03-22 20:34:01 +01:00
// Miscellaneous parameters
2019-11-05 21:24:41 +01:00
print '<table class="noborder centpercent">';
print '<tr class="liste_titre">';
print '<td>'.$langs->trans("Feature").'</td>';
2017-03-22 20:34:01 +01:00
print '<td width="20">&nbsp;</td>';
print '<td class="center">'.$langs->trans("Status").'</td>';
2011-05-15 10:53:11 +02:00
print '</tr>'."\n";
// expedition activation/desactivation
2017-03-22 20:34:01 +01:00
print "<tr>";
print '<td>'.$langs->trans("SendingsAbility").'</td>';
2017-03-22 20:34:01 +01:00
print '<td>';
print '</td>';
2017-03-22 20:34:01 +01:00
print '<td class="center">';
2022-02-11 18:06:39 +01:00
print '<span class="opacitymedium">'.img_picto($langs->trans("Required"), 'switch_on').'</span>';
/*if (empty($conf->global->MAIN_SUBMODULE_EXPEDITION))
{
2021-03-19 12:44:59 +01:00
print '<a href="confexped.php?action=activate_sending&token='.newToken().'">'.img_picto($langs->trans("Disabled"),'switch_off').'</a>';
}
2015-05-09 13:25:40 +02:00
else
{
2021-03-19 12:44:59 +01:00
print '<a href="confexped.php?action=disable_sending&token='.newToken().'">'.img_picto($langs->trans("Enabled"),'switch_on').'</a>';
}*/
print "</td>";
print '</tr>';
// Delivery note activate/deactivate Bon de livraison activation/desactivation
2017-03-22 20:34:01 +01:00
print '<tr>';
2016-04-01 12:40:34 +02:00
print '<td>';
print $langs->trans("DeliveriesOrderAbility");
print '<br>'.info_admin($langs->trans("NoNeedForDeliveryReceipts"), 0, 1);
print '</td>';
2017-03-22 20:34:01 +01:00
print '<td>';
print '</td>';
2017-03-22 20:34:01 +01:00
print '<td class="center">';
2021-02-26 22:04:03 +01:00
if (empty($conf->global->MAIN_SUBMODULE_DELIVERY)) {
2021-03-19 12:44:59 +01:00
print '<a href="'.$_SERVER["PHP_SELF"].'?action=activate_delivery&token='.newToken().'">'.img_picto($langs->trans("Disabled"), 'switch_off').'</a>';
2020-05-21 09:35:30 +02:00
} else {
2021-03-19 12:44:59 +01:00
print '<a href="'.$_SERVER["PHP_SELF"].'?action=disable_delivery&token='.newToken().'">'.img_picto($langs->trans("Enabled"), 'switch_on').'</a>';
}
print "</td>";
print '</tr>';
2011-05-15 10:53:11 +02:00
print '</table>';
2008-08-21 09:58:46 +02:00
print '</div>';
2018-07-28 17:26:56 +02:00
// End of page
llxFooter();
$db->close();