33require
'../main.inc.php';
34require_once DOL_DOCUMENT_ROOT.
'/core/lib/date.lib.php';
35require_once DOL_DOCUMENT_ROOT.
'/core/lib/company.lib.php';
36require_once DOL_DOCUMENT_ROOT.
'/expensereport/class/expensereport.class.php';
37require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
38require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formother.class.php';
39require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formexpensereport.class.php';
40require_once DOL_DOCUMENT_ROOT.
'/core/lib/usergroups.lib.php';
41require_once DOL_DOCUMENT_ROOT.
'/expensereport/class/expensereport_ik.class.php';
44$langs->loadLangs(array(
'companies',
'users',
'trips'));
46$action =
GETPOST(
'action',
'aZ09');
47$massaction =
GETPOST(
'massaction',
'alpha');
48$show_files =
GETPOST(
'show_files',
'int');
49$confirm =
GETPOST(
'confirm',
'alpha');
50$cancel =
GETPOST(
'cancel',
'alpha');
51$toselect =
GETPOST(
'toselect',
'array');
52$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') :
'expensereportlist';
53$mode =
GETPOST(
'mode',
'alpha');
55$childids = $user->getAllChildIds(1);
58$socid =
GETPOST(
'socid',
'int');
60 $socid = $user->socid;
67 if ($id == $user->id) {
70 if ($user->hasRight(
'expensereport',
'readall')) {
73 if ($user->hasRight(
'expensereport',
'lire') && in_array($id, $childids)) {
81$diroutputmassaction = $conf->expensereport->dir_output.
'/temp/massgeneration/'.$user->id;
85$limit =
GETPOST(
'limit',
'int') ?
GETPOST(
'limit',
'int') : $conf->liste_limit;
86$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
87$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
88$page = GETPOSTISSET(
'pageplusone') ? (
GETPOST(
'pageplusone') - 1) :
GETPOST(
"page",
'int');
89if (empty($page) || $page == -1) {
92$offset = $limit * $page;
99 $sortfield =
"d.date_debut";
103$sall = trim((
GETPOST(
'search_all',
'alphanohtml') !=
'') ?
GETPOST(
'search_all',
'alphanohtml') :
GETPOST(
'sall',
'alphanohtml'));
105$search_ref =
GETPOST(
'search_ref',
'alpha');
106$search_user =
GETPOST(
'search_user',
'int');
107$search_amount_ht =
GETPOST(
'search_amount_ht',
'alpha');
108$search_amount_vat =
GETPOST(
'search_amount_vat',
'alpha');
109$search_amount_ttc =
GETPOST(
'search_amount_ttc',
'alpha');
110$search_status = (
GETPOST(
'search_status',
'intcomma') !=
'' ?
GETPOST(
'search_status',
'intcomma') :
GETPOST(
'statut',
'intcomma'));
112$search_date_startday =
GETPOST(
'search_date_startday',
'int');
113$search_date_startmonth =
GETPOST(
'search_date_startmonth',
'int');
114$search_date_startyear =
GETPOST(
'search_date_startyear',
'int');
115$search_date_startendday =
GETPOST(
'search_date_startendday',
'int');
116$search_date_startendmonth =
GETPOST(
'search_date_startendmonth',
'int');
117$search_date_startendyear =
GETPOST(
'search_date_startendyear',
'int');
118$search_date_start =
dol_mktime(0, 0, 0, $search_date_startmonth, $search_date_startday, $search_date_startyear);
119$search_date_startend =
dol_mktime(23, 59, 59, $search_date_startendmonth, $search_date_startendday, $search_date_startendyear);
121$search_date_endday =
GETPOST(
'search_date_endday',
'int');
122$search_date_endmonth =
GETPOST(
'search_date_endmonth',
'int');
123$search_date_endyear =
GETPOST(
'search_date_endyear',
'int');
124$search_date_endendday =
GETPOST(
'search_date_endendday',
'int');
125$search_date_endendmonth =
GETPOST(
'search_date_endendmonth',
'int');
126$search_date_endendyear =
GETPOST(
'search_date_endendyear',
'int');
127$search_date_end =
dol_mktime(0, 0, 0, $search_date_endmonth, $search_date_endday, $search_date_endyear);
128$search_date_endend =
dol_mktime(23, 59, 59, $search_date_endendmonth, $search_date_endendday, $search_date_endendyear);
130$optioncss =
GETPOST(
'optioncss',
'alpha');
132if ($search_status ==
'') {
135if ($search_user ==
'') {
141$hookmanager->initHooks(array(
'expensereportlist'));
145$extrafields->fetch_name_optionals_label($object->table_element);
147$search_array_options = $extrafields->getOptionalsFromPost($object->table_element,
'',
'search_');
151$fieldstosearchall = array(
153 'd.note_public'=>
"NotePublic",
154 'u.lastname'=>
'EmployeeLastname',
155 'u.firstname'=>
"EmployeeFirstname",
158if (empty($user->socid)) {
159 $fieldstosearchall[
"d.note_private"] =
"NotePrivate";
163 'd.ref'=>array(
'label'=>$langs->trans(
"Ref"),
'checked'=>1),
164 'user'=>array(
'label'=>$langs->trans(
"User"),
'checked'=>1),
165 'd.date_debut'=>array(
'label'=>$langs->trans(
"DateStart"),
'checked'=>1),
166 'd.date_fin'=>array(
'label'=>$langs->trans(
"DateEnd"),
'checked'=>1),
167 'd.date_valid'=>array(
'label'=>$langs->trans(
"DateValidation"),
'checked'=>1),
168 'd.date_approve'=>array(
'label'=>$langs->trans(
"DateApprove"),
'checked'=>1),
169 'd.total_ht'=>array(
'label'=>$langs->trans(
"AmountHT"),
'checked'=>1),
170 'd.total_vat'=>array(
'label'=>$langs->trans(
"AmountVAT"),
'checked'=>1),
171 'd.total_ttc'=>array(
'label'=>$langs->trans(
"AmountTTC"),
'checked'=>1),
172 'd.date_create'=>array(
'label'=>$langs->trans(
"DateCreation"),
'checked'=>0,
'position'=>500),
173 'd.tms'=>array(
'label'=>$langs->trans(
"DateModificationShort"),
'checked'=>0,
'position'=>500),
174 'd.fk_statut'=>array(
'label'=>$langs->trans(
"Status"),
'checked'=>1,
'position'=>1000),
177include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_array_fields.tpl.php';
179$canedituser = (!empty($user->admin) || $user->hasRight(
'user',
'user',
'creer'));
181$objectuser =
new User($db);
188if (
GETPOST(
'cancel',
'alpha')) {
192if (!
GETPOST(
'confirmmassaction',
'alpha') && $massaction !=
'presend' && $massaction !=
'confirm_presend') {
196$parameters = array(
'socid'=>$socid);
197$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
202if (empty($reshook)) {
204 include DOL_DOCUMENT_ROOT.
'/core/actions_changeselectedfields.inc.php';
207 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')) {
210 $search_amount_ht =
"";
211 $search_amount_vat =
"";
212 $search_amount_ttc =
"";
214 $search_date_startday =
'';
215 $search_date_startmonth =
'';
216 $search_date_startyear =
'';
217 $search_date_startendday =
'';
218 $search_date_startendmonth =
'';
219 $search_date_startendyear =
'';
220 $search_date_start =
'';
221 $search_date_startend =
'';
222 $search_date_endday =
'';
223 $search_date_endmonth =
'';
224 $search_date_endyear =
'';
225 $search_date_endendday =
'';
226 $search_date_endendmonth =
'';
227 $search_date_endendyear =
'';
228 $search_date_end =
'';
229 $search_date_endend =
'';
231 $search_array_options = array();
233 if (
GETPOST(
'button_removefilter_x',
'alpha') ||
GETPOST(
'button_removefilter.x',
'alpha') ||
GETPOST(
'button_removefilter',
'alpha')
234 ||
GETPOST(
'button_search_x',
'alpha') ||
GETPOST(
'button_search.x',
'alpha') ||
GETPOST(
'button_search',
'alpha')) {
239 $objectclass =
'ExpenseReport';
240 $objectlabel =
'ExpenseReport';
241 $permissiontoread = $user->rights->expensereport->lire;
242 $permissiontodelete = $user->rights->expensereport->supprimer;
243 $uploaddir = $conf->expensereport->dir_output;
244 include DOL_DOCUMENT_ROOT.
'/core/actions_massactions.inc.php';
252$form =
new Form($db);
257$fuser =
new User($db);
259$title = $langs->trans(
"TripsAndExpenses");
270 $fuser->fetch($id,
'',
'', 1);
272 $user_id = $fuser->id;
274 $search_user = $user_id;
277$sql =
"SELECT d.rowid, d.ref, d.fk_user_author, d.total_ht, d.total_tva, d.total_ttc, d.fk_statut as status,";
278$sql .=
" d.date_debut, d.date_fin, d.date_create, d.tms as date_modif, d.date_valid, d.date_approve, d.note_private, d.note_public,";
279$sql .=
" u.rowid as id_user, u.firstname, u.lastname, u.login, u.email, u.statut as user_status, u.photo";
281if (!empty($extrafields->attributes[$object->table_element][
'label'])) {
282 foreach ($extrafields->attributes[$object->table_element][
'label'] as $key => $val) {
283 $sql .= ($extrafields->attributes[$object->table_element][
'type'][$key] !=
'separate' ?
", ef.".$key.
" as options_".$key :
'');
287$parameters = array();
288$reshook = $hookmanager->executeHooks(
'printFieldListSelect', $parameters, $object, $action);
289$sql .= $hookmanager->resPrint;
293$sql .=
" FROM ".MAIN_DB_PREFIX.
"expensereport as d";
294if (isset($extrafields->attributes[$object->table_element][
'label']) && is_array($extrafields->attributes[$object->table_element][
'label']) && count($extrafields->attributes[$object->table_element][
'label'])) {
295 $sql .=
" LEFT JOIN ".MAIN_DB_PREFIX.$object->table_element.
"_extrafields as ef on (d.rowid = ef.fk_object)";
297$sql .=
", ".MAIN_DB_PREFIX.
"user as u";
298$sql .=
" WHERE d.fk_user_author = u.rowid AND d.entity IN (".getEntity(
'expensereport').
")";
304if (!empty($search_ref)) {
308if ($search_date_start) {
309 $sql .=
" AND d.date_debut >= '".$db->idate($search_date_start).
"'";
311if ($search_date_startend) {
312 $sql .=
" AND d.date_debut <= '".$db->idate($search_date_startend).
"'";
315if ($search_date_end) {
316 $sql .=
" AND d.date_fin >= '".$db->idate($search_date_end).
"'";
318if ($search_date_endend) {
319 $sql .=
" AND d.date_fin <= '".$db->idate($search_date_endend).
"'";
322if ($search_amount_ht !=
'') {
325if ($search_amount_ttc !=
'') {
329if ($search_user !=
'' && $search_user >= 0) {
330 $sql .=
" AND u.rowid = '".$db->escape($search_user).
"'";
333if ($search_status !=
'' && $search_status >= 0) {
334 $sql .=
" AND d.fk_statut IN (".$db->sanitize($search_status).
")";
337if (!$user->hasRight(
'expensereport',
'readall') && !$user->hasRight(
'expensereport',
'lire_tous')
338 && (!
getDolGlobalString(
'MAIN_USE_ADVANCED_PERMS') || !$user->hasRight(
'expensereport',
'writeall_advance'))) {
339 $sql .=
" AND d.fk_user_author IN (".$db->sanitize(join(
',', $childids)).
")\n";
342include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_sql.tpl.php';
344$parameters = array();
345$reshook = $hookmanager->executeHooks(
'printFieldListWhere', $parameters, $object, $action);
346$sql .= $hookmanager->resPrint;
349$nbtotalofrecords =
'';
352 $sqlforcount = preg_replace(
'/^'.preg_quote($sqlfields,
'/').
'/',
'SELECT COUNT(*) as nbtotalofrecords', $sql);
353 $sqlforcount = preg_replace(
'/GROUP BY .*$/',
'', $sqlforcount);
354 $resql = $db->query($sqlforcount);
356 $objforcount = $db->fetch_object($resql);
357 $nbtotalofrecords = $objforcount->nbtotalofrecords;
362 if (($page * $limit) > $nbtotalofrecords) {
370$sql .= $db->order($sortfield, $sortorder);
372 $sql .= $db->plimit($limit + 1, $offset);
376$resql = $db->query($sql);
378 $num = $db->num_rows($resql);
380 $arrayofselected = is_array($toselect) ? $toselect : array();
384 $param .=
'&mode='.urlencode($mode);
386 if (!empty($contextpage) && $contextpage != $_SERVER[
"PHP_SELF"]) {
387 $param .=
'&contextpage='.urlencode($contextpage);
389 if ($limit > 0 && $limit != $conf->liste_limit) {
390 $param .=
'&limit='.((int) $limit);
393 $param .=
"&sall=".urlencode($sall);
396 $param .=
"&search_ref=".urlencode($search_ref);
399 if ($search_date_startday) {
400 $param .=
'&search_date_startday='.urlencode($search_date_startday);
402 if ($search_date_startmonth) {
403 $param .=
'&search_date_startmonth='.urlencode($search_date_startmonth);
405 if ($search_date_startyear) {
406 $param .=
'&search_date_startyear='.urlencode($search_date_startyear);
408 if ($search_date_startendday) {
409 $param .=
'&search_date_startendday='.urlencode($search_date_startendday);
411 if ($search_date_startendmonth) {
412 $param .=
'&search_date_startendmonth='.urlencode($search_date_startendmonth);
414 if ($search_date_startendyear) {
415 $param .=
'&search_date_startendyear='.urlencode($search_date_startendyear);
418 if ($search_date_endday) {
419 $param .=
'&search_date_endday='.urlencode($search_date_endday);
421 if ($search_date_endmonth) {
422 $param .=
'&search_date_endmonth='.urlencode($search_date_endmonth);
424 if ($search_date_endyear) {
425 $param .=
'&search_date_endyear='.urlencode($search_date_endyear);
427 if ($search_date_endendday) {
428 $param .=
'&search_date_endendday='.urlencode($search_date_endendday);
430 if ($search_date_endendmonth) {
431 $param .=
'&search_date_endendmonth='.urlencode($search_date_endendmonth);
433 if ($search_date_endendyear) {
434 $param .=
'&search_date_endendyear='.urlencode($search_date_endendyear);
437 $param .=
"&search_user=".urlencode($search_user);
439 if ($search_amount_ht) {
440 $param .=
"&search_amount_ht=".urlencode($search_amount_ht);
442 if ($search_amount_ttc) {
443 $param .=
"&search_amount_ttc=".urlencode($search_amount_ttc);
445 if ($search_status >= 0) {
446 $param .=
"&search_status=".urlencode($search_status);
448 if ($optioncss !=
'') {
449 $param .=
'&optioncss='.urlencode($optioncss);
452 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_param.tpl.php';
455 $arrayofmassactions = array(
456 'generate_doc'=>
img_picto(
'',
'pdf',
'class="pictofixedwidth"').$langs->trans(
"ReGeneratePDF"),
457 'builddoc'=>
img_picto(
'',
'pdf',
'class="pictofixedwidth"').$langs->trans(
"PDFMerge"),
458 'presend'=>
img_picto(
'',
'email',
'class="pictofixedwidth"').$langs->trans(
"SendByMail"),
460 if ($user->hasRight(
'expensereport',
'supprimer')) {
461 $arrayofmassactions[
'predelete'] =
img_picto(
'',
'delete',
'class="pictofixedwidth"').$langs->trans(
"Delete");
463 if (in_array($massaction, array(
'presend',
'predelete'))) {
464 $arrayofmassactions = array();
466 $massactionbutton = $form->selectMassAction(
'', $arrayofmassactions);
469 print
'<form id="searchFormList" action="'.$_SERVER[
"PHP_SELF"].
'" method="POST">'.
"\n";
470 if ($optioncss !=
'') {
471 print
'<input type="hidden" name="optioncss" value="'.$optioncss.
'">';
473 print
'<input type="hidden" name="token" value="'.newToken().
'">';
474 print
'<input type="hidden" name="formfilteraction" id="formfilteraction" value="list">';
475 print
'<input type="hidden" name="action" value="'.($action ==
'edit' ?
'update' :
'list').
'">';
476 print
'<input type="hidden" name="contextpage" value="'.$contextpage.
'">';
477 print
'<input type="hidden" name="sortfield" value="'.$sortfield.
'">';
478 print
'<input type="hidden" name="sortorder" value="'.$sortorder.
'">';
479 print
'<input type="hidden" name="mode" value="'.$mode.
'">';
481 print
'<input type="hidden" name="id" value="'.$id.
'">';
485 $title = $langs->trans(
"User");
486 $linkback =
'<a href="'.DOL_URL_ROOT.
'/user/list.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
491 dol_banner_tab($fuser,
'id', $linkback, $user->hasRight(
'user',
'user',
'lire') || $user->admin);
495 if ($action !=
'edit') {
496 print
'<div class="tabsAction">';
498 $childids = $user->getAllChildIds(1);
500 $canedit = ((in_array($user_id, $childids) && $user->rights->expensereport->creer)
501 || ($conf->global->MAIN_USE_ADVANCED_PERMS && $user->rights->expensereport->writeall_advance));
505 print
'<a href="'.DOL_URL_ROOT.
'/expensereport/card.php?action=create&fk_user_author='.$fuser->id.
'" class="butAction">'.$langs->trans(
"AddTrip").
'</a>';
507 print
'<a href="#" class="butActionRefused" title="'.$langs->trans(
"NotEnoughPermissions").
'">'.$langs->trans(
"AddTrip").
'</a>';
512 print $form->buttonsSaveCancel(
"Save",
'');
515 $title = $langs->trans(
"ListTripsAndExpenses");
517 $url = DOL_URL_ROOT.
'/expensereport/card.php?action=create';
518 if (!empty($socid)) {
519 $url .=
'&socid='.$socid;
522 $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'));
523 $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'));
525 $newcardbutton .=
dolGetButtonTitle($langs->trans(
'NewTrip'),
'',
'fa fa-plus-circle', $url,
'', $user->hasRight(
'expensereport',
'creer'));
527 print_barre_liste($title, $page, $_SERVER[
"PHP_SELF"], $param, $sortfield, $sortorder, $massactionbutton, $num, $nbtotalofrecords,
'expensereport', 0, $newcardbutton,
'', $limit, 0, 0, 1);
530 $topicmail =
"SendExpenseReport";
531 $modelmail =
"expensereport";
533 $trackid =
'exp'.$object->id;
534 include DOL_DOCUMENT_ROOT.
'/core/tpl/massactions_pre.tpl.php';
537 foreach ($fieldstosearchall as $key => $val) {
538 $fieldstosearchall[$key] = $langs->trans($val);
540 print
'<div class="divsearchfieldfilter">'.$langs->trans(
"FilterOnInto", $sall).join(
', ', $fieldstosearchall).
'</div>';
545 $parameters = array();
546 $reshook = $hookmanager->executeHooks(
'printFieldPreListTitle', $parameters, $object, $action);
547 if (empty($reshook)) {
548 $moreforfilter .= $hookmanager->resPrint;
550 $moreforfilter = $hookmanager->resPrint;
553 if (!empty($moreforfilter)) {
554 print
'<div class="liste_titre liste_titre_bydiv centpercent">';
555 print $moreforfilter;
559 $varpage = empty($contextpage) ? $_SERVER[
"PHP_SELF"] : $contextpage;
560 $selectedfields = $form->multiSelectArrayWithCheckbox(
'selectedfields', $arrayfields, $varpage,
getDolGlobalString(
'MAIN_CHECKBOX_LEFT_COLUMN'));
561 $selectedfields .= (count($arrayofmassactions) ? $form->showCheckAddButtons(
'checkforselect', 1) :
'');
563 print
'<div class="div-table-responsive">';
564 print
'<table class="tagtable nobottomiftotal liste'.($moreforfilter ?
" listwithfilterbefore" :
"").
'">'.
"\n";
567 print
'<tr class="liste_titre_filter">';
570 print
'<td class="liste_titre maxwidthsearch">';
571 $searchpicto = $form->showFilterButtons(
'left');
575 if (!empty($arrayfields[
'd.ref'][
'checked'])) {
576 print
'<td class="liste_titre" align="left">';
577 print
'<input class="flat" size="15" type="text" name="search_ref" value="'.$search_ref.
'">';
581 if (!empty($arrayfields[
'user'][
'checked'])) {
582 if ($user->hasRight(
'expensereport',
'readall') || $user->hasRight(
'expensereport',
'lire_tous')) {
583 print
'<td class="liste_titre maxwidthonspartphone" align="left">';
584 print $form->select_dolusers($search_user,
'search_user', 1,
'', 0,
'',
'', 0, 0, 0,
'', 0,
'',
'maxwidth200');
587 print
'<td class="liste_titre"> </td>';
591 if (!empty($arrayfields[
'd.date_debut'][
'checked'])) {
592 print
'<td class="liste_titre" align="center">';
593 print
'<div class="nowrapfordate">';
594 print $form->selectDate($search_date_start ? $search_date_start : -1,
'search_date_start', 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'From'));
596 print
'<div class="nowrapfordate">';
597 print $form->selectDate($search_date_startend ? $search_date_startend : -1,
'search_date_startend', 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'to'));
602 if (!empty($arrayfields[
'd.date_fin'][
'checked'])) {
603 print
'<td class="liste_titre" align="center">';
604 print
'<div class="nowrapfordate">';
605 print $form->selectDate($search_date_end ? $search_date_end : -1,
'search_date_end', 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'From'));
607 print
'<div class="nowrapfordate">';
608 print $form->selectDate($search_date_endend ? $search_date_endend : -1,
'search_date_endend', 0, 0, 1,
'', 1, 0, 0,
'',
'',
'',
'', 1,
'', $langs->trans(
'to'));
613 if (!empty($arrayfields[
'd.date_valid'][
'checked'])) {
614 print
'<td class="liste_titre" align="center">';
620 if (!empty($arrayfields[
'd.date_approve'][
'checked'])) {
621 print
'<td class="liste_titre" align="center">';
627 if (!empty($arrayfields[
'd.total_ht'][
'checked'])) {
628 print
'<td class="liste_titre right"><input class="flat" type="text" size="5" name="search_amount_ht" value="'.$search_amount_ht.
'"></td>';
630 if (!empty($arrayfields[
'd.total_vat'][
'checked'])) {
631 print
'<td class="liste_titre right"><input class="flat" type="text" size="5" name="search_amount_vat" value="'.$search_amount_vat.
'"></td>';
634 if (!empty($arrayfields[
'd.total_ttc'][
'checked'])) {
635 print
'<td class="liste_titre right"><input class="flat" type="text" size="5" name="search_amount_ttc" value="'.$search_amount_ttc.
'"></td>';
638 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_input.tpl.php';
641 $parameters = array(
'arrayfields'=>$arrayfields);
642 $reshook = $hookmanager->executeHooks(
'printFieldListOption', $parameters, $object, $action);
643 print $hookmanager->resPrint;
645 if (!empty($arrayfields[
'd.date_create'][
'checked'])) {
646 print
'<td class="liste_titre">';
650 if (!empty($arrayfields[
'd.tms'][
'checked'])) {
651 print
'<td class="liste_titre">';
655 if (!empty($arrayfields[
'd.fk_statut'][
'checked'])) {
656 print
'<td class="liste_titre center parentonrightofpage">';
657 $formexpensereport->selectExpensereportStatus($search_status,
'search_status', 1, 1);
662 print
'<td class="liste_titre maxwidthsearch">';
663 $searchpicto = $form->showFilterButtons();
670 $totalarray = array();
671 $totalarray[
'nbfield'] = 0;
673 print
'<tr class="liste_titre">';
675 print_liste_field_titre($selectedfields, $_SERVER[
"PHP_SELF"],
"",
'',
'',
'', $sortfield, $sortorder,
'maxwidthsearch center ');
676 $totalarray[
'nbfield']++;
678 if (!empty($arrayfields[
'd.ref'][
'checked'])) {
679 print_liste_field_titre($arrayfields[
'd.ref'][
'label'], $_SERVER[
"PHP_SELF"],
"d.ref",
"", $param,
'', $sortfield, $sortorder);
680 $totalarray[
'nbfield']++;
682 if (!empty($arrayfields[
'user'][
'checked'])) {
683 print_liste_field_titre($arrayfields[
'user'][
'label'], $_SERVER[
"PHP_SELF"],
"u.lastname",
"", $param,
'', $sortfield, $sortorder);
684 $totalarray[
'nbfield']++;
686 if (!empty($arrayfields[
'd.date_debut'][
'checked'])) {
687 print_liste_field_titre($arrayfields[
'd.date_debut'][
'label'], $_SERVER[
"PHP_SELF"],
"d.date_debut",
"", $param,
'', $sortfield, $sortorder,
'center ');
688 $totalarray[
'nbfield']++;
690 if (!empty($arrayfields[
'd.date_fin'][
'checked'])) {
691 print_liste_field_titre($arrayfields[
'd.date_fin'][
'label'], $_SERVER[
"PHP_SELF"],
"d.date_fin",
"", $param,
'', $sortfield, $sortorder,
'center ');
692 $totalarray[
'nbfield']++;
694 if (!empty($arrayfields[
'd.date_valid'][
'checked'])) {
695 print_liste_field_titre($arrayfields[
'd.date_valid'][
'label'], $_SERVER[
"PHP_SELF"],
"d.date_valid",
"", $param,
'', $sortfield, $sortorder,
'center ');
696 $totalarray[
'nbfield']++;
698 if (!empty($arrayfields[
'd.date_approve'][
'checked'])) {
699 print_liste_field_titre($arrayfields[
'd.date_approve'][
'label'], $_SERVER[
"PHP_SELF"],
"d.date_approve",
"", $param,
'', $sortfield, $sortorder,
'center ');
700 $totalarray[
'nbfield']++;
702 if (!empty($arrayfields[
'd.total_ht'][
'checked'])) {
703 print_liste_field_titre($arrayfields[
'd.total_ht'][
'label'], $_SERVER[
"PHP_SELF"],
"d.total_ht",
"", $param,
'', $sortfield, $sortorder,
'right ');
704 $totalarray[
'nbfield']++;
706 if (!empty($arrayfields[
'd.total_vat'][
'checked'])) {
707 print_liste_field_titre($arrayfields[
'd.total_vat'][
'label'], $_SERVER[
"PHP_SELF"],
"d.total_tva",
"", $param,
'', $sortfield, $sortorder,
'right ');
708 $totalarray[
'nbfield']++;
710 if (!empty($arrayfields[
'd.total_ttc'][
'checked'])) {
711 print_liste_field_titre($arrayfields[
'd.total_ttc'][
'label'], $_SERVER[
"PHP_SELF"],
"d.total_ttc",
"", $param,
'', $sortfield, $sortorder,
'right ');
712 $totalarray[
'nbfield']++;
715 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_search_title.tpl.php';
717 $parameters = array(
'arrayfields'=>$arrayfields,
'param'=>$param,
'sortfield'=>$sortfield,
'sortorder'=>$sortorder);
718 $reshook = $hookmanager->executeHooks(
'printFieldListTitle', $parameters, $object, $action);
719 print $hookmanager->resPrint;
720 if (!empty($arrayfields[
'd.date_create'][
'checked'])) {
721 print_liste_field_titre($arrayfields[
'd.date_create'][
'label'], $_SERVER[
"PHP_SELF"],
"d.date_create",
"", $param,
'', $sortfield, $sortorder,
'nowraponall center');
722 $totalarray[
'nbfield']++;
724 if (!empty($arrayfields[
'd.tms'][
'checked'])) {
725 print_liste_field_titre($arrayfields[
'd.tms'][
'label'], $_SERVER[
"PHP_SELF"],
"d.tms",
"", $param,
'', $sortfield, $sortorder,
'nowraponall center');
726 $totalarray[
'nbfield']++;
728 if (!empty($arrayfields[
'd.fk_statut'][
'checked'])) {
729 print_liste_field_titre($arrayfields[
'd.fk_statut'][
'label'], $_SERVER[
"PHP_SELF"],
"d.fk_statut",
"", $param,
'', $sortfield, $sortorder,
'center ');
730 $totalarray[
'nbfield']++;
733 print_liste_field_titre($selectedfields, $_SERVER[
"PHP_SELF"],
"",
'',
'',
'', $sortfield, $sortorder,
'maxwidthsearch ');
734 $totalarray[
'nbfield']++;
739 $total_total_ttc = 0;
740 $total_total_tva = 0;
743 $usertmp =
new User($db);
747 $savnbfield = $totalarray[
'nbfield'];
748 $totalarray = array();
749 $totalarray[
'nbfield'] = 0;
750 $totalarray[
'val'] = array();
751 $totalarray[
'val'][
'd.total_ht'] = 0;
752 $totalarray[
'val'][
'd.total_tva'] = 0;
753 $totalarray[
'val'][
'd.total_ttc'] = 0;
754 $totalarray[
'totalizable'] = array();
756 $imaxinloop = ($limit ? min($num, $limit) : $num);
757 while ($i < min($num, $limit)) {
758 $obj = $db->fetch_object($resql);
760 $expensereportstatic->id = $obj->rowid;
761 $expensereportstatic->ref = $obj->ref;
762 $expensereportstatic->status = $obj->status;
763 $expensereportstatic->date_debut = $db->jdate($obj->date_debut);
764 $expensereportstatic->date_fin = $db->jdate($obj->date_fin);
765 $expensereportstatic->date_create = $db->jdate($obj->date_create);
766 $expensereportstatic->date_modif = $db->jdate($obj->date_modif);
767 $expensereportstatic->date_valid = $db->jdate($obj->date_valid);
768 $expensereportstatic->date_approve = $db->jdate($obj->date_approve);
769 $expensereportstatic->note_private = $obj->note_private;
770 $expensereportstatic->note_public = $obj->note_public;
771 $expensereportstatic->fk_user = $obj->id_user;
773 $usertmp->id = $obj->id_user;
774 $usertmp->lastname = $obj->lastname;
775 $usertmp->firstname = $obj->firstname;
776 $usertmp->login = $obj->login;
777 $usertmp->statut = $obj->user_status;
778 $usertmp->status = $obj->user_status;
779 $usertmp->photo = $obj->photo;
780 $usertmp->email = $obj->email;
782 if ($mode ==
'kanban') {
784 print
'<tr class="trkanban"><td colspan="'.$savnbfield.
'">';
785 print
'<div class="box-flex-container kanban">';
788 $usertmp->fetch($obj->id_user);
791 if ($massactionbutton || $massaction) {
794 print $expensereportstatic->getKanbanView(
'', array(
'userauthor' => $usertmp,
'selected' => in_array($expensereportstatic->id, $arrayofselected)));
796 if ($i == ($imaxinloop - 1)) {
801 print
'<tr class="oddeven">';
804 print
'<td class="nowrap center">';
805 if ($massactionbutton || $massaction) {
807 if (in_array($obj->rowid, $arrayofselected)) {
810 print
'<input id="cb'.$obj->rowid.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$obj->rowid.
'"'.($selected ?
' checked="checked"' :
'').
'>';
814 $totalarray[
'nbfield']++;
818 if (!empty($arrayfields[
'd.ref'][
'checked'])) {
820 print
'<table class="nobordernopadding"><tr class="nocellnopadd">';
821 print
'<td class="nobordernopadding nowrap">';
822 print $expensereportstatic->getNomUrl(1);
825 print
'<td class="nobordernopadding nowrap">';
826 if ($expensereportstatic->status == 2 && $expensereportstatic->hasDelay(
'toappove')) {
829 if ($expensereportstatic->status == 5 && $expensereportstatic->hasDelay(
'topay')) {
832 if (!empty($obj->note_private) || !empty($obj->note_public)) {
833 print
' <span class="note">';
834 print
'<a href="'.DOL_URL_ROOT.
'/expensereport/note.php?id='.$obj->rowid.
'">'.
img_picto($langs->trans(
"ViewPrivateNote"),
'object_generic').
'</a>';
838 print
'<td width="16" class="nobordernopadding hideonsmartphone right">';
841 $urlsource = $_SERVER[
'PHP_SELF'].
'?id='.$obj->rowid;
842 print $formfile->getDocumentsLink($expensereportstatic->element, $filename, $filedir);
844 print
'</tr></table>';
847 $totalarray[
'nbfield']++;
851 if (!empty($arrayfields[
'user'][
'checked'])) {
852 print
'<td class="left">';
853 print $usertmp->getNomUrl(-1);
856 $totalarray[
'nbfield']++;
860 if (!empty($arrayfields[
'd.date_debut'][
'checked'])) {
861 print
'<td class="center">'.($obj->date_debut > 0 ?
dol_print_date($db->jdate($obj->date_debut),
'day') :
'').
'</td>';
863 $totalarray[
'nbfield']++;
867 if (!empty($arrayfields[
'd.date_fin'][
'checked'])) {
868 print
'<td class="center">'.($obj->date_fin > 0 ?
dol_print_date($db->jdate($obj->date_fin),
'day') :
'').
'</td>';
870 $totalarray[
'nbfield']++;
874 if (!empty($arrayfields[
'd.date_valid'][
'checked'])) {
875 print
'<td class="center">'.($obj->date_valid > 0 ?
dol_print_date($db->jdate($obj->date_valid),
'day') :
'').
'</td>';
877 $totalarray[
'nbfield']++;
881 if (!empty($arrayfields[
'd.date_approve'][
'checked'])) {
882 print
'<td class="center">'.($obj->date_approve > 0 ?
dol_print_date($db->jdate($obj->date_approve),
'day') :
'').
'</td>';
884 $totalarray[
'nbfield']++;
888 if (!empty($arrayfields[
'd.total_ht'][
'checked'])) {
889 print
'<td class="right">'.price($obj->total_ht).
"</td>\n";
891 $totalarray[
'nbfield']++;
894 $totalarray[
'pos'][$totalarray[
'nbfield']] =
'd.total_ht';
896 $totalarray[
'val'][
'd.total_ht'] += $obj->total_ht;
899 if (!empty($arrayfields[
'd.total_vat'][
'checked'])) {
900 print
'<td class="right">'.price($obj->total_tva).
"</td>\n";
902 $totalarray[
'nbfield']++;
905 $totalarray[
'pos'][$totalarray[
'nbfield']] =
'd.total_tva';
907 $totalarray[
'val'][
'd.total_tva'] += $obj->total_tva;
910 if (!empty($arrayfields[
'd.total_ttc'][
'checked'])) {
911 print
'<td class="right">'.price($obj->total_ttc).
"</td>\n";
913 $totalarray[
'nbfield']++;
916 $totalarray[
'pos'][$totalarray[
'nbfield']] =
'd.total_ttc';
918 $totalarray[
'val'][
'd.total_ttc'] += $obj->total_ttc;
922 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_list_print_fields.tpl.php';
924 $parameters = array(
'arrayfields'=>$arrayfields,
'obj'=>$obj,
'i'=>$i,
'totalarray'=>&$totalarray);
925 $reshook = $hookmanager->executeHooks(
'printFieldListValue', $parameters, $object, $action);
926 print $hookmanager->resPrint;
929 if (!empty($arrayfields[
'd.date_create'][
'checked'])) {
930 print
'<td class="nowrap center">';
934 $totalarray[
'nbfield']++;
938 if (!empty($arrayfields[
'd.tms'][
'checked'])) {
939 print
'<td class="nowrap center">';
943 $totalarray[
'nbfield']++;
947 if (!empty($arrayfields[
'd.fk_statut'][
'checked'])) {
948 print
'<td class="nowrap center">'.$expensereportstatic->getLibStatut(5).
'</td>';
950 $totalarray[
'nbfield']++;
955 print
'<td class="nowrap center">';
956 if ($massactionbutton || $massaction) {
958 if (in_array($obj->rowid, $arrayofselected)) {
961 print
'<input id="cb'.$obj->rowid.
'" class="flat checkforselect" type="checkbox" name="toselect[]" value="'.$obj->rowid.
'"'.($selected ?
' checked="checked"' :
'').
'>';
965 $totalarray[
'nbfield']++;
972 $total_total_ht = $total_total_ht + $obj->total_ht;
973 $total_total_tva = $total_total_tva + $obj->total_tva;
974 $total_total_ttc = $total_total_ttc + $obj->total_ttc;
980 foreach ($arrayfields as $key => $val) {
981 if (!empty($val[
'checked'])) {
985 print
'<tr><td colspan="'.$colspan.
'"><span class="opacitymedium">'.$langs->trans(
"NoRecordFound").
'</span></td></tr>';
989 include DOL_DOCUMENT_ROOT.
'/core/tpl/list_print_total.tpl.php';
993 $parameters = array(
'arrayfields'=>$arrayfields,
'sql'=>$sql);
994 $reshook = $hookmanager->executeHooks(
'printFieldListFooter', $parameters, $object, $action);
995 print $hookmanager->resPrint;
997 print
'</table>'.
"\n";
1000 print
'</form>'.
"\n";
1003 $hidegeneratedfilelistifempty = 1;
1004 if ($massaction ==
'builddoc' || $action ==
'remove_file' || $show_files) {
1005 $hidegeneratedfilelistifempty = 0;
1009 $urlsource = $_SERVER[
'PHP_SELF'].
'?sortfield='.$sortfield.
'&sortorder='.$sortorder;
1010 $urlsource .= str_replace(
'&',
'&', $param);
1012 $filedir = $diroutputmassaction;
1013 $genallowed = $user->rights->expensereport->lire;
1014 $delallowed = $user->rights->expensereport->creer;
1016 print $formfile->showdocuments(
'massfilesarea_expensereport',
'', $filedir, $urlsource, 0, $delallowed,
'', 1, 1, 0, 48, 1, $param, $title,
'',
'',
'',
null, $hidegeneratedfilelistifempty);
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader()
Empty header.
Class to manage Trips and Expenses.
Class to manage Dolibarr users.
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_mktime($hour, $minute, $second, $month, $day, $year, $gm='auto', $check=1)
Return a timestamp date built from detailed informations (by default a local PHP server timestamp) Re...
img_warning($titlealt='default', $moreatt='', $morecss='pictowarning')
Show warning logo.
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_print_error($db='', $error='', $errors=null)
Displays error message system with all the information to facilitate the diagnosis and the escalation...
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_get_fiche_end($notab=0)
Return tab footer of a card.
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_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
getDolGlobalInt($key, $default=0)
Return a Dolibarr global constant int value.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=false, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
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.
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.
print_barre_liste($titre, $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.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
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.
accessforbidden($message='', $printheader=1, $printfooter=1, $showonlymessage=0, $params=null)
Show a message to say access is forbidden and stop program.
user_prepare_head(User $object)
Prepare array with list of tabs.