dolibarr  16.0.5
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-2015 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) 2015-2019 Alexandre Spangaro <aspangaro@open-dsi.fr>
10  * Copyright (C) 2021 Gauthier VERDOL <gauthier.verdol@atm-consulting.fr>
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  * or see https://www.gnu.org/
25  */
26 
33 require '../main.inc.php';
34 require_once DOL_DOCUMENT_ROOT.'/core/lib/files.lib.php';
35 require_once DOL_DOCUMENT_ROOT.'/core/class/html.formfile.class.php';
36 require_once DOL_DOCUMENT_ROOT.'/core/lib/salaries.lib.php';
37 require_once DOL_DOCUMENT_ROOT.'/salaries/class/salary.class.php';
38 if (isModEnabled('project')) {
39  require_once DOL_DOCUMENT_ROOT.'/projet/class/project.class.php';
40  require_once DOL_DOCUMENT_ROOT.'/core/class/html.formprojet.class.php';
41 }
42 
43 // Load translation files required by the page
44 $langs->loadLangs(array("compta", "bills", "users", "salaries", "hrm"));
45 
46 $id = GETPOST('id', 'int');
47 $ref = GETPOST('ref', 'alpha');
48 $action = GETPOST('action', 'aZ09');
49 $confirm = GETPOST('confirm', 'alpha');
50 
51 $label = GETPOST('label', 'alphanohtml');
52 $projectid = (GETPOST('projectid', 'int') ? GETPOST('projectid', 'int') : GETPOST('fk_project', 'int'));
53 
54 // Get parameters
55 $limit = GETPOST('limit', 'int') ? GETPOST('limit', 'int') : $conf->liste_limit;
56 $sortfield = GETPOST('sortfield', 'aZ09comma');
57 $sortorder = GETPOST('sortorder', 'aZ09comma');
58 $page = GETPOSTISSET('pageplusone') ? (GETPOST('pageplusone') - 1) : GETPOST("page", 'int');
59 if (empty($page) || $page == -1) {
60  $page = 0;
61 } // If $page is not defined, or '' or -1
62 $offset = $limit * $page;
63 $pageprev = $page - 1;
64 $pagenext = $page + 1;
65 if (!$sortorder) {
66  $sortorder = "ASC";
67 }
68 if (!$sortfield) {
69  $sortfield = "name";
70 }
71 
72 $object = new Salary($db);
73 $extrafields = new ExtraFields($db);
74 
75 $childids = $user->getAllChildIds(1);
76 
77 // fetch optionals attributes and labels
78 $extrafields->fetch_name_optionals_label($object->table_element);
79 
80 $object = new Salary($db);
81 if ($id > 0 || !empty($ref)) {
82  $object->fetch($id, $ref);
83 
84  // Check current user can read this salary
85  $canread = 0;
86  if (!empty($user->rights->salaries->readall)) {
87  $canread = 1;
88  }
89  if (!empty($user->rights->salaries->read) && $object->fk_user > 0 && in_array($object->fk_user, $childids)) {
90  $canread = 1;
91  }
92 
93  if (!$canread) {
95  }
96 }
97 
98 $upload_dir = $conf->salaries->dir_output.'/'.dol_sanitizeFileName($object->id);
99 $modulepart = 'salaries';
100 
101 // Security check
102 $socid = GETPOSTINT('socid');
103 if ($user->socid) {
104  $socid = $user->socid;
105 }
106 restrictedArea($user, 'salaries', $object->id, 'salary', '');
107 
108 $permissiontoadd = $user->rights->salaries->write; // Used by the include of actions_addupdatedelete.inc.php and actions_linkedfiles
109 
110 
111 /*
112  * Actions
113  */
114 
115 include DOL_DOCUMENT_ROOT.'/core/actions_linkedfiles.inc.php';
116 
117 // Link to a project
118 if ($action == 'classin' && $user->rights->banque->modifier) {
119  $object->fetch($id);
120  $object->setProject($projectid);
121 }
122 
123 // set label
124 if ($action == 'setlabel' && $user->rights->salaries->write) {
125  $object->fetch($id);
126  $object->label = $label;
127  $object->update($user);
128 }
129 
130 
131 /*
132  * View
133  */
134 
135 $form = new Form($db);
136 if (isModEnabled('project')) $formproject = new FormProjets($db);
137 
138 $title = $langs->trans('Salary')." - ".$langs->trans('Documents');
139 $help_url = "";
140 llxHeader("", $title, $help_url);
141 
142 if ($object->id) {
143  $object->fetch_thirdparty();
144 
145  $head = salaries_prepare_head($object);
146 
147  print dol_get_fiche_head($head, 'documents', $langs->trans("SalaryPayment"), -1, 'salary');
148 
149  // Build file list
150  $filearray = dol_dir_list($upload_dir, "files", 0, '', '(\.meta|_preview.*\.png)$', $sortfield, (strtolower($sortorder) == 'desc' ?SORT_DESC:SORT_ASC), 1);
151  $totalsize = 0;
152  foreach ($filearray as $key => $file) {
153  $totalsize += $file['size'];
154  }
155 
156  $linkback = '<a href="'.DOL_URL_ROOT.'/salaries/list.php?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
157 
158  $morehtmlref = '<div class="refidno">';
159 
160  $userstatic = new User($db);
161  $userstatic->fetch($object->fk_user);
162 
163  // Label
164  if ($action != 'editlabel') {
165  $morehtmlref .= $form->editfieldkey("Label", 'label', $object->label, $object, $user->rights->salaries->write, 'string', '', 0, 1);
166  $morehtmlref .= $object->label;
167  } else {
168  $morehtmlref .= $langs->trans('Label').' :&nbsp;';
169  $morehtmlref .= '<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
170  $morehtmlref .= '<input type="hidden" name="action" value="setlabel">';
171  $morehtmlref .= '<input type="hidden" name="token" value="'.newToken().'">';
172  $morehtmlref .= '<input type="text" name="label" value="'.$object->label.'"/>';
173  $morehtmlref .= '<input type="submit" class="button valignmiddle" value="'.$langs->trans("Modify").'">';
174  $morehtmlref .= '</form>';
175  }
176 
177  $morehtmlref .= '<br>'.$langs->trans('Employee').' : '.$userstatic->getNomUrl(-1);
178 
179  // Project
180  if (isModEnabled('project')) {
181  $morehtmlref .= '<br>'.$langs->trans('Project').' ';
182  if ($user->rights->salaries->write) {
183  if ($action != 'classify') {
184  $morehtmlref .= '<a class="editfielda" href="'.$_SERVER['PHP_SELF'].'?action=classify&token='.newToken().'&id='.$object->id.'">'.img_edit($langs->transnoentitiesnoconv('SetProject')).'</a> : ';
185  }
186  if ($action == 'classify') {
187  //$morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'projectid', 0, 0, 1, 1);
188  $morehtmlref .= '<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
189  $morehtmlref .= '<input type="hidden" name="action" value="classin">';
190  $morehtmlref .= '<input type="hidden" name="token" value="'.newToken().'">';
191  $morehtmlref .= $formproject->select_projects(-1, $object->fk_project, 'projectid', 0, 0, 1, 0, 1, 0, 0, '', 1, 0, 'maxwidth500');
192  $morehtmlref .= '<input type="submit" class="button valignmiddle" value="'.$langs->trans("Modify").'">';
193  $morehtmlref .= '</form>';
194  } else {
195  $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$object->id, -1, $object->fk_project, 'none', 0, 0, 0, 1);
196  }
197  } else {
198  if (!empty($object->fk_project)) {
199  $proj = new Project($db);
200  $proj->fetch($object->fk_project);
201  $morehtmlref .= ' : '.$proj->getNomUrl(1);
202  if ($proj->title) {
203  $morehtmlref .= ' - '.$proj->title;
204  }
205  } else {
206  $morehtmlref .= '';
207  }
208  }
209  }
210 
211  $morehtmlref .= '</div>';
212 
213  dol_banner_tab($object, 'id', $linkback, 1, 'rowid', 'ref', $morehtmlref, '', 0, '', '');
214 
215  print '<div class="fichecenter">';
216  print '<div class="underbanner clearboth"></div>';
217 
218  print '<table class="border tableforfield centpercent">';
219 
220  print "<tr>";
221  print '<td class="titlefield">' . $langs->trans("DateStartPeriod") . '</td><td>';
222  print dol_print_date($object->datesp, 'day');
223  print '</td></tr>';
224 
225  print "<tr>";
226  print '<td>' . $langs->trans("DateEndPeriod") . '</td><td>';
227  print dol_print_date($object->dateep, 'day');
228  print '</td></tr>';
229 
230  print '<tr><td>' . $langs->trans("Amount") . '</td><td><span class="amount">' . price($object->amount, 0, $langs, 1, -1, -1, $conf->currency) . '</span></td></tr>';
231 
232  print '<tr><td class="titlefield">'.$langs->trans("NbOfAttachedFiles").'</td><td>'.count($filearray).'</td></tr>';
233 
234  print '<tr><td>'.$langs->trans("TotalSizeOfAttachedFiles").'</td><td>'.dol_print_size($totalsize, 1, 1).'</td></tr>';
235 
236  print '</table>';
237 
238  print '</div>';
239 
240  print dol_get_fiche_end();
241 
242  $modulepart = 'salaries';
243  $permissiontoadd = $user->rights->salaries->write;
244  $param = '&id='.$object->id;
245  include DOL_DOCUMENT_ROOT.'/core/tpl/document_actions_post_headers.tpl.php';
246 } else {
247  print $langs->trans("ErrorUnknown");
248 }
249 
250 // End of page
251 llxFooter();
252 $db->close();
dol_sanitizeFileName
dol_sanitizeFileName($str, $newstr='_', $unaccent=1)
Clean a string to use it as a file name.
Definition: functions.lib.php:1226
restrictedArea
restrictedArea($user, $features, $objectid=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.
Definition: security.lib.php:234
Project
Class to manage projects.
Definition: project.class.php:35
GETPOST
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
Definition: functions.lib.php:484
llxFooter
llxFooter()
Footer empty.
Definition: document.php:89
FormProjets
Class to manage building of HTML components.
Definition: html.formprojet.class.php:30
$form
if($cancel &&! $id) if($action=='add' &&! $cancel) if($action=='delete') if($id) $form
Actions.
Definition: card.php:142
dol_dir_list
dol_dir_list($path, $types="all", $recursive=0, $filter="", $excludefilter=null, $sortcriteria="name", $sortorder=SORT_ASC, $mode=0, $nohook=0, $relativename="", $donotfollowsymlinks=0)
Scan a directory and return a list of files/directories.
Definition: files.lib.php:60
img_edit
img_edit($titlealt='default', $float=0, $other='')
Show logo editer/modifier fiche.
Definition: functions.lib.php:4389
dol_banner_tab
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.
Definition: functions.lib.php:2046
$help_url
if(GETPOST('button_removefilter_x', 'alpha')||GETPOST('button_removefilter.x', 'alpha')||GETPOST('button_removefilter', 'alpha')) if(GETPOST('button_search_x', 'alpha')||GETPOST('button_search.x', 'alpha')||GETPOST('button_search', 'alpha')) if($action=="save" &&empty($cancel)) $help_url
View.
Definition: agenda.php:116
dol_print_date
dol_print_date($time, $format='', $tzoutput='auto', $outputlangs='', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
Definition: functions.lib.php:2514
llxHeader
if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) if(isset($_GET["hashp"]) &&!defined("NOLOGIN")) if((isset($_GET["modulepart"]) && $_GET["modulepart"]=='medias')) llxHeader()
Header empty.
Definition: document.php:80
GETPOSTINT
GETPOSTINT($paramname, $method=0)
Return value of a param into GET or POST supervariable.
Definition: functions.lib.php:795
dol_print_size
dol_print_size($size, $shortvalue=0, $shortunit=0)
Return string with formated size.
Definition: functions.lib.php:2884
dol_get_fiche_head
dol_get_fiche_head($links=array(), $active='', $title='', $notab=0, $picto='', $pictoisfullpath=0, $morehtmlright='', $morecss='', $limittoshow=0, $moretabssuffix='')
Show tabs of a record.
Definition: functions.lib.php:1822
newToken
newToken()
Return the value of token currently saved into session with name 'newtoken'.
Definition: functions.lib.php:10878
dol_get_fiche_end
dol_get_fiche_end($notab=0)
Return tab footer of a card.
Definition: functions.lib.php:2018
isModEnabled
isModEnabled($module)
Is Dolibarr module enabled.
Definition: functions.lib.php:105
User
Class to manage Dolibarr users.
Definition: user.class.php:44
GETPOSTISSET
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname from a POST of a form.
Definition: functions.lib.php:386
ExtraFields
Class to manage standard extra fields.
Definition: extrafields.class.php:39
Form
Class to manage generation of HTML components Only common components must be here.
Definition: html.form.class.php:52
Salary
Class to manage salary payments.
Definition: salary.class.php:33
price
price($amount, $form=0, $outlangs='', $trunc=1, $rounding=-1, $forcerounding=-1, $currency_code='')
Function to format a value into an amount for visual output Function used into PDF and HTML pages.
Definition: functions.lib.php:5541
accessforbidden
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 ...
Definition: security.lib.php:933