dolibarr/htdocs/admin/confexped.php

165 lines
4.5 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>
2012-12-30 15:13:49 +01:00
* Copyright (C) 2005-2009 Regis Houssin <regis.houssin@capnetworks.com>
* Copyright (C) 2006 Andre Cianfarani <acianfa@free.fr>
2012-03-28 17:49:36 +02:00
* Copyright (C) 2011 Juanjo Menent <jmenent@2byte.es>
*
* 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
2011-08-01 00:21:57 +02:00
* along with this program. If not, see <http://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';
$langs->load("admin");
$langs->load("sendings");
2006-05-15 14:59:40 +02:00
$langs->load("deliveries");
if (!$user->admin)
accessforbidden();
2012-03-28 17:49:36 +02:00
$action=GETPOST('action','alpha');
// Shipment note
2011-08-31 16:28:42 +02:00
if ($action == 'activate_sending')
{
dolibarr_set_const($db, "MAIN_SUBMODULE_EXPEDITION", "1",'chaine',0,'',$conf->entity);
2012-08-31 05:58:38 +02:00
header("Location: confexped.php");
exit;
}
2011-08-31 16:28:42 +02:00
else if ($action == 'disable_sending')
{
dolibarr_del_const($db, "MAIN_SUBMODULE_EXPEDITION",$conf->entity);
2012-08-31 05:58:38 +02:00
header("Location: confexped.php");
exit;
}
// Delivery note
2011-08-31 16:28:42 +02:00
else 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_LIVRAISON", "1",'chaine',0,'',$conf->entity);
2012-08-31 05:58:38 +02:00
header("Location: confexped.php");
exit;
}
2011-08-31 16:28:42 +02:00
else if ($action == 'disable_delivery')
{
dolibarr_del_const($db, "MAIN_SUBMODULE_LIVRAISON",$conf->entity);
2012-08-31 05:58:38 +02:00
header("Location: confexped.php");
exit;
}
/*
* Affiche page
*/
$dir = DOL_DOCUMENT_ROOT."/core/modules/expedition/";
$form=new Form($db);
llxHeader("","");
$linkback='<a href="'.DOL_URL_ROOT.'/admin/modules.php">'.$langs->trans("BackToModuleList").'</a>';
2011-03-05 14:14:32 +01:00
print_fiche_titre($langs->trans("SendingsSetup"),$linkback,'setup');
print '<br>';
$h = 0;
$head[$h][0] = DOL_URL_ROOT."/admin/confexped.php";
$head[$h][1] = $langs->trans("Setup");
$hselected=$h;
$h++;
2012-09-15 10:01:35 +02:00
if (! empty($conf->global->MAIN_SUBMODULE_EXPEDITION))
{
$head[$h][0] = DOL_URL_ROOT."/admin/expedition.php";
2013-09-25 19:07:25 +02:00
$head[$h][1] = $langs->trans("Shipment");
$h++;
}
2012-09-15 10:01:35 +02:00
if (! empty($conf->global->MAIN_SUBMODULE_LIVRAISON))
{
$head[$h][0] = DOL_URL_ROOT."/admin/livraison.php";
2008-08-21 09:58:46 +02:00
$head[$h][1] = $langs->trans("Receivings");
$h++;
}
dol_fiche_head($head, $hselected, $langs->trans("ModuleSetup"));
/*
* Formulaire parametres divers
*/
$var=true;
print '<table class="noborder" width="100%">';
print '<tr class="liste_titre">';
print '<td>'.$langs->trans("Feature").'</td>';
print '<td align="center" width="20">&nbsp;</td>';
2010-02-25 00:29:46 +01:00
print '<td align="center" width="100">'.$langs->trans("Status").'</td>';
2011-05-15 10:53:11 +02:00
print '</tr>'."\n";
// expedition activation/desactivation
$var=!$var;
print "<tr ".$bc[$var].">";
print '<td>'.$langs->trans("SendingsAbility").'</td>';
print '<td align="center" width="20">';
print '</td>';
print '<td align="center" width="100">';
if($conf->global->MAIN_SUBMODULE_EXPEDITION == 0)
{
2011-08-31 16:28:42 +02:00
print '<a href="confexped.php?action=activate_sending">'.img_picto($langs->trans("Disabled"),'switch_off').'</a>';
}
else if($conf->global->MAIN_SUBMODULE_EXPEDITION == 1)
{
2011-08-31 16:28:42 +02:00
print '<a href="confexped.php?action=disable_sending">'.img_picto($langs->trans("Enabled"),'switch_on').'</a>';
}
print "</td>";
print '</tr>';
// Bon de livraison activation/desactivation
$var=!$var;
2011-05-15 10:53:11 +02:00
print '<tr '.$bc[$var].'>';
print '<td>'.$langs->trans("DeliveriesOrderAbility").'</td>';
print '<td align="center" width="20">';
print '</td>';
print '<td align="center" width="100">';
if($conf->global->MAIN_SUBMODULE_LIVRAISON == 0)
{
2011-08-31 16:28:42 +02:00
print '<a href="confexped.php?action=activate_delivery">'.img_picto($langs->trans("Disabled"),'switch_off').'</a>';
}
else if($conf->global->MAIN_SUBMODULE_LIVRAISON == 1)
{
2011-08-31 16:28:42 +02:00
print '<a href="confexped.php?action=disable_delivery">'.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>';
print info_admin($langs->trans("NoNeedForDeliveryReceipts"));
$db->close();
llxFooter();
?>