dolibarr  16.0.1
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  if (!$canread) {
94  }
95 }
96 
97 $upload_dir = $conf->salaries->dir_output.'/'.dol_sanitizeFileName($object->id);
98 $modulepart = 'salaries';
99 
100 // Security check
101 $socid = GETPOSTINT('socid');
102 if ($user->socid) {
103  $socid = $user->socid;
104 }
105 restrictedArea($user, 'salaries', $object->id, 'salary', '');
106 
107 $permissiontoadd = $user->rights->salaries->write; // Used by the include of actions_addupdatedelete.inc.php and actions_linkedfiles
108 
109 
110 /*
111  * Actions
112  */
113 
114 include DOL_DOCUMENT_ROOT.'/core/actions_linkedfiles.inc.php';
115 
116 // Link to a project
117 if ($action == 'classin' && $user->rights->banque->modifier) {
118  $object->fetch($id);
119  $object->setProject($projectid);
120 }
121 
122 // set label
123 if ($action == 'setlabel' && $user->rights->salaries->write) {
124  $object->fetch($id);
125  $object->label = $label;
126  $object->update($user);
127 }
128 
129 
130 /*
131  * View
132  */
133 
134 $form = new Form($db);
135 if (isModEnabled('project')) $formproject = new FormProjets($db);
136 
137 $title = $langs->trans('Salary')." - ".$langs->trans('Documents');
138 $help_url = "";
139 llxHeader("", $title, $help_url);
140 
141 if ($object->id) {
142  $object->fetch_thirdparty();
143 
144  $head = salaries_prepare_head($object);
145 
146  print dol_get_fiche_head($head, 'documents', $langs->trans("SalaryPayment"), -1, 'salary');
147 
148  // Build file list
149  $filearray = dol_dir_list($upload_dir, "files", 0, '', '(\.meta|_preview.*\.png)$', $sortfield, (strtolower($sortorder) == 'desc' ?SORT_DESC:SORT_ASC), 1);
150  $totalsize = 0;
151  foreach ($filearray as $key => $file) {
152  $totalsize += $file['size'];
153  }
154 
155  $linkback = '<a href="'.DOL_URL_ROOT.'/salaries/list.php?restore_lastsearch_values=1'.(!empty($socid) ? '&socid='.$socid : '').'">'.$langs->trans("BackToList").'</a>';
156 
157  $morehtmlref = '<div class="refidno">';
158 
159  $userstatic = new User($db);
160  $userstatic->fetch($object->fk_user);
161 
162  // Label
163  if ($action != 'editlabel') {
164  $morehtmlref .= $form->editfieldkey("Label", 'label', $object->label, $object, $user->rights->salaries->write, 'string', '', 0, 1);
165  $morehtmlref .= $object->label;
166  } else {
167  $morehtmlref .= $langs->trans('Label').' :&nbsp;';
168  $morehtmlref .= '<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
169  $morehtmlref .= '<input type="hidden" name="action" value="setlabel">';
170  $morehtmlref .= '<input type="hidden" name="token" value="'.newToken().'">';
171  $morehtmlref .= '<input type="text" name="label" value="'.$object->label.'"/>';
172  $morehtmlref .= '<input type="submit" class="button valignmiddle" value="'.$langs->trans("Modify").'">';
173  $morehtmlref .= '</form>';
174  }
175 
176  $morehtmlref .= '<br>'.$langs->trans('Employee').' : '.$userstatic->getNomUrl(-1);
177 
178  // Project
179  if (isModEnabled('project')) {
180  $morehtmlref .= '<br>'.$langs->trans('Project').' ';
181  if ($user->rights->salaries->write) {
182  if ($action != 'classify') {
183  $morehtmlref .= '<a class="editfielda" href="'.$_SERVER['PHP_SELF'].'?action=classify&token='.newToken().'&id='.$object->id.'">'.img_edit($langs->transnoentitiesnoconv('SetProject')).'</a> : ';
184  }
185  if ($action == 'classify') {
186  //$morehtmlref.=$form->form_project($_SERVER['PHP_SELF'] . '?id=' . $object->id, $object->socid, $object->fk_project, 'projectid', 0, 0, 1, 1);
187  $morehtmlref .= '<form method="post" action="'.$_SERVER['PHP_SELF'].'?id='.$object->id.'">';
188  $morehtmlref .= '<input type="hidden" name="action" value="classin">';
189  $morehtmlref .= '<input type="hidden" name="token" value="'.newToken().'">';
190  $morehtmlref .= $formproject->select_projects(-1, $object->fk_project, 'projectid', 0, 0, 1, 0, 1, 0, 0, '', 1, 0, 'maxwidth500');
191  $morehtmlref .= '<input type="submit" class="button valignmiddle" value="'.$langs->trans("Modify").'">';
192  $morehtmlref .= '</form>';
193  } else {
194  $morehtmlref .= $form->form_project($_SERVER['PHP_SELF'].'?id='.$object->id, -1, $object->fk_project, 'none', 0, 0, 0, 1);
195  }
196  } else {
197  if (!empty($object->fk_project)) {
198  $proj = new Project($db);
199  $proj->fetch($object->fk_project);
200  $morehtmlref .= ' : '.$proj->getNomUrl(1);
201  if ($proj->title) {
202  $morehtmlref .= ' - '.$proj->title;
203  }
204  } else {
205  $morehtmlref .= '';
206  }
207  }
208  }
209 
210  $morehtmlref .= '</div>';
211 
212  dol_banner_tab($object, 'id', $linkback, 1, 'rowid', 'ref', $morehtmlref, '', 0, '', '');
213 
214  print '<div class="fichecenter">';
215  print '<div class="underbanner clearboth"></div>';
216 
217  print '<table class="border tableforfield centpercent">';
218 
219  print "<tr>";
220  print '<td class="titlefield">' . $langs->trans("DateStartPeriod") . '</td><td>';
221  print dol_print_date($object->datesp, 'day');
222  print '</td></tr>';
223 
224  print "<tr>";
225  print '<td>' . $langs->trans("DateEndPeriod") . '</td><td>';
226  print dol_print_date($object->dateep, 'day');
227  print '</td></tr>';
228 
229  print '<tr><td>' . $langs->trans("Amount") . '</td><td><span class="amount">' . price($object->amount, 0, $langs, 1, -1, -1, $conf->currency) . '</span></td></tr>';
230 
231  print '<tr><td class="titlefield">'.$langs->trans("NbOfAttachedFiles").'</td><td>'.count($filearray).'</td></tr>';
232 
233  print '<tr><td>'.$langs->trans("TotalSizeOfAttachedFiles").'</td><td>'.dol_print_size($totalsize, 1, 1).'</td></tr>';
234 
235  print '</table>';
236 
237  print '</div>';
238 
239  print dol_get_fiche_end();
240 
241  $modulepart = 'salaries';
242  $permissiontoadd = $user->rights->salaries->write;
243  $param = '&id='.$object->id;
244  include DOL_DOCUMENT_ROOT.'/core/tpl/document_actions_post_headers.tpl.php';
245 } else {
246  print $langs->trans("ErrorUnknown");
247 }
248 
249 // End of page
250 llxFooter();
251 $db->close();
GETPOST($paramname, $check= 'alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
img_edit($titlealt= 'default', $float=0, $other= '')
Show logo editer/modifier fiche.
if($cancel &&!$id) if($action== 'add'&&!$cancel) if($action== 'delete') if($id) $form
Actions.
Definition: card.php:142
Class to manage Dolibarr users.
Definition: user.class.php:44
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOCSRFCHECK')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
Definition: wrapper.php:59
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
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...
Class to manage standard extra fields.
Class to manage generation of HTML components Only common components must be here.
GETPOSTISSET($paramname)
Return true if we are in a context of submitting the parameter $paramname from a POST of a form...
Class to manage projects.
Class to manage building of HTML components.
GETPOSTINT($paramname, $method=0)
Return value of a param into GET or POST supervariable.
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 ...
dol_sanitizeFileName($str, $newstr= '_', $unaccent=1)
Clean a string to use it as a file name.
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
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.
dol_get_fiche_head($links=array(), $active= '', $title= '', $notab=0, $picto= '', $pictoisfullpath=0, $morehtmlright= '', $morecss= '', $limittoshow=0, $moretabssuffix= '')
Show tabs of a record.
dol_print_size($size, $shortvalue=0, $shortunit=0)
Return string with formated size.
dol_print_date($time, $format= '', $tzoutput= 'auto', $outputlangs= '', $encodetooutput=false)
Output date in a string format according to outputlangs (or langs if not defined).
Class to manage salary payments.
newToken()
Return the value of token currently saved into session with name &#39;newtoken&#39;.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
isModEnabled($module)
Is Dolibarr module enabled.
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.
llxFooter()
Empty footer.
Definition: wrapper.php:73