2006-05-15 14:46:15 +02:00
|
|
|
<?php
|
2010-02-25 00:29:46 +01:00
|
|
|
/* Copyright (C) 2004-2010 Laurent Destailleur <eldy@users.sourceforge.net>
|
2012-12-30 15:13:49 +01:00
|
|
|
* Copyright (C) 2005-2009 Regis Houssin <regis.houssin@capnetworks.com>
|
2009-04-27 22:37:50 +02:00
|
|
|
* Copyright (C) 2006 Andre Cianfarani <acianfa@free.fr>
|
2016-02-12 12:19:11 +01:00
|
|
|
* Copyright (C) 2011-2016 Juanjo Menent <jmenent@2byte.es>ù
|
|
|
|
|
* Copyright (C) 2015 Claudio Aschieri <c.aschieri@19.coop>
|
2006-05-15 14:46:15 +02:00
|
|
|
*
|
|
|
|
|
* 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
|
2013-01-16 15:36:08 +01:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2006-05-15 14:46:15 +02:00
|
|
|
* (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/>.
|
2006-05-15 14:46:15 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
2010-02-25 00:29:46 +01:00
|
|
|
* \file htdocs/admin/confexped.php
|
|
|
|
|
* \ingroup produit
|
|
|
|
|
* \brief Page to setup sending module
|
|
|
|
|
*/
|
2006-05-15 14:46:15 +02:00
|
|
|
|
2012-08-22 23:24:21 +02:00
|
|
|
require '../main.inc.php';
|
2012-08-22 23:11:24 +02:00
|
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/admin.lib.php';
|
2015-12-16 16:18:29 +01:00
|
|
|
require_once DOL_DOCUMENT_ROOT.'/core/lib/expedition.lib.php';
|
2006-05-15 14:46:15 +02:00
|
|
|
|
2018-05-26 18:41:16 +02:00
|
|
|
// Load translation files required by the page
|
|
|
|
|
$langs->loadLangs(array('admin', 'sendings', 'deliveries'));
|
2006-05-15 14:46:15 +02:00
|
|
|
|
|
|
|
|
if (!$user->admin)
|
|
|
|
|
accessforbidden();
|
|
|
|
|
|
2012-03-28 17:49:36 +02:00
|
|
|
$action=GETPOST('action','alpha');
|
2006-05-15 14:46:15 +02:00
|
|
|
|
2016-02-12 12:19:11 +01:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Actions
|
|
|
|
|
*/
|
|
|
|
|
|
2011-12-21 16:38:56 +01:00
|
|
|
// Shipment note
|
2016-02-12 12:19:11 +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')
|
2006-05-15 14:46:15 +02:00
|
|
|
{
|
2009-04-27 22:37:50 +02:00
|
|
|
dolibarr_set_const($db, "MAIN_SUBMODULE_EXPEDITION", "1",'chaine',0,'',$conf->entity);
|
2012-08-31 05:58:38 +02:00
|
|
|
header("Location: confexped.php");
|
2006-05-15 14:46:15 +02:00
|
|
|
exit;
|
|
|
|
|
}
|
2016-02-12 12:19:11 +01:00
|
|
|
if ($action == 'disable_sending')
|
2006-05-15 14:46:15 +02:00
|
|
|
{
|
2009-04-27 22:37:50 +02:00
|
|
|
dolibarr_del_const($db, "MAIN_SUBMODULE_EXPEDITION",$conf->entity);
|
2012-08-31 05:58:38 +02:00
|
|
|
header("Location: confexped.php");
|
2006-05-15 14:46:15 +02:00
|
|
|
exit;
|
|
|
|
|
}
|
2016-02-12 12:19:11 +01:00
|
|
|
*/
|
|
|
|
|
|
2011-12-21 16:38:56 +01:00
|
|
|
// Delivery note
|
2016-02-12 12:19:11 +01:00
|
|
|
if ($action == 'activate_delivery')
|
2006-05-15 14:46:15 +02:00
|
|
|
{
|
2011-12-21 16:38:56 +01:00
|
|
|
dolibarr_set_const($db, "MAIN_SUBMODULE_EXPEDITION", "1",'chaine',0,'',$conf->entity); // We must also enable this
|
|
|
|
|
dolibarr_set_const($db, "MAIN_SUBMODULE_LIVRAISON", "1",'chaine',0,'',$conf->entity);
|
2012-08-31 05:58:38 +02:00
|
|
|
header("Location: confexped.php");
|
2011-12-21 16:38:56 +01:00
|
|
|
exit;
|
2006-05-15 14:46:15 +02:00
|
|
|
}
|
2011-08-31 16:28:42 +02:00
|
|
|
else if ($action == 'disable_delivery')
|
2006-05-15 14:46:15 +02:00
|
|
|
{
|
2009-04-27 22:37:50 +02:00
|
|
|
dolibarr_del_const($db, "MAIN_SUBMODULE_LIVRAISON",$conf->entity);
|
2012-08-31 05:58:38 +02:00
|
|
|
header("Location: confexped.php");
|
2006-05-15 14:46:15 +02:00
|
|
|
exit;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*
|
2016-02-12 12:19:11 +01:00
|
|
|
* View
|
2006-05-15 14:46:15 +02:00
|
|
|
*/
|
2016-02-12 12:19:11 +01:00
|
|
|
|
2011-10-24 14:11:49 +02:00
|
|
|
$dir = DOL_DOCUMENT_ROOT."/core/modules/expedition/";
|
2011-11-08 10:18:45 +01:00
|
|
|
$form=new Form($db);
|
2006-05-15 14:46:15 +02:00
|
|
|
|
2016-11-07 00:32:28 +01:00
|
|
|
llxHeader("",$langs->trans("SendingsSetup"));
|
2006-05-15 14:46:15 +02:00
|
|
|
|
2018-02-26 09:20:05 +01:00
|
|
|
$linkback='<a href="'.DOL_URL_ROOT.'/admin/modules.php?restore_lastsearch_values=1">'.$langs->trans("BackToModuleList").'</a>';
|
2015-09-24 18:33:48 +02:00
|
|
|
print load_fiche_titre($langs->trans("SendingsSetup"),$linkback,'title_setup');
|
2008-01-26 16:10:18 +01:00
|
|
|
print '<br>';
|
2015-12-16 16:18:29 +01:00
|
|
|
$head = expedition_admin_prepare_head();
|
2006-05-15 14:46:15 +02:00
|
|
|
|
2017-03-22 20:34:01 +01:00
|
|
|
dol_fiche_head($head, 'general', $langs->trans("Sendings"), -1, 'sending');
|
2006-05-15 14:46:15 +02:00
|
|
|
|
2017-03-22 20:34:01 +01:00
|
|
|
// Miscellaneous parameters
|
2006-05-15 14:46:15 +02:00
|
|
|
|
|
|
|
|
print '<table class="noborder" width="100%">';
|
|
|
|
|
print '<tr class="liste_titre">';
|
2006-05-16 00:44:54 +02:00
|
|
|
print '<td>'.$langs->trans("Feature").'</td>';
|
2017-03-22 20:34:01 +01:00
|
|
|
print '<td width="20"> </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>";
|
2006-05-16 00:44:54 +02:00
|
|
|
print '<td>'.$langs->trans("SendingsAbility").'</td>';
|
2017-03-22 20:34:01 +01:00
|
|
|
print '<td>';
|
2006-05-15 14:46:15 +02:00
|
|
|
print '</td>';
|
2017-03-22 20:34:01 +01:00
|
|
|
print '<td class="center">';
|
2016-02-12 12:19:11 +01:00
|
|
|
print $langs->trans("Required");
|
|
|
|
|
/*if (empty($conf->global->MAIN_SUBMODULE_EXPEDITION))
|
2006-05-15 14:46:15 +02:00
|
|
|
{
|
2011-08-31 16:28:42 +02:00
|
|
|
print '<a href="confexped.php?action=activate_sending">'.img_picto($langs->trans("Disabled"),'switch_off').'</a>';
|
2006-05-15 14:46:15 +02:00
|
|
|
}
|
2015-05-09 13:25:40 +02:00
|
|
|
else
|
2006-05-15 14:46:15 +02:00
|
|
|
{
|
2011-08-31 16:28:42 +02:00
|
|
|
print '<a href="confexped.php?action=disable_sending">'.img_picto($langs->trans("Enabled"),'switch_on').'</a>';
|
2016-02-12 12:19:11 +01:00
|
|
|
}*/
|
2006-05-15 14:46:15 +02:00
|
|
|
print "</td>";
|
|
|
|
|
print '</tr>';
|
|
|
|
|
|
|
|
|
|
// 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>';
|
2006-05-15 14:46:15 +02:00
|
|
|
print '</td>';
|
2017-03-22 20:34:01 +01:00
|
|
|
print '<td class="center">';
|
2006-05-15 14:46:15 +02:00
|
|
|
|
2015-05-09 13:25:40 +02:00
|
|
|
if (empty($conf->global->MAIN_SUBMODULE_LIVRAISON))
|
2006-05-15 14:46:15 +02:00
|
|
|
{
|
2011-08-31 16:28:42 +02:00
|
|
|
print '<a href="confexped.php?action=activate_delivery">'.img_picto($langs->trans("Disabled"),'switch_off').'</a>';
|
2006-05-15 14:46:15 +02:00
|
|
|
}
|
2015-05-09 13:25:40 +02:00
|
|
|
else
|
2006-05-15 14:46:15 +02:00
|
|
|
{
|
2011-08-31 16:28:42 +02:00
|
|
|
print '<a href="confexped.php?action=disable_delivery">'.img_picto($langs->trans("Enabled"),'switch_on').'</a>';
|
2006-05-15 14:46:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
print "</td>";
|
|
|
|
|
print '</tr>';
|
2011-05-15 10:53:11 +02:00
|
|
|
print '</table>';
|
2006-05-15 14:46:15 +02:00
|
|
|
|
2008-08-21 09:58:46 +02:00
|
|
|
print '</div>';
|
|
|
|
|
|
2006-05-15 14:46:15 +02:00
|
|
|
llxFooter();
|
2015-12-11 14:19:38 +01:00
|
|
|
$db->close();
|