dolibarr 22.0.5
info.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2005-2009 Laurent Destailleur <eldy@users.sourceforge.net>
3 * Copyright (C) 2024 Frédéric France <frederic.france@free.fr>
4 * Copyright (C) 2025 MDW <mdeweerd@users.noreply.github.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 3 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program. If not, see <https://www.gnu.org/licenses/>.
18 */
19
26// Load Dolibarr environment
27require '../../main.inc.php';
28require_once DOL_DOCUMENT_ROOT.'/product/stock/class/entrepot.class.php';
29require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
30require_once DOL_DOCUMENT_ROOT.'/core/lib/stock.lib.php';
31
41// Load translation files required by the page
42$langs->load("stocks");
43
44$id = GETPOSTINT('id');
45$ref = GETPOST('ref', 'alpha');
46
47// Security check
48//$result=restrictedArea($user,'stock', $id, 'entrepot&stock');
49$result = restrictedArea($user, 'stock');
50
51$usercancreate = $user->hasRight('stock', 'creer');
52
53
54/*
55 * Actions
56 */
57
58// None
59
60
61/*
62 * View
63 */
64
65$help_url = 'EN:Module_Stocks_En|FR:Module_Stock|ES:M&oacute;dulo_Stocks';
66llxHeader("", $langs->trans("Stocks"), $help_url, '', 0, 0, '', '', '', 'mod-product page-stock_info');
67
68$object = new Entrepot($db);
69$object->fetch($id, $ref);
70$object->info($object->id);
71
72$head = stock_prepare_head($object);
73
74print dol_get_fiche_head($head, 'info', $langs->trans("Warehouse"), -1, 'stock');
75
76
77$linkback = '<a href="'.DOL_URL_ROOT.'/product/stock/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
78
79$morehtmlref = '<div class="refidno">';
80$morehtmlref .= $langs->trans("LocationSummary").' : '.$object->lieu;
81
82// Project
83if (isModEnabled('project')) {
84 $langs->load("projects");
85 $morehtmlref .= '<br>'.img_picto('', 'project').' '.$langs->trans('Project').' ';
86 if ($usercancreate) {
87 if ($action != 'classify') {
88 $morehtmlref .= '<a class="editfielda" href="'.$_SERVER['PHP_SELF'].'?action=classify&token='.newToken().'&id='.$object->id.'">'.img_edit($langs->transnoentitiesnoconv('SetProject')).'</a> : ';
89 }
90 if ($action == 'classify') {
91 $formproject = new FormProjets($db);
92 $projectid = $object->fk_project;
93 $morehtmlref .= '<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
94 $morehtmlref .= '<input type="hidden" name="action" value="classin">';
95 $morehtmlref .= '<input type="hidden" name="token" value="'.newToken().'">';
96 $morehtmlref .= $formproject->select_projects(($socid > 0 ? $socid : -1), (string) $projectid, 'projectid', 0, 0, 1, 1, 0, 0, 0, '', 1, 0, 'maxwidth500');
97 $morehtmlref .= '<input type="submit" class="button valignmiddle" value="'.$langs->trans("Modify").'">';
98 $morehtmlref .= '</form>';
99 } else {
100 $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$object->id, (!empty($object->socid) ? $object->socid : 0), (string) $object->fk_project, 'none', 0, 0, 0, 1, '', 'maxwidth300');
101 }
102 } else {
103 if (!empty($object->fk_project)) {
104 $proj = new Project($db);
105 $proj->fetch($object->fk_project);
106 $morehtmlref .= ' : '.$proj->getNomUrl(1);
107 if ($proj->title) {
108 $morehtmlref .= ' - '.$proj->title;
109 }
110 } else {
111 $morehtmlref .= '';
112 }
113 }
114}
115$morehtmlref .= '</div>';
116
117$shownav = 1;
118if ($user->socid && !in_array('stock', explode(',', getDolGlobalString('MAIN_MODULES_FOR_EXTERNAL')))) {
119 $shownav = 0;
120}
121
122dol_banner_tab($object, 'ref', $linkback, $shownav, 'ref', 'ref', $morehtmlref);
123
124
125print '<div class="fichecenter">';
126print '<div class="underbanner clearboth"></div>';
127
128print '<br>';
129
130dol_print_object_info($object);
131
132print '</div>';
133
134// End of page
135llxFooter();
136$db->close();
$id
Support class for third parties, contacts, members, users or resources.
Definition account.php:48
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:67
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
Definition wrapper.php:91
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Definition wrapper.php:73
Class to manage warehouses.
Class to manage building of HTML components.
Class to manage projects.
dol_print_object_info($object, $usetable=0)
Show information on an object TODO Move this into html.formother.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0, $morecssdiv='')
Show tabs of a record.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
img_edit($titlealt='default', $float=0, $other='')
Show logo edit/modify fiche.
restrictedArea(User $user, $features, $object=0, $tableandshare='', $feature2='', $dbt_keyfield='fk_soc', $dbt_select='rowid', $isdraft=0, $mode=0)
Check permissions of a user to show a page and an object.
stock_prepare_head($object)
Prepare array with list of tabs.
Definition stock.lib.php:31