dolibarr 19.0.3
note.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2004 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2008 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@capnetworks.com>
5 * Copyright (C) 2013 Florian Henry <florian.henry@open-concept.pro>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program. If not, see <https://www.gnu.org/licenses/>.
19 */
20
27// Load Dolibarr environment
28require '../main.inc.php';
29require_once DOL_DOCUMENT_ROOT.'/reception/class/reception.class.php';
30require_once DOL_DOCUMENT_ROOT.'/core/lib/reception.lib.php';
31if (isModEnabled('project')) {
32 require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
33 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formprojet.class.php';
34}
35require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.commande.class.php';
36require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.commande.dispatch.class.php';
37
38$langs->loadLangs(array("receptions", "companies", "bills", 'deliveries', 'orders', 'stocks', 'other', 'propal'));
39
40$id = (GETPOST('id', 'int') ? GETPOST('id', 'int') : GETPOST('facid', 'int')); // For backward compatibility
41$ref = GETPOST('ref', 'alpha');
42$action = GETPOST('action', 'aZ09');
43
44$object = new Reception($db);
45if ($id > 0 || !empty($ref)) {
46 $object->fetch($id, $ref);
47 $object->fetch_thirdparty();
48
49 if (!empty($object->origin)) {
50 $origin = $object->origin;
51
52 $object->fetch_origin();
53 $typeobject = $object->origin;
54 }
55
56 // Linked documents
57 if ($origin == 'order_supplier' && $object->$typeobject->id && isModEnabled("supplier_order")) {
58 $objectsrc = new CommandeFournisseur($db);
59 $objectsrc->fetch($object->$typeobject->id);
60 }
61}
62
63// Initialize technical object to manage hooks of page. Note that conf->hooks_modules contains array of hook context
64$hookmanager->initHooks(array('receptionnote'));
65
66// Security check
67if ($user->socid > 0) {
68 $socid = $user->socid;
69}
70
71if (isModEnabled("reception")) {
72 $permissiontoread = $user->rights->reception->lire;
73 $permissiontoadd = $user->rights->reception->creer;
74 $permissiondellink = $user->rights->reception->creer; // Used by the include of actions_dellink.inc.php
75 $permissiontovalidate = ((!getDolGlobalString('MAIN_USE_ADVANCED_PERMS') && !empty($user->rights->reception->creer)) || (getDolGlobalString('MAIN_USE_ADVANCED_PERMS') && !empty($user->rights->reception->reception_advance->validate)));
76 $permissiontodelete = $user->rights->reception->supprimer;
77} else {
78 $permissiontoread = $user->rights->fournisseur->commande->receptionner;
79 $permissiontoadd = $user->rights->fournisseur->commande->receptionner;
80 $permissiondellink = $user->rights->fournisseur->commande->receptionner; // Used by the include of actions_dellink.inc.php
81 $permissiontovalidate = ((!getDolGlobalString('MAIN_USE_ADVANCED_PERMS') && !empty($user->rights->fournisseur->commande->receptionner)) || (getDolGlobalString('MAIN_USE_ADVANCED_PERMS') && !empty($user->rights->fournisseur->commande_advance->check)));
82 $permissiontodelete = $user->rights->fournisseur->commande->receptionner;
83}
84$permissionnote = $user->rights->reception->creer; // Used by the include of actions_setnotes.inc.php
85
86// TODO Test on reception module on only
87if ($origin == 'reception') {
88 $result = restrictedArea($user, $origin, $object->id);
89} else {
90 if ($origin == 'supplierorder' || $origin == 'order_supplier') {
91 $result = restrictedArea($user, 'fournisseur', $object, 'commande_fournisseur', 'commande');
92 } elseif (!$user->hasRight($origin, 'lire') && !$user->hasRight($origin, 'read')) {
94 }
95}
96
97
98/*
99 * Actions
100 */
101
102$parameters = array();
103$reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
104if ($reshook < 0) {
105 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
106}
107if (empty($reshook)) {
108 include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once
109}
110
111
112/*
113 * View
114 */
115
116llxHeader('', $langs->trans('Reception'));
117
118$form = new Form($db);
119
120if ($id > 0 || !empty($ref)) {
121 $head = reception_prepare_head($object);
122 print dol_get_fiche_head($head, 'note', $langs->trans("Reception"), -1, 'dollyrevert');
123
124
125 // Reception card
126 $linkback = '<a href="'.DOL_URL_ROOT.'/reception/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
127
128 $morehtmlref = '<div class="refidno">';
129 // Ref customer reception
130 $morehtmlref .= $form->editfieldkey("RefSupplier", '', $object->ref_supplier, $object, $user->hasRight('reception', 'creer'), 'string', '', 0, 1);
131 $morehtmlref .= $form->editfieldval("RefSupplier", '', $object->ref_supplier, $object, $user->hasRight('reception', 'creer'), 'string', '', null, null, '', 1);
132 // Thirdparty
133 $morehtmlref .= '<br>'.$object->thirdparty->getNomUrl(1);
134 // Project
135 if (isModEnabled('project')) {
136 $langs->load("projects");
137 $morehtmlref .= '<br>';
138 if (0) { // Do not change on reception
139 $morehtmlref .= img_picto($langs->trans("Project"), 'project', 'class="pictofixedwidth"');
140 if ($action != 'classify' && $permissiontoadd) {
141 $morehtmlref .= '<a class="editfielda" href="'.$_SERVER['PHP_SELF'].'?action=classify&token='.newToken().'&id='.$object->id.'">'.img_edit($langs->transnoentitiesnoconv('SetProject')).'</a> ';
142 }
143 $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$object->id, (!getDolGlobalString('PROJECT_CAN_ALWAYS_LINK_TO_ALL_SUPPLIERS') ? $object->socid : -1), $object->fk_project, ($action == 'classify' ? 'projectid' : 'none'), 0, 0, 0, 1, '', 'maxwidth300');
144 } else {
145 if (!empty($objectsrc) && !empty($objectsrc->fk_project)) {
146 $proj = new Project($db);
147 $proj->fetch($objectsrc->fk_project);
148 $morehtmlref .= $proj->getNomUrl(1);
149 if ($proj->title) {
150 $morehtmlref .= '<span class="opacitymedium"> - '.dol_escape_htmltag($proj->title).'</span>';
151 }
152 }
153 }
154 }
155 $morehtmlref .= '</div>';
156
157 dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
158
159
160 print '<div class="underbanner clearboth"></div>';
161
162 $cssclass = 'titlefield';
163 include DOL_DOCUMENT_ROOT.'/core/tpl/notes.tpl.php';
164
165 print dol_get_fiche_end();
166}
167
168
169llxFooter();
170
171$db->close();
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Definition wrapper.php:55
llxFooter()
Empty footer.
Definition wrapper.php:69
Class to manage predefined suppliers products.
Class to manage generation of HTML components Only common components must be here.
Class to manage projects.
Class to manage receptions.
dol_banner_tab($object, $paramid, $morehtml='', $shownav=1, $fieldid='rowid', $fieldref='ref', $morehtmlref='', $moreparam='', $nodbprefix=0, $morehtmlleft='', $morehtmlstatus='', $onlybanner=0, $morehtmlright='')
Show tab footer of a card.
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='', $dragdropfile=0)
Show tabs of a record.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0)
Set event messages in dol_events session object.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
img_edit($titlealt='default', $float=0, $other='')
Show logo editer/modifier fiche.
reception_prepare_head(Reception $object)
Prepare array with list of tabs.
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.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.