dolibarr  13.0.2
info.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2003-2005 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3  * Copyright (C) 2004-2016 Laurent Destailleur <eldy@users.sourceforge.net>
4  * Copyright (C) 2005-2012 Regis Houssin <regis.houssin@inodbox.com>
5  * Copyright (C) 2017 Ferran Marcet <fmarcet@2byte.es>
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 require '../../main.inc.php';
28 require_once DOL_DOCUMENT_ROOT.'/core/lib/fourn.lib.php';
29 require_once DOL_DOCUMENT_ROOT.'/core/lib/functions2.lib.php';
30 require_once DOL_DOCUMENT_ROOT.'/fourn/class/fournisseur.commande.class.php';
31 require_once DOL_DOCUMENT_ROOT.'/core/lib/company.lib.php';
32 if (!empty($conf->projet->enabled)) {
33  require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
34 }
35 
36 // Load translation files required by the page
37 $langs->loadLangs(array("suppliers", "orders", "companies", "stocks"));
38 
39 $id = GETPOST('id', 'int');
40 $ref = GETPOST('ref', 'alpha');
41 $action = GETPOST('action', 'aZ09');
42 
43 $limit = GETPOST('limit', 'int') ?GETPOST('limit', 'int') : $conf->liste_limit;
44 $sortfield = GETPOST("sortfield", 'alpha');
45 $sortorder = GETPOST("sortorder", 'alpha');
46 $page = GETPOST("page", 'int');
47 if (empty($page) || $page == -1) { $page = 0; } // If $page is not defined, or '' or -1
48 $offset = $limit * $page;
49 $pageprev = $page - 1;
50 $pagenext = $page + 1;
51 if (!$sortfield) $sortfield = 'a.datep,a.id';
52 if (!$sortorder) $sortorder = 'DESC,DESC';
53 
54 if (GETPOST('actioncode', 'array'))
55 {
56  $actioncode = GETPOST('actioncode', 'array', 3);
57  if (!count($actioncode)) $actioncode = '0';
58 } else {
59  $actioncode = GETPOST("actioncode", "alpha", 3) ?GETPOST("actioncode", "alpha", 3) : (GETPOST("actioncode") == '0' ? '0' : (empty($conf->global->AGENDA_DEFAULT_FILTER_TYPE_FOR_OBJECTS) ? '' : $conf->global->AGENDA_DEFAULT_FILTER_TYPE_FOR_OBJECTS));
60 }
61 $search_agenda_label = GETPOST('search_agenda_label');
62 
63 // Security check
64 $socid = 0;
65 if ($user->socid) $socid = $user->socid;
66 $result = restrictedArea($user, 'fournisseur', $id, 'commande_fournisseur', 'commande');
67 
68 if (!$user->rights->fournisseur->commande->lire) accessforbidden();
69 
70 
71 
72 
73 /*
74  * Actions
75  */
76 
77 $parameters = array('id'=>$id);
78 $reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
79 if ($reshook < 0) setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
80 
81 // Purge search criteria
82 if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')) // All test are required to be compatible with all browsers
83 {
84  $actioncode = '';
85  $search_agenda_label = '';
86 }
87 
88 
89 
90 /*
91  * View
92  */
93 
94 $form = new Form($db);
95 $object = new CommandeFournisseur($db);
96 
97 if ($id > 0 || !empty($ref))
98 {
99  $object->fetch($id, $ref);
100  $object->fetch_thirdparty();
101  $object->info($object->id);
102 }
103 
104 $title = $langs->trans("SupplierOrder").' - '.$object->ref.' '.$object->name;
105 if (!empty($conf->global->MAIN_HTML_TITLE) && preg_match('/projectnameonly/', $conf->global->MAIN_HTML_TITLE) && $object->name) $title = $object->ref.' '.$object->name.' - '.$langs->trans("Info");
106 $help_url = 'EN:Module_Suppliers_Orders|FR:CommandeFournisseur|ES:Módulo_Pedidos_a_proveedores';
107 llxHeader('', $title, $help_url);
108 
109 $now = dol_now();
110 
111 $head = ordersupplier_prepare_head($object);
112 
113 
114 print dol_get_fiche_head($head, 'info', $langs->trans("SupplierOrder"), -1, 'order');
115 
116 
117 // Supplier order card
118 
119 $linkback = '<a href="'.DOL_URL_ROOT.'/fourn/commande/list.php'.(!empty($socid) ? '?socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
120 
121 $morehtmlref = '<div class="refidno">';
122 // Ref supplier
123 $morehtmlref .= $form->editfieldkey("RefSupplier", 'ref_supplier', $object->ref_supplier, $object, 0, 'string', '', 0, 1);
124 $morehtmlref .= $form->editfieldval("RefSupplier", 'ref_supplier', $object->ref_supplier, $object, 0, 'string', '', null, null, '', 1);
125 // Thirdparty
126 $morehtmlref .= '<br>'.$langs->trans('ThirdParty').' : '.$object->thirdparty->getNomUrl(1);
127 // Project
128 if (!empty($conf->projet->enabled))
129 {
130  $langs->load("projects");
131  $morehtmlref .= '<br>'.$langs->trans('Project').' ';
132  if ($user->rights->fournisseur->commande->creer)
133  {
134  if ($action != 'classify') {
135  //$morehtmlref.='<a class="editfielda" href="' . $_SERVER['PHP_SELF'] . '?action=classify&amp;id=' . $object->id . '">' . img_edit($langs->transnoentitiesnoconv('SetProject')) . '</a> : ';
136  $morehtmlref .= ' : ';
137  }
138  if ($action == 'classify') {
139  //$morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'projectid', 0, 0, 1, 1);
140  $morehtmlref .= '<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
141  $morehtmlref .= '<input type="hidden" name="action" value="classin">';
142  $morehtmlref .= '<input type="hidden" name="token" value="'.newToken().'">';
143  $morehtmlref .= $formproject->select_projects($object->socid, $object->fk_project, 'projectid', $maxlength, 0, 1, 0, 1, 0, 0, '', 1);
144  $morehtmlref .= '<input type="submit" class="button valignmiddle" value="'.$langs->trans("Modify").'">';
145  $morehtmlref .= '</form>';
146  } else {
147  $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$object->id, $object->socid, $object->fk_project, 'none', 0, 0, 0, 1);
148  }
149  } else {
150  if (!empty($object->fk_project)) {
151  $proj = new Project($db);
152  $proj->fetch($object->fk_project);
153  $morehtmlref .= '<a href="'.DOL_URL_ROOT.'/projet/card.php?id='.$object->fk_project.'" title="'.$langs->trans('ShowProject').'">';
154  $morehtmlref .= $proj->ref;
155  $morehtmlref .= '</a>';
156  } else {
157  $morehtmlref .= '';
158  }
159  }
160 }
161 $morehtmlref .= '</div>';
162 
163 dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref', $morehtmlref);
164 
165 
166 print '<div class="fichecenter">';
167 print '<div class="underbanner clearboth"></div>';
168 
169 dol_print_object_info($object, 1);
170 
171 print '</div>';
172 
173 print '<div class="clearboth"></div>';
174 
176 
177 
178 
179 
180 // Actions buttons
181 
182 $out = '';
183 $permok = $user->rights->agenda->myactions->create;
184 if ($permok)
185 {
186  $out .= '&originid='.$object->id.'&origin=order_supplier';
187 }
188 
189 
190 print '<div class="tabsAction">';
191 
192 if (!empty($conf->agenda->enabled))
193 {
194  if (!empty($user->rights->agenda->myactions->create) || !empty($user->rights->agenda->allactions->create))
195  {
196  print '<a class="butAction" href="'.DOL_URL_ROOT.'/comm/action/card.php?action=create'.$out.'&backtopage='.urlencode($_SERVER["PHP_SELF"].'?id='.$object->id).'">'.$langs->trans("AddAction").'</a>';
197  } else {
198  print '<a class="butActionRefused classfortooltip" href="#">'.$langs->trans("AddAction").'</a>';
199  }
200 }
201 
202 print '</div>';
203 
204 
205 if (!empty($object->id))
206 {
207  $param = '&id='.$object->id;
208  if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) $param .= '&contextpage='.$contextpage;
209  if ($limit > 0 && $limit != $conf->liste_limit) $param .= '&limit='.$limit;
210 
211  print load_fiche_titre($langs->trans("ActionsOnOrder"), '', '');
212 
213  // List of actions on element
214  /*include_once DOL_DOCUMENT_ROOT.'/core/class/html.formactions.class.php';
215  $formactions=new FormActions($db);
216  $somethingshown = $formactions->showactions($object,'project',0);*/
217 
218  // List of todo actions
219  //show_actions_todo($conf,$langs,$db,$object,null,0,$actioncode);
220 
221  // List of done actions
222  //show_actions_done($conf,$langs,$db,$object,null,0,$actioncode, '', $filters, $sortfield, $sortorder);
223 
224  // List of all actions
225  $filters = array();
226  $filters['search_agenda_label'] = $search_agenda_label;
227  show_actions_done($conf, $langs, $db, $object, null, 0, $actioncode, '', $filters, $sortfield, $sortorder);
228 }
229 
230 // End of page
231 llxFooter();
232 $db->close();
GETPOST($paramname, $check= 'alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
ordersupplier_prepare_head($object)
Prepare array with list of tabs.
Definition: fourn.lib.php:124
dol_now($mode= 'auto')
Return date for now.
dol_print_object_info($object, $usetable=0)
Show informations on an object TODO Move this into html.formother.
show_actions_done($conf, $langs, $db, $filterobj, $objcon= '', $noprint=0, $actioncode= '', $donetodo= 'done', $filters=array(), $sortfield= 'a.datep, a.id', $sortorder= 'DESC', $module= '')
Show html area with actions (done or not, ignore the name of function).
llxHeader()
Empty header.
Definition: wrapper.php:45
setEventMessages($mesg, $mesgs, $style= 'mesgs', $messagekey= '')
Set event messages in dol_events session object.
Class to manage generation of HTML components Only common components must be here.
Class to manage projects.
load_fiche_titre($titre, $morehtmlright= '', $picto= 'generic', $pictoisfullpath=0, $id= '', $morecssontable= '', $morehtmlcenter= '')
Load a title with picto.
restrictedArea($user, $features, $objectid=0, $tableandshare= '', $feature2= '', $dbt_keyfield= 'fk_soc', $dbt_select= 'rowid', $isdraft=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 Calling this function terminate execution ...
Class to manage predefined suppliers products.
print $_SERVER["PHP_SELF"]
Edit parameters.
dol_get_fiche_head($links=array(), $active= '', $title= '', $notab=0, $picto= '', $pictoisfullpath=0, $morehtmlright= '', $morecss= '', $limittoshow=0, $moretabssuffix= '')
Show tabs of a record.
print
Draft customers invoices.
Definition: index.php:89
dol_get_fiche_end($notab=0)
Return tab footer of a card.
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.
llxFooter()
Empty footer.
Definition: wrapper.php:59