dolibarr  17.0.4
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
28 require '../main.inc.php';
29 require_once DOL_DOCUMENT_ROOT.'/reception/class/reception.class.php';
30 require_once DOL_DOCUMENT_ROOT.'/core/lib/reception.lib.php';
31 if (!empty($conf->project->enabled)) {
32  require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
33  require_once DOL_DOCUMENT_ROOT.'/core/class/html.formprojet.class.php';
34 }
35 require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.commande.class.php';
36 require_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);
45 if ($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("fournisseur") && empty($conf->global->MAIN_USE_NEW_SUPPLIERMOD) || 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
67 if ($user->socid > 0) {
68  $socid = $user->socid;
69 }
70 
71 if (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 = ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->reception->creer)) || (!empty($conf->global->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 = ((empty($conf->global->MAIN_USE_ADVANCED_PERMS) && !empty($user->rights->fournisseur->commande->receptionner)) || (!empty($conf->global->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 if ($origin == 'reception') {
87  $result = restrictedArea($user, $origin, $object->id);
88 } else {
89  if ($origin == 'reception') {
90  $result = restrictedArea($user, $origin, $object->id);
91  } else {
92  if ($origin == 'supplierorder' || $origin == 'order_supplier') {
93  $result = restrictedArea($user, 'fournisseur', $origin_id, 'commande_fournisseur', 'commande');
94  } elseif (empty($user->rights->{$origin}->lire) && empty($user->rights->{$origin}->read)) {
96  }
97  }
98 }
99 
100 
101 
102 /*
103  * Actions
104  */
105 
106 $reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
107 if ($reshook < 0) {
108  setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
109 }
110 if (empty($reshook)) {
111  include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once
112 }
113 
114 
115 /*
116  * View
117  */
118 
119 llxHeader('', $langs->trans('Reception'));
120 
121 $form = new Form($db);
122 
123 if ($id > 0 || !empty($ref)) {
124  $head = reception_prepare_head($object);
125  print dol_get_fiche_head($head, 'note', $langs->trans("Reception"), -1, 'dollyrevert');
126 
127 
128  // Reception card
129  $linkback = '<a href="'.DOL_URL_ROOT.'/reception/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
130 
131  $morehtmlref = '<div class="refidno">';
132  // Ref customer reception
133  $morehtmlref .= $form->editfieldkey("RefSupplier", '', $object->ref_supplier, $object, $user->rights->reception->creer, 'string', '', 0, 1);
134  $morehtmlref .= $form->editfieldval("RefSupplier", '', $object->ref_supplier, $object, $user->rights->reception->creer, 'string', '', null, null, '', 1);
135  // Thirdparty
136  $morehtmlref .= '<br>'.$object->thirdparty->getNomUrl(1);
137  // Project
138  if (!empty($conf->project->enabled)) {
139  $langs->load("projects");
140  $morehtmlref .= '<br>';
141  if (0) { // Do not change on reception
142  $morehtmlref .= img_picto($langs->trans("Project"), 'project', 'class="pictofixedwidth"');
143  if ($action != 'classify' && $permissiontoadd) {
144  $morehtmlref .= '<a class="editfielda" href="'.$_SERVER['PHP_SELF'].'?action=classify&token='.newToken().'&id='.$object->id.'">'.img_edit($langs->transnoentitiesnoconv('SetProject')).'</a> ';
145  }
146  $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$object->id, (empty($conf->global->PROJECT_CAN_ALWAYS_LINK_TO_ALL_SUPPLIERS) ? $object->socid : -1), $object->fk_project, ($action == 'classify' ? 'projectid' : 'none'), 0, 0, 0, 1, '', 'maxwidth300');
147  } else {
148  if (!empty($objectsrc) && !empty($objectsrc->fk_project)) {
149  $proj = new Project($db);
150  $proj->fetch($objectsrc->fk_project);
151  $morehtmlref .= $proj->getNomUrl(1);
152  if ($proj->title) {
153  $morehtmlref .= '<span class="opacitymedium"> - '.dol_escape_htmltag($proj->title).'</span>';
154  }
155  }
156  }
157  }
158  $morehtmlref .= '</div>';
159 
160  dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
161 
162 
163  print '<div class="underbanner clearboth"></div>';
164 
165  $cssclass = 'titlefield';
166  include DOL_DOCUMENT_ROOT.'/core/tpl/notes.tpl.php';
167 
168  print dol_get_fiche_end();
169 }
170 
171 
172 llxFooter();
173 
174 $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:56
llxFooter()
Empty footer.
Definition: wrapper.php:70
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.
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:143
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='')
Show tabs of a record.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='')
Set event messages in dol_events session object.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
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.
isModEnabled($module)
Is Dolibarr module enabled.
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.