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';
50$langs->loadLangs(array(
'other',
'holiday',
'companies'));
54$action =
GETPOST(
'action',
'aZ09');
55$confirm =
GETPOST(
'confirm',
'alpha');
59$sortfield =
GETPOST(
'sortfield',
'aZ09comma');
60$sortorder =
GETPOST(
'sortorder',
'aZ09comma');
62if (empty($page) || $page == -1) {
65$offset = $limit * $page;
72 $sortfield =
"position_name";
76$childids = $user->getAllChildIds(1);
80 $morefilter =
'AND employee = 1';
88$extrafields->fetch_name_optionals_label(
$object->table_element);
90$permissiontoapprove = $user->hasRight(
'holiday',
'approve');
92if (($id > 0) || $ref) {
97 if ($user->hasRight(
'holiday',
'readall')) {
100 if ($user->hasRight(
'holiday',
'read') && in_array(
$object->fk_user, $childids)) {
103 if ($permissiontoapprove &&
$object->fk_validator == $user->id && !
getDolGlobalString(
'HOLIDAY_CAN_APPROVE_ONLY_THE_SUBORDINATES')) {
112$upload_dir =
$conf->holiday->multidir_output[
$object->entity].
'/'.
get_exdir(0, 0, 0, 1, $object,
'');
113$modulepart =
'holiday';
117 $socid = $user->socid;
121$permissiontoadd = $user->hasRight(
'holiday',
'write');
128include DOL_DOCUMENT_ROOT.
'/core/actions_linkedfiles.inc.php';
135$form =
new Form($db);
137$listhalfday = array(
'morning'=>$langs->trans(
"Morning"),
"afternoon"=>$langs->trans(
"Afternoon"));
138$title = $langs->trans(
"Leave").
' - '.$langs->trans(
"Files");
139$help_url =
'EN:Module_Holiday';
141llxHeader(
'', $title, $help_url,
'', 0, 0,
'',
'',
'',
'mod-holiday page-card_documents');
144 $valideur =
new User($db);
145 $valideur->fetch(
$object->fk_validator);
147 $userRequest =
new User($db);
148 $userRequest->fetch(
$object->fk_user);
152 print
dol_get_fiche_head($head,
'documents', $langs->trans(
"CPTitreMenu"), -1,
'holiday');
156 $filearray =
dol_dir_list($upload_dir,
"files", 0,
'',
'(\.meta|_preview.*\.png)$', $sortfield, (strtolower($sortorder) ==
'desc' ? SORT_DESC : SORT_ASC), 1);
158 foreach ($filearray as $key => $file) {
159 $totalsize += $file[
'size'];
163 $linkback =
'<a href="'.DOL_URL_ROOT.
'/holiday/list.php?restore_lastsearch_values=1">'.$langs->trans(
"BackToList").
'</a>';
165 dol_banner_tab($object,
'ref', $linkback, 1,
'ref',
'ref');
168 print
'<div class="fichecenter">';
170 print
'<div class="underbanner clearboth"></div>';
172 print
'<table class="border tableforfield centpercent">';
175 print
'<td class="titlefield">'.$langs->trans(
"User").
'</td>';
177 print $userRequest->getNomUrl(-1,
'leave');
182 print
'<td>'.$langs->trans(
"Type").
'</td>';
184 $typeleaves =
$object->getTypes(1, -1);
185 if (empty($typeleaves[
$object->fk_type])) {
186 $labeltoshow = $langs->trans(
"TypeWasDisabledOrRemoved",
$object->fk_type);
188 $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']);
194 $starthalfday = (
$object->halfday == -1 ||
$object->halfday == 2) ?
'afternoon' :
'morning';
195 $endhalfday = (
$object->halfday == 1 ||
$object->halfday == 2) ?
'morning' :
'afternoon';
199 print $form->textwithpicto($langs->trans(
'DateDebCP'), $langs->trans(
"FirstDayOfHoliday"));
201 print
'<td>'.dol_print_date(
$object->date_debut,
'day');
202 print
' ';
203 print
'<span class="opacitymedium">'.$langs->trans($listhalfday[$starthalfday]).
'</span>';
209 print $form->textwithpicto($langs->trans(
'DateFinCP'), $langs->trans(
"LastDayOfHoliday"));
211 print
'<td>'.dol_print_date(
$object->date_fin,
'day');
212 print
' ';
213 print
'<span class="opacitymedium">'.$langs->trans($listhalfday[$endhalfday]).
'</span>';
220 $htmlhelp = $langs->trans(
'NbUseDaysCPHelp');
221 $includesaturday = (isset(
$conf->global->MAIN_NON_WORKING_DAYS_INCLUDE_SATURDAY) ?
$conf->global->MAIN_NON_WORKING_DAYS_INCLUDE_SATURDAY : 1);
222 $includesunday = (isset(
$conf->global->MAIN_NON_WORKING_DAYS_INCLUDE_SUNDAY) ?
$conf->global->MAIN_NON_WORKING_DAYS_INCLUDE_SUNDAY : 1);
223 if ($includesaturday) {
224 $htmlhelp .=
'<br>'.$langs->trans(
"DayIsANonWorkingDay", $langs->trans(
"Saturday"));
226 if ($includesunday) {
227 $htmlhelp .=
'<br>'.$langs->trans(
"DayIsANonWorkingDay", $langs->trans(
"Sunday"));
229 print $form->textwithpicto($langs->trans(
'NbUseDaysCP'), $htmlhelp);
231 print
'<td>'.num_open_day(
$object->date_debut_gmt,
$object->date_fin_gmt, 0, 1,
$object->halfday).
'</td>';
236 print
'<td>'.$langs->trans(
'DetailRefusCP').
'</td>';
237 print
'<td>'.$object->detail_refuse.
'</td>';
243 print
'<td>'.$langs->trans(
'DescCP').
'</td>';
244 print
'<td>'.nl2br(
$object->description).
'</td>';
247 print
'<tr><td>'.$langs->trans(
"NbOfAttachedFiles").
'</td><td colspan="3">'.count($filearray).
'</td></tr>';
248 print
'<tr><td>'.$langs->trans(
"TotalSizeOfAttachedFiles").
'</td><td colspan="3">'.
dol_print_size($totalsize, 1, 1).
'</td></tr>';
251 print
'</table>'.
"\n";
304 print
'<div class="clearboth"></div>';
308 $permissiontoadd = $user->hasRight(
'holiday',
'write');
309 $permtoedit = $user->hasRight(
'holiday',
'write');
310 $param =
'&id='.$object->id;
311 $relativepathwithnofile =
get_exdir(0, 0, 0, 1, $object,
'').
'/';
314 include DOL_DOCUMENT_ROOT.
'/core/tpl/document_actions_post_headers.tpl.php';
316 print $langs->trans(
"ErrorUnknown");
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
llxFooter($comment='', $zone='private', $disabledoutputofmessages=0)
Empty footer.
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.
Class of the module paid holiday.
const STATUS_REFUSED
Refused.
Class to manage Dolibarr users.
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.
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, $includequotes=0)
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...
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.