dolibarr 21.0.0-beta
document.php
Go to the documentation of this file.
1<?php
2/* Copyright (C) 2003-2007 Rodolphe Quiedeville <rodolphe@quiedeville.org>
3 * Copyright (C) 2004-2010 Laurent Destailleur <eldy@users.sourceforge.net>
4 * Copyright (C) 2005 Marc Barilley / Ocebo <marc@ocebo.com>
5 * Copyright (C) 2005-2009 Regis Houssin <regis.houssin@inodbox.com>
6 * Copyright (C) 2005 Simon TOSSER <simon@kornog-computing.com>
7 * Copyright (C) 2011-2012 Juanjo Menent <jmenent@2byte.es>
8 * Copyright (C) 2013 Cédric Salvador <csalvador@gpcsolutions.fr>
9 * Copyright (C) 2018-2024 Frédéric France <frederic.france@free.fr>
10 * Copyright (C) 2024 Alexandre Spangaro <alexandre@inovea-conseil.com>
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 3 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program. If not, see <https://www.gnu.org/licenses/>.
24 */
25
32// Load Dolibarr environment
33require '../main.inc.php';
34require_once DOL_DOCUMENT_ROOT.'/holiday/class/holiday.class.php';
35require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
36require_once DOL_DOCUMENT_ROOT.'/core/lib/images.lib.php';
37require_once DOL_DOCUMENT_ROOT.'/core/lib/date.lib.php';
38require_once DOL_DOCUMENT_ROOT.'/core/lib/holiday.lib.php';
39require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
40
49// Load translation files required by the page
50$langs->loadLangs(array('other', 'holiday', 'companies'));
51
52$id = GETPOSTINT('id');
53$ref = GETPOST('ref', 'alpha');
54$action = GETPOST('action', 'aZ09');
55$confirm = GETPOST('confirm', 'alpha');
56
57// Get parameters
58$limit = GETPOSTINT('limit') ? GETPOSTINT('limit') : $conf->liste_limit;
59$sortfield = GETPOST('sortfield', 'aZ09comma');
60$sortorder = GETPOST('sortorder', 'aZ09comma');
61$page = GETPOSTISSET('pageplusone') ? (GETPOSTINT('pageplusone') - 1) : GETPOSTINT("page");
62if (empty($page) || $page == -1) {
63 $page = 0;
64} // If $page is not defined, or '' or -1
65$offset = $limit * $page;
66$pageprev = $page - 1;
67$pagenext = $page + 1;
68if (!$sortorder) {
69 $sortorder = "ASC";
70}
71if (!$sortfield) {
72 $sortfield = "position_name";
73}
74
75
76$childids = $user->getAllChildIds(1);
77
78$morefilter = '';
79if (getDolGlobalString('HOLIDAY_HIDE_FOR_NON_SALARIES')) {
80 $morefilter = 'AND employee = 1';
81}
82
83$object = new Holiday($db);
84
85$extrafields = new ExtraFields($db);
86
87// fetch optionals attributes and labels
88$extrafields->fetch_name_optionals_label($object->table_element);
89
90if (($id > 0) || $ref) {
91 $object->fetch($id, $ref);
92
93 // Check current user can read this leave request
94 $canread = 0;
95 if ($user->hasRight('holiday', 'readall')) {
96 $canread = 1;
97 }
98 if ($user->hasRight('holiday', 'read') && in_array($object->fk_user, $childids)) {
99 $canread = 1;
100 }
101 if (!$canread) {
103 }
104}
105
106
107$upload_dir = $conf->holiday->dir_output.'/'.get_exdir(0, 0, 0, 1, $object, '');
108$modulepart = 'holiday';
109
110// Protection if external user
111if ($user->socid) {
112 $socid = $user->socid;
113}
114$result = restrictedArea($user, 'holiday', $object->id, 'holiday');
115
116$permissiontoadd = $user->hasRight('holiday', 'write'); // Used by the include of actions_setnotes.inc.php
117
118
119/*
120 * Actions
121 */
122
123include DOL_DOCUMENT_ROOT.'/core/actions_linkedfiles.inc.php';
124
125
126/*
127 * View
128 */
129
130$form = new Form($db);
131
132$listhalfday = array('morning'=>$langs->trans("Morning"), "afternoon"=>$langs->trans("Afternoon"));
133$title = $langs->trans("Leave").' - '.$langs->trans("Files");
134$help_url = 'EN:Module_Holiday';
135
136llxHeader('', $title, $help_url, '', 0, 0, '', '', '', 'mod-holiday page-card_documents');
137
138if ($object->id) {
139 $valideur = new User($db);
140 $valideur->fetch($object->fk_validator);
141
142 $userRequest = new User($db);
143 $userRequest->fetch($object->fk_user);
144
145 $head = holiday_prepare_head($object);
146
147 print dol_get_fiche_head($head, 'documents', $langs->trans("CPTitreMenu"), -1, 'holiday');
148
149
150 // Build file list
151 $filearray = dol_dir_list($upload_dir, "files", 0, '', '(\.meta|_preview.*\.png)$', $sortfield, (strtolower($sortorder) == 'desc' ? SORT_DESC : SORT_ASC), 1);
152 $totalsize = 0;
153 foreach ($filearray as $key => $file) {
154 $totalsize += $file['size'];
155 }
156
157
158 $linkback = '<a href="'.DOL_URL_ROOT.'/holiday/list.php?restore_lastsearch_values=1">'.$langs->trans("BackToList").'</a>';
159
160 dol_banner_tab($object, 'ref', $linkback, 1, 'ref', 'ref');
161
162
163 print '<div class="fichecenter">';
164 //print '<div class="fichehalfleft">';
165 print '<div class="underbanner clearboth"></div>';
166
167 print '<table class="border tableforfield centpercent">';
168
169 print '<tr>';
170 print '<td class="titlefield">'.$langs->trans("User").'</td>';
171 print '<td>';
172 print $userRequest->getNomUrl(-1, 'leave');
173 print '</td></tr>';
174
175 // Type
176 print '<tr>';
177 print '<td>'.$langs->trans("Type").'</td>';
178 print '<td>';
179 $typeleaves = $object->getTypes(1, -1);
180 if (empty($typeleaves[$object->fk_type])) {
181 $labeltoshow = $langs->trans("TypeWasDisabledOrRemoved", $object->fk_type);
182 } else {
183 $labeltoshow = (($typeleaves[$object->fk_type]['code'] && $langs->trans($typeleaves[$object->fk_type]['code']) != $typeleaves[$object->fk_type]['code']) ? $langs->trans($typeleaves[$object->fk_type]['code']) : $typeleaves[$object->fk_type]['label']);
184 }
185 print $labeltoshow;
186 print '</td>';
187 print '</tr>';
188
189 $starthalfday = ($object->halfday == -1 || $object->halfday == 2) ? 'afternoon' : 'morning';
190 $endhalfday = ($object->halfday == 1 || $object->halfday == 2) ? 'morning' : 'afternoon';
191
192 print '<tr>';
193 print '<td>';
194 print $form->textwithpicto($langs->trans('DateDebCP'), $langs->trans("FirstDayOfHoliday"));
195 print '</td>';
196 print '<td>'.dol_print_date($object->date_debut, 'day');
197 print ' &nbsp; &nbsp; ';
198 print '<span class="opacitymedium">'.$langs->trans($listhalfday[$starthalfday]).'</span>';
199 print '</td>';
200 print '</tr>';
201
202 print '<tr>';
203 print '<td>';
204 print $form->textwithpicto($langs->trans('DateFinCP'), $langs->trans("LastDayOfHoliday"));
205 print '</td>';
206 print '<td>'.dol_print_date($object->date_fin, 'day');
207 print ' &nbsp; &nbsp; ';
208 print '<span class="opacitymedium">'.$langs->trans($listhalfday[$endhalfday]).'</span>';
209 print '</td>';
210 print '</tr>';
211
212 // Nb days consumed
213 print '<tr>';
214 print '<td>';
215 $htmlhelp = $langs->trans('NbUseDaysCPHelp');
216 $includesaturday = (isset($conf->global->MAIN_NON_WORKING_DAYS_INCLUDE_SATURDAY) ? $conf->global->MAIN_NON_WORKING_DAYS_INCLUDE_SATURDAY : 1);
217 $includesunday = (isset($conf->global->MAIN_NON_WORKING_DAYS_INCLUDE_SUNDAY) ? $conf->global->MAIN_NON_WORKING_DAYS_INCLUDE_SUNDAY : 1);
218 if ($includesaturday) {
219 $htmlhelp .= '<br>'.$langs->trans("DayIsANonWorkingDay", $langs->trans("Saturday"));
220 }
221 if ($includesunday) {
222 $htmlhelp .= '<br>'.$langs->trans("DayIsANonWorkingDay", $langs->trans("Sunday"));
223 }
224 print $form->textwithpicto($langs->trans('NbUseDaysCP'), $htmlhelp);
225 print '</td>';
226 print '<td>'.num_open_day($object->date_debut_gmt, $object->date_fin_gmt, 0, 1, $object->halfday).'</td>';
227 print '</tr>';
228
229 if ($object->status == Holiday::STATUS_REFUSED) {
230 print '<tr>';
231 print '<td>'.$langs->trans('DetailRefusCP').'</td>';
232 print '<td>'.$object->detail_refuse.'</td>';
233 print '</tr>';
234 }
235
236 // Description
237 print '<tr>';
238 print '<td>'.$langs->trans('DescCP').'</td>';
239 print '<td>'.nl2br($object->description).'</td>';
240 print '</tr>';
241
242 print '<tr><td>'.$langs->trans("NbOfAttachedFiles").'</td><td colspan="3">'.count($filearray).'</td></tr>';
243 print '<tr><td>'.$langs->trans("TotalSizeOfAttachedFiles").'</td><td colspan="3">'.dol_print_size($totalsize, 1, 1).'</td></tr>';
244
245 print '</tbody>';
246 print '</table>'."\n";
247 /*
248 print '</div>';
249 print '<div class="fichehalfright">';
250
251 print '<div class="underbanner clearboth"></div>';
252
253 // Info workflow
254 print '<table class="border tableforfield centpercent">'."\n";
255 print '<tbody>';
256
257 if (!empty($object->fk_user_create)) {
258 $userCreate=new User($db);
259 $userCreate->fetch($object->fk_user_create);
260 print '<tr>';
261 print '<td class="titlefield">'.$langs->trans('RequestByCP').'</td>';
262 print '<td>'.$userCreate->getNomUrl(-1).'</td>';
263 print '</tr>';
264 }
265
266 print '<tr>';
267 print '<td class="titlefield">'.$langs->trans('ReviewedByCP').'</td>';
268 print '<td>'.$valideur->getNomUrl(-1).'</td>';
269 print '</tr>';
270
271 print '<tr>';
272 print '<td>'.$langs->trans('DateCreation').'</td>';
273 print '<td>'.dol_print_date($object->date_create,'dayhour').'</td>';
274 print '</tr>';
275 if ($object->status == 3) {
276 print '<tr>';
277 print '<td>'.$langs->trans('DateValidCP').'</td>';
278 print '<td>'.dol_print_date($object->date_valid,'dayhour').'</td>';
279 print '</tr>';
280 }
281 if ($object->status == 4) {
282 print '<tr>';
283 print '<td>'.$langs->trans('DateCancelCP').'</td>';
284 print '<td>'.dol_print_date($object->date_cancel,'dayhour').'</td>';
285 print '</tr>';
286 }
287 if ($object->status == 5) {
288 print '<tr>';
289 print '<td>'.$langs->trans('DateRefusCP').'</td>';
290 print '<td>'.dol_print_date($object->date_refuse,'dayhour').'</td>';
291 print '</tr>';
292 }
293 print '</tbody>';
294 print '</table>';
295
296 print '</div>'; */
297 print '</div>';
298
299 print '<div class="clearboth"></div>';
300
301 print dol_get_fiche_end();
302
303 $permissiontoadd = $user->hasRight('holiday', 'write');
304 $permtoedit = $user->hasRight('holiday', 'write');
305 $param = '&id='.$object->id;
306 $relativepathwithnofile = dol_sanitizeFileName($object->ref).'/';
307 $savingdocmask = dol_sanitizeFileName($object->ref).'-__file__';
308
309 include DOL_DOCUMENT_ROOT.'/core/tpl/document_actions_post_headers.tpl.php';
310} else {
311 print $langs->trans("ErrorUnknown");
312}
313
314// End of page
315llxFooter();
316$db->close();
$id
Definition account.php:48
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
Definition card.php:66
if(!defined('NOREQUIRESOC')) if(!defined( 'NOREQUIRETRAN')) if(!defined('NOTOKENRENEWAL')) if(!defined( 'NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined( 'NOREQUIREAJAX')) llxHeader($head='', $title='', $help_url='', $target='', $disablejs=0, $disablehead=0, $arrayofjs='', $arrayofcss='', $morequerystring='', $morecssonbody='', $replacemainareaby='', $disablenofollow=0, $disablenoindex=0)
Empty header.
Definition wrapper.php:71
Class to manage standard extra fields.
Class to manage generation of HTML components Only common components must be here.
Class of the module paid holiday.
const STATUS_REFUSED
Refused.
Class to manage Dolibarr users.
llxFooter()
Footer empty.
Definition document.php:107
dol_dir_list($utf8_path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0, $nbsecondsold=0)
Scan a directory and return a list of files/directories.
Definition files.lib.php:63
dol_print_size($size, $shortvalue=0, $shortunit=0)
Return string with formatted size.
GETPOSTINT($paramname, $method=0)
Return the value of a $_GET or $_POST supervariable, converted into integer.
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.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
getDolGlobalString($key, $default='')
Return a Dolibarr global constant string value.
get_exdir($num, $level, $alpha, $withoutslash, $object, $modulepart='')
Return a path to have a the directory according to object where files are stored.
holiday_prepare_head($object)
Return array head with list of tabs to view object information.
global $conf
The following vars must be defined: $type2label $form $conf, $lang, The following vars may also be de...
Definition member.php:79
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.