dolibarr  20.0.0-beta
list.php
Go to the documentation of this file.
1 <?php
2 /* Copyright (C) 2014-2023 Alexandre Spangaro <aspangaro@open-dsi.fr>
3  * Copyright (C) 2015 Frederic France <frederic.france@free.fr>
4  * Copyright (C) 2015 Juanjo Menent <jmenent@2byte.es>
5  * Copyright (C) 2016 Laurent Destailleur <eldy@users.sourceforge.net>
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.'/loan/class/loan.class.php';
30 
31 // Load translation files required by the page
32 $langs->loadLangs(array("banks", "bills", "compta", "loan"));
33 
34 // Get parameters
35 $action = GETPOST('action', 'aZ09') ? GETPOST('action', 'aZ09') : 'view'; // The action 'create'/'add', 'edit'/'update', 'view', ...
36 $massaction = GETPOST('massaction', 'alpha'); // The bulk action (combo box choice into lists)
37 $show_files = GETPOSTINT('show_files'); // Show files area generated by bulk actions ?
38 $confirm = GETPOST('confirm', 'alpha'); // Result of a confirmation
39 $cancel = GETPOST('cancel', 'alpha'); // We click on a Cancel button
40 $toselect = GETPOST('toselect', 'array'); // Array of ids of elements selected into a list
41 $contextpage = GETPOST('contextpage', 'aZ') ? GETPOST('contextpage', 'aZ') : str_replace('_', '', basename(dirname(__FILE__)).basename(__FILE__, '.php')); // To manage different context of search
42 $backtopage = GETPOST('backtopage', 'alpha'); // Go back to a dedicated page
43 $optioncss = GETPOST('optioncss', 'aZ'); // Option for the css output (always '' except when 'print')
44 $mode = GETPOST('mode', 'aZ'); // The output mode ('list', 'kanban', 'hierarchy', 'calendar', ...)
45 
46 $limit = GETPOSTINT('limit') ? GETPOSTINT('limit') : $conf->liste_limit;
47 $sortfield = GETPOST('sortfield', 'aZ09comma');
48 $sortorder = GETPOST('sortorder', 'aZ09comma');
49 $page = GETPOSTISSET('pageplusone') ? (GETPOSTINT('pageplusone') - 1) : GETPOSTINT("page");
50 if (empty($page) || $page < 0 || GETPOST('button_search', 'alpha') || GETPOST('button_removefilter', 'alpha')) {
51  // If $page is not defined, or '' or -1 or if we click on clear filters
52  $page = 0;
53 }
54 $offset = $limit * $page;
55 $pageprev = $page - 1;
56 $pagenext = $page + 1;
57 
58 // Initialize technical objects
59 $object = new Loan($db);
60 $extrafields = new ExtraFields($db);
61 $diroutputmassaction = $conf->loan->dir_output.'/temp/massgeneration/'.$user->id;
62 $hookmanager->initHooks(array($contextpage));
63 
64 // Fetch optionals attributes and labels
65 $extrafields->fetch_name_optionals_label($object->table_element);
66 //$extrafields->fetch_name_optionals_label($object->table_element_line);
67 
68 $search_array_options = $extrafields->getOptionalsFromPost($object->table_element, '', 'search_');
69 
70 // Default sort order (if not yet defined by previous GETPOST)
71 if (!$sortfield) {
72  $sortfield = "l.rowid";
73 }
74 if (!$sortorder) {
75  $sortorder = "DESC";
76 }
77 
78 // Definition of array of fields for columns
79 $arrayfields = array();
80 foreach ($object->fields as $key => $val) {
81  // If $val['visible']==0, then we never show the field
82  if (!empty($val['visible'])) {
83  $visible = (int) dol_eval($val['visible'], 1);
84  $arrayfields['t.'.$key] = array(
85  'label'=>$val['label'],
86  'checked'=>(($visible < 0) ? 0 : 1),
87  'enabled'=>(abs($visible) != 3 && (int) dol_eval($val['enabled'], 1)),
88  'position'=>$val['position'],
89  'help'=> isset($val['help']) ? $val['help'] : ''
90  );
91  }
92 }
93 // Extra fields
94 include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_array_fields.tpl.php';
95 
96 $object->fields = dol_sort_array($object->fields, 'position');
97 //$arrayfields['anotherfield'] = array('type'=>'integer', 'label'=>'AnotherField', 'checked'=>1, 'enabled'=>1, 'position'=>90, 'csslist'=>'right');
98 $arrayfields = dol_sort_array($arrayfields, 'position');
99 
100 $search_ref = GETPOST('search_ref', 'alpha');
101 $search_label = GETPOST('search_label', 'alpha');
102 $search_amount = GETPOST('search_amount', 'alpha');
103 
104 $permissiontoadd = $user->hasRight('loan', 'write');
105 
106 // Security check
107 $socid = GETPOSTINT('socid');
108 if ($user->socid) {
109  $socid = $user->socid;
110 }
111 $result = restrictedArea($user, 'loan', '', '', '');
112 
113 
114 /*
115  * Actions
116  */
117 
118 if (GETPOST('cancel', 'alpha')) {
119  $action = 'list';
120  $massaction = '';
121 }
122 if (!GETPOST('confirmmassaction', 'alpha') && $massaction != 'presend' && $massaction != 'confirm_presend') {
123  $massaction = '';
124 }
125 
126 $parameters = array();
127 $reshook = $hookmanager->executeHooks('doActions', $parameters, $object, $action); // Note that $action and $object may have been modified by some hooks
128 if ($reshook < 0) {
129  setEventMessages($hookmanager->error, $hookmanager->errors, 'errors');
130 }
131 
132 if (empty($reshook)) {
133  // Purge search criteria
134  if (GETPOST('button_removefilter_x', 'alpha') || GETPOST('button_removefilter.x', 'alpha') || GETPOST('button_removefilter', 'alpha')) { // All tests are required to be compatible with all browsers
135  $search_ref = "";
136  $search_label = "";
137  $search_amount = "";
138  }
139 }
140 
141 
142 /*
143  * View
144  */
145 $form = new Form($db);
146 $now = dol_now();
147 
148 $help_url="EN:Module_Loan|FR:Module_Emprunt";
149 $help_url = '';
150 $title = $langs->trans('Loans');
151 
152 
153 // Build and execute select
154 // --------------------------------------------------------------------
155 $sql = "SELECT l.rowid, l.label, l.capital, l.datestart, l.dateend, l.paid,";
156 $sql .= " SUM(pl.amount_capital) as alreadypaid";
157 
158 $sqlfields = $sql; // $sql fields to remove for count total
159 
160 $sql .= " FROM ".MAIN_DB_PREFIX."loan as l";
161 $linktopl = " LEFT JOIN ".MAIN_DB_PREFIX."payment_loan AS pl ON l.rowid = pl.fk_loan";
162 $sql .= $linktopl;
163 
164 $sql .= " WHERE l.entity = ".$conf->entity;
165 if ($search_amount) {
166  $sql .= natural_search("l.capital", $search_amount, 1);
167 }
168 if ($search_ref) {
169  $sql .= " AND l.rowid = ".((int) $search_ref);
170 }
171 if ($search_label) {
172  $sql .= natural_search("l.label", $search_label);
173 }
174 $sql .= " GROUP BY l.rowid, l.label, l.capital, l.paid, l.datestart, l.dateend";
175 
176 // Count total nb of records
177 $nbtotalofrecords = '';
178 if (!getDolGlobalInt('MAIN_DISABLE_FULL_SCANLIST')) {
179  /* The fast and low memory method to get and count full list converts the sql into a sql count */
180  $sqlforcount = preg_replace('/^'.preg_quote($sqlfields, '/').'/', 'SELECT COUNT(*) as nbtotalofrecords', $sql);
181  $sqlforcount = preg_replace('/GROUP BY .*$/', '', $sqlforcount);
182  $resql = $db->query($sqlforcount);
183  if ($resql) {
184  $objforcount = $db->fetch_object($resql);
185  $nbtotalofrecords = $objforcount->nbtotalofrecords;
186  } else {
187  dol_print_error($db);
188  }
189 
190  if (($page * $limit) > $nbtotalofrecords) { // if total resultset is smaller than the paging size (filtering), goto and load page 0
191  $page = 0;
192  $offset = 0;
193  }
194  $db->free($resql);
195 }
196 
197 // Complete request and execute it with limit
198 $sql .= $db->order($sortfield, $sortorder);
199 if ($limit) {
200  $sql .= $db->plimit($limit + 1, $offset);
201 }
202 
203 $resql = $db->query($sql);
204 if (!$resql) {
205  dol_print_error($db);
206  exit;
207 }
208 
209 $num = $db->num_rows($resql);
210 
211 
212 
213 // Direct jump if only one record found
214 if ($num == 1 && getDolGlobalInt('MAIN_SEARCH_DIRECT_OPEN_IF_ONLY_ONE') && $search_all && !$page) {
215  $obj = $db->fetch_object($resql);
216  $id = $obj->rowid;
217  header("Location: ".dol_buildpath('/mymodule/myobject_card.php', 1).'?id='.((int) $id));
218  exit;
219 }
220 
221 
222 // Output page
223 // --------------------------------------------------------------------
224 
225 llxHeader('', $title, $help_url);
226 
227 $arrayofselected = is_array($toselect) ? $toselect : array();
228 
229 $param = '';
230 if (!empty($mode)) {
231  $param .= '&mode='.urlencode($mode);
232 }
233 if (!empty($contextpage) && $contextpage != $_SERVER["PHP_SELF"]) {
234  $param .= '&contextpage='.urlencode($contextpage);
235 }
236 if ($limit > 0 && $limit != $conf->liste_limit) {
237  $param .= '&limit='.((int) $limit);
238 }
239 if ($optioncss != '') {
240  $param .= '&optioncss='.urlencode($optioncss);
241 }
242 if ($search_ref) {
243  $param .= "&search_ref=".urlencode($search_ref);
244 }
245 if ($search_label) {
246  $param .= "&search_label=".urlencode($search_label);
247 }
248 if ($search_amount) {
249  $param .= "&search_amount=".urlencode($search_amount);
250 }
251 // Add $param from extra fields
252 include DOL_DOCUMENT_ROOT.'/core/tpl/extrafields_list_search_param.tpl.php';
253 // Add $param from hooks
254 $parameters = array('param' => &$param);
255 $reshook = $hookmanager->executeHooks('printFieldListSearchParam', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
256 $param .= $hookmanager->resPrint;
257 
258 // List of mass actions available
259 $arrayofmassactions = array();
260 if (!empty($permissiontodelete)) {
261  $arrayofmassactions['predelete'] = img_picto('', 'delete', 'class="pictofixedwidth"').$langs->trans("Delete");
262 }
263 if (GETPOSTINT('nomassaction') || in_array($massaction, array('presend', 'predelete'))) {
264  $arrayofmassactions = array();
265 }
266 $massactionbutton = $form->selectMassAction('', $arrayofmassactions);
267 
268 
269 $url = DOL_URL_ROOT.'/loan/card.php?action=create';
270 if (!empty($socid)) {
271  $url .= '&socid='.$socid;
272 }
273 $newcardbutton = '';
274 $newcardbutton .= dolGetButtonTitle($langs->trans('ViewList'), '', 'fa fa-bars imgforviewmode', $_SERVER["PHP_SELF"].'?mode=common'.preg_replace('/(&|\?)*mode=[^&]+/', '', $param), '', ((empty($mode) || $mode == 'common') ? 2 : 1), array('morecss'=>'reposition'));
275 $newcardbutton .= dolGetButtonTitle($langs->trans('ViewKanban'), '', 'fa fa-th-list imgforviewmode', $_SERVER["PHP_SELF"].'?mode=kanban'.preg_replace('/(&|\?)*mode=[^&]+/', '', $param), '', ($mode == 'kanban' ? 2 : 1), array('morecss'=>'reposition'));
276 $newcardbutton .= dolGetButtonTitleSeparator();
277 $newcardbutton .= dolGetButtonTitle($langs->trans('NewLoan'), '', 'fa fa-plus-circle', $url, '', $permissiontoadd);
278 
279 $massactionbutton = $form->selectMassAction('', $arrayofmassactions);
280 
281 print '<form method="POST" id="searchFormList" action="'.$_SERVER["PHP_SELF"].'">'."\n";
282 if ($optioncss != '') {
283  print '<input type="hidden" name="optioncss" value="'.$optioncss.'">';
284 }
285 print '<input type="hidden" name="token" value="'.newToken().'">';
286 print '<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
287 print '<input type="hidden" name="action" value="list">';
288 print '<input type="hidden" name="sortfield" value="'.$sortfield.'">';
289 print '<input type="hidden" name="sortorder" value="'.$sortorder.'">';
290 print '<input type="hidden" name="page" value="'.$page.'">';
291 print '<input type="hidden" name="contextpage" value="'.$contextpage.'">';
292 print '<input type="hidden" name="page_y" value="">';
293 print '<input type="hidden" name="mode" value="'.$mode.'">';
294 
295 $newcardbutton = '';
296 $newcardbutton .= dolGetButtonTitle($langs->trans('ViewList'), '', 'fa fa-bars imgforviewmode', $_SERVER["PHP_SELF"].'?mode=common'.preg_replace('/(&|\?)*mode=[^&]+/', '', $param), '', ((empty($mode) || $mode == 'common') ? 2 : 1), array('morecss'=>'reposition'));
297 $newcardbutton .= dolGetButtonTitle($langs->trans('ViewKanban'), '', 'fa fa-th-list imgforviewmode', $_SERVER["PHP_SELF"].'?mode=kanban'.preg_replace('/(&|\?)*mode=[^&]+/', '', $param), '', ($mode == 'kanban' ? 2 : 1), array('morecss'=>'reposition'));
298 $newcardbutton .= dolGetButtonTitleSeparator();
299 $newcardbutton .= dolGetButtonTitle($langs->trans('New'), '', 'fa fa-plus-circle', dol_buildpath('/loan/card.php', 1).'?action=create&backtopage='.urlencode($_SERVER['PHP_SELF']), '', $permissiontoadd);
300 
301 print_barre_liste($title, $page, $_SERVER["PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords, 'money-bill-alt', 0, $newcardbutton, '', $limit, 0, 0, 1);
302 
303 $moreforfilter = '';
304 
305 $parameters = array();
306 $reshook = $hookmanager->executeHooks('printFieldPreListTitle', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
307 if (empty($reshook)) {
308  $moreforfilter .= $hookmanager->resPrint;
309 } else {
310  $moreforfilter = $hookmanager->resPrint;
311 }
312 
313 if (!empty($moreforfilter)) {
314  print '<div class="liste_titre liste_titre_bydiv centpercent">';
315  print $moreforfilter;
316  $parameters = array();
317  $reshook = $hookmanager->executeHooks('printFieldPreListTitle', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
318  print $hookmanager->resPrint;
319  print '</div>';
320 }
321 
322 $varpage = empty($contextpage) ? $_SERVER["PHP_SELF"] : $contextpage;
323 $htmlofselectarray = $form->multiSelectArrayWithCheckbox('selectedfields', $arrayfields, $varpage, getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')); // This also change content of $arrayfields with user setup
324 $selectedfields = ($mode != 'kanban' ? $htmlofselectarray : '');
325 $selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons('checkforselect', 1) : '');
326 
327 print '<div class="div-table-responsive">'; // You can use div-table-responsive-no-min if you don't need reserved height for your table
328 print '<table class="tagtable nobottomiftotal liste'.($moreforfilter ? " listwithfilterbefore" : "").'">'."\n";
329 
330 // Fields title search
331 // --------------------------------------------------------------------
332 print '<tr class="liste_titre_filter">';
333 // Action column
334 if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
335  print '<td class="liste_titre center maxwidthsearch">';
336  $searchpicto = $form->showFilterButtons('left');
337  print $searchpicto;
338  print '</td>';
339 }
340 
341 // Filter: Ref
342 print '<td class="liste_titre"><input class="flat" size="4" type="text" name="search_ref" value="'.$search_ref.'"></td>';
343 
344 // Filter: Label
345 print '<td class="liste_titre"><input class="flat" size="12" type="text" name="search_label" value="'.$search_label.'"></td>';
346 
347 // Filter: Amount
348 print '<td class="liste_titre right" ><input class="flat" size="8" type="text" name="search_amount" value="'.$search_amount.'"></td>';
349 
350 // No filter: Date start
351 print '<td class="liste_titre">&nbsp;</td>';
352 
353 // No filter: Date end
354 print '<td class="liste_titre">&nbsp;</td>';
355 
356 // No filter: Status
357 print '<td class="liste_titre"></td>';
358 
359 // Action column
360 if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
361  print '<td class="liste_titre center maxwidthsearch">';
362  $searchpicto = $form->showFilterButtons();
363  print $searchpicto;
364  print '</td>';
365 }
366 print '</tr>'."\n";
367 
368 $totalarray = array();
369 $totalarray['nbfield'] = 0;
370 
371 // Fields title label
372 // --------------------------------------------------------------------
373 print '<tr class="liste_titre">';
374 // Action column
375 if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
376  print_liste_field_titre('', $_SERVER["PHP_SELF"], "", '', '', '', $sortfield, $sortorder, 'maxwidthsearch ');
377  $totalarray['nbfield']++;
378 }
379 print_liste_field_titre("Ref", $_SERVER["PHP_SELF"], "l.rowid", "", $param, "", $sortfield, $sortorder);
380 $totalarray['nbfield']++;
381 print_liste_field_titre("Label", $_SERVER["PHP_SELF"], "l.label", "", $param, '', $sortfield, $sortorder, 'left ');
382 $totalarray['nbfield']++;
383 print_liste_field_titre("LoanCapital", $_SERVER["PHP_SELF"], "l.capital", "", $param, '', $sortfield, $sortorder, 'right ');
384 $totalarray['nbfield']++;
385 print_liste_field_titre("DateStart", $_SERVER["PHP_SELF"], "l.datestart", "", $param, '', $sortfield, $sortorder, 'center ');
386 $totalarray['nbfield']++;
387 print_liste_field_titre("DateEnd", $_SERVER["PHP_SELF"], "l.dateend", "", $param, '', $sortfield, $sortorder, 'center ');
388 $totalarray['nbfield']++;
389 print_liste_field_titre("Status", $_SERVER["PHP_SELF"], "l.paid", "", $param, '', $sortfield, $sortorder, 'right ');
390 $totalarray['nbfield']++;
391 if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
392  print_liste_field_titre('', $_SERVER["PHP_SELF"], "", '', '', '', $sortfield, $sortorder, 'maxwidthsearch ');
393  $totalarray['nbfield']++;
394 }
395 print "</tr>\n";
396 
397 
398 // Loop on record
399 // --------------------------------------------------------------------
400 $i = 0;
401 $savnbfield = $totalarray['nbfield'];
402 $totalarray = array();
403 $totalarray['nbfield'] = 0;
404 $imaxinloop = ($limit ? min($num, $limit) : $num);
405 while ($i < $imaxinloop) {
406  $obj = $db->fetch_object($resql);
407  if (empty($obj)) {
408  break; // Should not happen
409  }
410 
411  $object->id = $obj->rowid;
412  $object->ref = $obj->rowid;
413  $object->label = $obj->label;
414  $object->paid = $obj->paid;
415 
416 
417  if ($mode == 'kanban') {
418  if ($i == 0) {
419  print '<tr class="trkanban"><td colspan="'.$savnbfield.'">';
420  print '<div class="box-flex-container kanban">';
421  }
422  // Output Kanban
423  $object->datestart= $obj->datestart;
424  $object->dateend = $obj->dateend;
425  $object->capital = $obj->capital;
426  $object->totalpaid = $obj->paid;
427 
428  // Output Kanban
429  $selected = -1;
430  if ($massactionbutton || $massaction) { // If we are in select mode (massactionbutton defined) or if we have already selected and sent an action ($massaction) defined
431  $selected = 0;
432  if (in_array($object->id, $arrayofselected)) {
433  $selected = 1;
434  }
435  }
436  print $object->getKanbanView('', array('selected' => $selected));
437  if ($i == ($imaxinloop - 1)) {
438  print '</div>';
439  print '</td></tr>';
440  }
441  } else {
442  // Show line of result
443  $j = 0;
444  print '<tr data-rowid="'.$object->id.'" class="oddeven">';
445 
446  // Action column
447  if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
448  print '<td></td>';
449  }
450 
451  // Ref
452  print '<td>'.$object->getNomUrl(1).'</td>';
453 
454  // Label
455  print '<td>'.dol_trunc($obj->label, 42).'</td>';
456 
457  // Capital
458  print '<td class="right maxwidth100"><span class="amount">'.price($obj->capital).'</span></td>';
459 
460  // Date start
461  print '<td class="center width100">'.dol_print_date($db->jdate($obj->datestart), 'day').'</td>';
462 
463  // Date end
464  print '<td class="center width100">'.dol_print_date($db->jdate($obj->dateend), 'day').'</td>';
465 
466  print '<td class="right nowrap">';
467  print $object->LibStatut($obj->paid, 5, $obj->alreadypaid);
468  print '</td>';
469 
470  // Action column
471  if (!getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
472  print '<td></td>';
473  }
474 
475  print '</tr>'."\n";
476  }
477  $i++;
478 }
479 
480 // If no record found
481 if ($num == 0) {
482  $colspan = 7;
483  //foreach ($arrayfields as $key => $val) { if (!empty($val['checked'])) $colspan++; }
484  print '<tr><td colspan="'.$colspan.'" class="opacitymedium">'.$langs->trans("NoRecordFound").'</td></tr>';
485 }
486 
487 $db->free($resql);
488 
489 $parameters = array('arrayfields'=>$arrayfields, 'sql'=>$sql);
490 $reshook = $hookmanager->executeHooks('printFieldListFooter', $parameters, $object, $action); // Note that $action and $object may have been modified by hook
491 print $hookmanager->resPrint;
492 
493 print '</table>'."\n";
494 print '</div>'."\n";
495 
496 print '</form>'."\n";
497 
498 // End of page
499 llxFooter();
500 $db->close();
if($user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition: card.php:58
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 standard extra fields.
Class to manage generation of HTML components Only common components must be here.
Loan.
Definition: loan.class.php:31
if(isModEnabled('invoice') && $user->hasRight('facture', 'lire')) if((isModEnabled('fournisseur') &&!getDolGlobalString('MAIN_USE_NEW_SUPPLIERMOD') && $user->hasRight("fournisseur", "facture", "lire"))||(isModEnabled('supplier_invoice') && $user->hasRight("supplier_invoice", "lire"))) if(isModEnabled('don') && $user->hasRight('don', 'lire')) if(isModEnabled('tax') && $user->hasRight('tax', 'charges', 'lire')) if(isModEnabled('invoice') &&isModEnabled('order') && $user->hasRight("commande", "lire") &&!getDolGlobalString('WORKFLOW_DISABLE_CREATE_INVOICE_FROM_ORDER')) $sql
Social contributions to pay.
Definition: index.php:745
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
dolGetButtonTitle($label, $helpText='', $iconClass='fa fa-file', $url='', $id='', $status=1, $params=array())
Function dolGetButtonTitle : this kind of buttons are used in title in list.
dol_eval($s, $returnvalue=1, $hideerrors=1, $onlysimplestring='1')
Replace eval function to add more security.
natural_search($fields, $value, $mode=0, $nofirstand=0)
Generate natural SQL search string for a criteria (this criteria can be tested on one or several fiel...
dol_now($mode='auto')
Return date for now.
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
dol_sort_array(&$array, $index, $order='asc', $natsort=0, $case_sensitive=0, $keepindex=0)
Advanced sort array by the value of a given key, which produces ascending (default) or descending out...
print_liste_field_titre($name, $file="", $field="", $begin="", $moreparam="", $moreattrib="", $sortfield="", $sortorder="", $prefix="", $tooltip="", $forcenowrapcolumntitle=0)
Show title line of an array.
dolGetButtonTitleSeparator($moreClass="")
Add space between dolGetButtonTitle.
print_barre_liste($title, $page, $file, $options='', $sortfield='', $sortorder='', $morehtmlcenter='', $num=-1, $totalnboflines='', $picto='generic', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limit=-1, $hideselectlimit=0, $hidenavigation=0, $pagenavastextinput=0, $morehtmlrightbeforearrow='')
Print a title with navigation controls for pagination.
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_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
dol_print_error($db=null, $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname from a POST of a form.
getDolGlobalString($key, $default='')
Return dolibarr global constant string value.
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.