123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160 |
- <?php
- /* Copyright (C) 2004-2010 Laurent Destailleur <eldy@users.sourceforge.net>
- * Copyright (C) 2005-2009 Regis Houssin <regis@dolibarr.fr>
- * Copyright (C) 2006 Andre Cianfarani <acianfa@free.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
- * along with this program. If not, see <http://www.gnu.org/licenses/>.
- */
- /**
- * \file htdocs/admin/confexped.php
- * \ingroup produit
- * \brief Page to setup sending module
- */
- require("../main.inc.php");
- require_once(DOL_DOCUMENT_ROOT."/lib/admin.lib.php");
- $langs->load("admin");
- $langs->load("sendings");
- $langs->load("deliveries");
- if (!$user->admin)
- accessforbidden();
- if ($_GET["action"] == 'activate_sending')
- {
- dolibarr_set_const($db, "MAIN_SUBMODULE_EXPEDITION", "1",'chaine',0,'',$conf->entity);
- Header("Location: confexped.php");
- exit;
- }
- else if ($_GET["action"] == 'disable_sending')
- {
- dolibarr_del_const($db, "MAIN_SUBMODULE_EXPEDITION",$conf->entity);
- Header("Location: confexped.php");
- exit;
- }
- else if ($_GET["action"] == 'activate_delivery')
- {
- dolibarr_set_const($db, "MAIN_SUBMODULE_LIVRAISON", "1",'chaine',0,'',$conf->entity);
- Header("Location: confexped.php");
- exit;
- }
- else if ($_GET["action"] == 'disable_delivery')
- {
- dolibarr_del_const($db, "MAIN_SUBMODULE_LIVRAISON",$conf->entity);
- Header("Location: confexped.php");
- exit;
- }
- /*
- * Affiche page
- */
- $dir = DOL_DOCUMENT_ROOT."/includes/modules/expedition/";
- $html=new Form($db);
- llxHeader("","");
- $linkback='<a href="'.DOL_URL_ROOT.'/admin/modules.php">'.$langs->trans("BackToModuleList").'</a>';
- 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++;
- if ($conf->global->MAIN_SUBMODULE_EXPEDITION)
- {
- $head[$h][0] = DOL_URL_ROOT."/admin/expedition.php";
- $head[$h][1] = $langs->trans("Sending");
- $h++;
- }
- if ($conf->global->MAIN_SUBMODULE_LIVRAISON)
- {
- $head[$h][0] = DOL_URL_ROOT."/admin/livraison.php";
- $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"> </td>';
- print '<td align="center" width="100">'.$langs->trans("Status").'</td>';
- 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)
- {
- print '<a href="confexped.php?action=activate_sending">'.img_picto($langs->trans("Disabled"),'off').'</a>';
- }
- else if($conf->global->MAIN_SUBMODULE_EXPEDITION == 1)
- {
- print '<a href="confexped.php?action=disable_sending">'.img_picto($langs->trans("Enabled"),'on').'</a>';
- }
- print "</td>";
- print '</tr>';
- // Bon de livraison activation/desactivation
- $var=!$var;
- 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)
- {
- print '<a href="confexped.php?action=activate_delivery">'.img_picto($langs->trans("Disabled"),'off').'</a>';
- }
- else if($conf->global->MAIN_SUBMODULE_LIVRAISON == 1)
- {
- print '<a href="confexped.php?action=disable_delivery">'.img_picto($langs->trans("Enabled"),'on').'</a>';
- }
- print "</td>";
- print '</tr>';
- print '</table>';
- print '</div>';
- print info_admin($langs->trans("NoNeedForDeliveryReceipts"));
- $db->close();
- llxFooter();
- ?>
|