2015-12-16 16:18:29 +01:00
|
|
|
<?php
|
|
|
|
|
/* Copyright (C) 2006-2012 Laurent Destailleur <eldy@users.sourceforge.net>
|
|
|
|
|
* Copyright (C) 2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
|
2018-10-27 14:43:12 +02:00
|
|
|
* Copyright (C) 2010-2012 Regis Houssin <regis.houssin@inodbox.com>
|
2015-12-16 16:18:29 +01:00
|
|
|
* Copyright (C) 2010 Juanjo Menent <jmenent@2byte.es>
|
|
|
|
|
* Copyright (C) 2015 Claudio Aschieri <c.aschieri@19.coop>
|
2024-03-13 00:29:44 +01:00
|
|
|
* Copyright (C) 2024 MDW <mdeweerd@users.noreply.github.com>
|
2015-12-16 16:18:29 +01: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
|
|
|
|
|
* 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/>.
|
|
|
|
|
* or see https://www.gnu.org/
|
2015-12-16 16:18:29 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* \file htdocs/core/lib/expedition.lib.php
|
|
|
|
|
* \brief Function for expedition module
|
|
|
|
|
* \ingroup expedition
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Prepare array with list of tabs
|
|
|
|
|
*
|
|
|
|
|
* @param Expedition $object Object related to tabs
|
2024-09-23 00:37:30 +02:00
|
|
|
* @return array<array{0:string,1:string,2:string}> Array of tabs to show
|
2015-12-16 16:18:29 +01:00
|
|
|
*/
|
|
|
|
|
function expedition_prepare_head(Expedition $object)
|
|
|
|
|
{
|
|
|
|
|
global $langs, $conf, $user;
|
2024-03-12 11:07:18 +01:00
|
|
|
if (isModEnabled("shipping")) {
|
2021-02-23 22:03:23 +01:00
|
|
|
$langs->load("sendings");
|
|
|
|
|
}
|
2015-12-16 16:18:29 +01:00
|
|
|
$langs->load("orders");
|
|
|
|
|
|
|
|
|
|
$h = 0;
|
|
|
|
|
$head = array();
|
2019-09-23 21:55:30 +02:00
|
|
|
|
2015-12-16 16:18:29 +01:00
|
|
|
$head[$h][0] = DOL_URL_ROOT."/admin/confexped.php";
|
|
|
|
|
$head[$h][1] = $langs->trans("Setup");
|
|
|
|
|
$h++;
|
2019-09-23 21:55:30 +02:00
|
|
|
|
2015-12-16 16:18:29 +01:00
|
|
|
$head[$h][0] = DOL_URL_ROOT."/admin/expedition.php";
|
|
|
|
|
$head[$h][1] = $langs->trans("Shipment");
|
2020-04-10 10:59:32 +02:00
|
|
|
$hselected = $h;
|
2015-12-16 16:18:29 +01:00
|
|
|
$h++;
|
2019-09-23 21:55:30 +02:00
|
|
|
|
2023-04-18 14:04:27 +02:00
|
|
|
if (getDolGlobalInt('MAIN_SUBMODULE_DELIVERY')) {
|
2020-10-06 12:05:24 +02:00
|
|
|
$head[$h][0] = DOL_URL_ROOT."/admin/delivery.php";
|
2015-12-16 16:18:29 +01:00
|
|
|
$head[$h][1] = $langs->trans("Receivings");
|
|
|
|
|
$h++;
|
|
|
|
|
}
|
2019-09-23 21:55:30 +02:00
|
|
|
|
2020-08-20 22:17:34 +02:00
|
|
|
complete_head_from_modules($conf, $langs, $object, $head, $h, 'order');
|
2015-12-16 16:18:29 +01:00
|
|
|
|
2020-09-07 10:18:17 +02:00
|
|
|
complete_head_from_modules($conf, $langs, $object, $head, $h, 'order', 'remove');
|
2015-12-16 16:18:29 +01:00
|
|
|
|
2020-09-07 10:18:17 +02:00
|
|
|
return $head;
|
2015-12-16 16:18:29 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2024-01-13 19:48:20 +01:00
|
|
|
* Return array head with list of tabs to view object information.
|
2015-12-16 16:18:29 +01:00
|
|
|
*
|
2024-10-14 01:59:44 +02:00
|
|
|
* @return array<array{0:string,1:string,2:string}> Array of tabs to show
|
2015-12-16 16:18:29 +01:00
|
|
|
*/
|
|
|
|
|
function expedition_admin_prepare_head()
|
|
|
|
|
{
|
2022-12-16 16:59:23 +01:00
|
|
|
global $langs, $conf, $user, $db;
|
2015-12-16 16:18:29 +01:00
|
|
|
$langs->load("sendings");
|
|
|
|
|
|
2022-12-16 16:59:23 +01:00
|
|
|
$extrafields = new ExtraFields($db);
|
|
|
|
|
|
2015-12-16 16:18:29 +01:00
|
|
|
$h = 0;
|
|
|
|
|
$head = array();
|
2019-09-23 21:55:30 +02:00
|
|
|
|
2022-09-21 14:39:39 +02:00
|
|
|
/*
|
2015-12-16 16:18:29 +01:00
|
|
|
$head[$h][0] = DOL_URL_ROOT."/admin/confexped.php";
|
|
|
|
|
$head[$h][1] = $langs->trans("Setup");
|
|
|
|
|
$head[$h][2] = 'general';
|
|
|
|
|
$h++;
|
2022-09-21 14:39:39 +02:00
|
|
|
*/
|
2019-09-23 21:55:30 +02:00
|
|
|
|
2023-11-27 11:39:32 +01:00
|
|
|
if (getDolGlobalString('MAIN_SUBMODULE_EXPEDITION')) {
|
2022-12-16 16:59:23 +01:00
|
|
|
$extrafields->fetch_name_optionals_label('expedition');
|
|
|
|
|
$extrafields->fetch_name_optionals_label('expeditiondet');
|
|
|
|
|
|
2015-12-16 16:18:29 +01:00
|
|
|
$head[$h][0] = DOL_URL_ROOT."/admin/expedition.php";
|
|
|
|
|
$head[$h][1] = $langs->trans("Shipment");
|
|
|
|
|
$head[$h][2] = 'shipment';
|
|
|
|
|
$h++;
|
2019-09-23 21:55:30 +02:00
|
|
|
|
2020-09-07 10:18:17 +02:00
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/admin/expedition_extrafields.php';
|
|
|
|
|
$head[$h][1] = $langs->trans("ExtraFields");
|
2022-12-16 16:59:23 +01:00
|
|
|
$nbExtrafields = $extrafields->attributes['expedition']['count'];
|
|
|
|
|
if ($nbExtrafields > 0) {
|
|
|
|
|
$head[$h][1] .= '<span class="badge marginleftonlyshort">'.$nbExtrafields.'</span>';
|
|
|
|
|
}
|
2020-09-07 10:18:17 +02:00
|
|
|
$head[$h][2] = 'attributes_shipment';
|
|
|
|
|
$h++;
|
2019-09-23 21:55:30 +02:00
|
|
|
|
2020-09-07 10:18:17 +02:00
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/admin/expeditiondet_extrafields.php';
|
|
|
|
|
$head[$h][1] = $langs->trans("ExtraFieldsLines");
|
2022-12-16 16:59:23 +01:00
|
|
|
$nbExtrafields = $extrafields->attributes['expeditiondet']['count'];
|
|
|
|
|
if ($nbExtrafields > 0) {
|
|
|
|
|
$head[$h][1] .= '<span class="badge marginleftonlyshort">'.$nbExtrafields.'</span>';
|
|
|
|
|
}
|
2020-09-07 10:18:17 +02:00
|
|
|
$head[$h][2] = 'attributeslines_shipment';
|
|
|
|
|
$h++;
|
2015-12-16 16:18:29 +01:00
|
|
|
}
|
2019-09-23 21:55:30 +02:00
|
|
|
|
2022-09-21 14:39:39 +02:00
|
|
|
$head[$h][0] = DOL_URL_ROOT."/admin/delivery.php";
|
|
|
|
|
$head[$h][1] = $langs->trans("Receivings");
|
|
|
|
|
$head[$h][2] = 'receivings';
|
|
|
|
|
$h++;
|
2019-09-23 21:55:30 +02:00
|
|
|
|
2023-04-18 14:04:27 +02:00
|
|
|
if (getDolGlobalInt('MAIN_SUBMODULE_DELIVERY')) {
|
2022-12-16 16:59:23 +01:00
|
|
|
$extrafields->fetch_name_optionals_label('delivery');
|
|
|
|
|
$extrafields->fetch_name_optionals_label('deliverydet');
|
|
|
|
|
|
2020-10-06 12:05:24 +02:00
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/admin/delivery_extrafields.php';
|
2015-12-16 16:18:29 +01:00
|
|
|
$head[$h][1] = $langs->trans("ExtraFields");
|
2022-12-16 16:59:23 +01:00
|
|
|
$nbExtrafields = $extrafields->attributes['delivery']['count'];
|
|
|
|
|
if ($nbExtrafields > 0) {
|
|
|
|
|
$head[$h][1] .= '<span class="badge marginleftonlyshort">'.$nbExtrafields.'</span>';
|
|
|
|
|
}
|
2015-12-16 16:18:29 +01:00
|
|
|
$head[$h][2] = 'attributes_receivings';
|
|
|
|
|
$h++;
|
2019-09-23 21:55:30 +02:00
|
|
|
|
2020-10-06 12:05:24 +02:00
|
|
|
$head[$h][0] = DOL_URL_ROOT.'/admin/deliverydet_extrafields.php';
|
2015-12-16 16:18:29 +01:00
|
|
|
$head[$h][1] = $langs->trans("ExtraFieldsLines");
|
2022-12-16 16:59:23 +01:00
|
|
|
$nbExtrafields = $extrafields->attributes['deliverydet']['count'];
|
|
|
|
|
if ($nbExtrafields > 0) {
|
|
|
|
|
$head[$h][1] .= '<span class="badge marginleftonlyshort">'.$nbExtrafields.'</span>';
|
|
|
|
|
}
|
2015-12-16 16:18:29 +01:00
|
|
|
$head[$h][2] = 'attributeslines_receivings';
|
|
|
|
|
$h++;
|
|
|
|
|
}
|
2019-09-23 21:55:30 +02:00
|
|
|
|
2020-08-20 22:17:34 +02:00
|
|
|
complete_head_from_modules($conf, $langs, null, $head, $h, 'expedition_admin');
|
2019-09-23 21:55:30 +02:00
|
|
|
|
2019-01-27 11:55:16 +01:00
|
|
|
complete_head_from_modules($conf, $langs, null, $head, $h, 'expedition_admin', 'remove');
|
2015-12-16 16:18:29 +01:00
|
|
|
|
|
|
|
|
return $head;
|
|
|
|
|
}
|