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@inodbox.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.'/expedition/class/expedition.class.php';
30require_once DOL_DOCUMENT_ROOT.'/core/lib/sendings.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}
35
36// Load translation files required by the page
37$langs->loadLangs(array('sendings', 'companies', 'bills', 'deliveries', 'orders', 'stocks', 'other', 'propal'));
38
39$id = (GETPOST('id', 'int') ? GETPOST('id', 'int') : GETPOST('facid', 'int')); // For backward compatibility
40$ref = GETPOST('ref', 'alpha');
41$action = GETPOST('action', 'aZ09');
42
43$object = new Expedition($db);
44if ($id > 0 || !empty($ref)) {
45 $object->fetch($id, $ref);
46 $object->fetch_thirdparty();
47
48 if (!empty($object->origin)) {
49 $typeobject = $object->origin;
50 $origin = $object->origin;
51 $object->fetch_origin();
52 }
53
54 // Linked documents
55 if ($typeobject == 'commande' && $object->$typeobject->id && isModEnabled('commande')) {
56 $objectsrc = new Commande($db);
57 $objectsrc->fetch($object->$typeobject->id);
58 }
59 if ($typeobject == 'propal' && $object->$typeobject->id && isModEnabled("propal")) {
60 $objectsrc = new Propal($db);
61 $objectsrc->fetch($object->$typeobject->id);
62 }
63
64 $upload_dir = $conf->expedition->dir_output."/sending/".dol_sanitizeFileName($object->ref);
65}
66
67$permissionnote = $user->rights->expedition->creer; // Used by the include of actions_setnotes.inc.php
68
69// Security check
70if ($user->socid) {
71 $socid = $user->socid;
72}
73
74$hookmanager->initHooks(array('expeditionnote'));
75$result = restrictedArea($user, 'expedition', $object->id, '');
76
77
78/*
79 * Actions
80 */
81
82$reshook = $hookmanager->executeHooks('doActions', array(), $object, $action); // Note that $action and $object may have been modified by some hooks
83if ($reshook < 0) {
84 setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
85}
86if (empty($reshook)) {
87 include DOL_DOCUMENT_ROOT.'/core/actions_setnotes.inc.php'; // Must be include, not include_once
88}
89
90
91/*
92 * View
93 */
94
95llxHeader();
96
97$form = new Form($db);
98
99if ($id > 0 || !empty($ref)) {
100 $head = shipping_prepare_head($object);
101 print dol_get_fiche_head($head, 'note', $langs->trans("Shipment"), -1, $object->picto);
102
103
104 // Shipment card
105 $linkback = '<a href="'.DOL_URL_ROOT.'/expedition/list.php?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
106
107 $morehtmlref = '<div class="refidno">';
108 // Ref customer shipment
109 $morehtmlref .= $form->editfieldkey("RefCustomer", '', $object->ref_customer, $object, $user->hasRight('expedition', 'creer'), 'string', '', 0, 1);
110 $morehtmlref .= $form->editfieldval("RefCustomer", '', $object->ref_customer, $object, $user->hasRight('expedition', 'creer'), 'string', '', null, null, '', 1);
111 // Thirdparty
112 $morehtmlref .= '<br>'.$object->thirdparty->getNomUrl(1);
113 // Project
114 if (isModEnabled('project')) {
115 $langs->load("projects");
116 $morehtmlref .= '<br>';
117 if (0) { // Do not change on shipment
118 $morehtmlref .= img_picto($langs->trans("Project"), 'project', 'class="pictofixedwidth"');
119 if ($action != 'classify') {
120 $morehtmlref .= '<a class="editfielda" href="'.$_SERVER['PHP_SELF'].'?action=classify&token='.newToken().'&id='.$object->id.'">'.img_edit($langs->transnoentitiesnoconv('SetProject')).'</a> ';
121 }
122 $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$object->id, $objectsrc->socid, $objectsrc->fk_project, ($action == 'classify' ? 'projectid' : 'none'), 0, 0, 0, 1, '', 'maxwidth300');
123 } else {
124 if (!empty($objectsrc) && !empty($objectsrc->fk_project)) {
125 $proj = new Project($db);
126 $proj->fetch($objectsrc->fk_project);
127 $morehtmlref .= $proj->getNomUrl(1);
128 if ($proj->title) {
129 $morehtmlref .= '<span class="opacitymedium"> - '.dol_escape_htmltag($proj->title).'</span>';
130 }
131 }
132 }
133 }
134 $morehtmlref .= '</div>';
135
136
137 dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
138
139
140 print '<div class="underbanner clearboth"></div>';
141
142 $cssclass = 'titlefield';
143 include DOL_DOCUMENT_ROOT.'/core/tpl/notes.tpl.php';
144
145 print dol_get_fiche_end();
146}
147
148// End of page
149llxFooter();
150$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 customers orders.
Class to manage shipments.
Class to manage generation of HTML components Only common components must be here.
Class to manage projects.
Class to manage proposals.
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.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
img_edit($titlealt='default', $float=0, $other='')
Show logo editer/modifier 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.
shipping_prepare_head($object)
Prepare array with list of tabs.