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';
39 require_once DOL_DOCUMENT_ROOT.
'/projet/class/project.class.php';
40 require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formprojet.class.php';
44 $langs->loadLangs(array(
"compta",
"bills",
"users",
"salaries",
"hrm"));
48 $action =
GETPOST(
'action',
'aZ09');
49 $confirm =
GETPOST(
'confirm',
'alpha');
51 $label =
GETPOST(
'label',
'alphanohtml');
52 $projectid = (
GETPOST(
'projectid',
'int') ?
GETPOST(
'projectid',
'int') :
GETPOST(
'fk_project',
'int'));
55 $limit =
GETPOST(
'limit',
'int') ?
GETPOST(
'limit',
'int') : $conf->liste_limit;
56 $sortfield =
GETPOST(
'sortfield',
'aZ09comma');
57 $sortorder =
GETPOST(
'sortorder',
'aZ09comma');
59 if (empty($page) || $page == -1) {
62 $offset = $limit * $page;
63 $pageprev = $page - 1;
64 $pagenext = $page + 1;
75 $childids = $user->getAllChildIds(1);
78 $extrafields->fetch_name_optionals_label($object->table_element);
81 if ($id > 0 || !empty($ref)) {
82 $object->fetch($id, $ref);
86 if (!empty($user->rights->salaries->readall)) {
89 if (!empty($user->rights->salaries->read) && $object->fk_user > 0 && in_array($object->fk_user, $childids)) {
98 $modulepart =
'salaries';
103 $socid = $user->socid;
107 $permissiontoadd = $user->rights->salaries->write;
114 include DOL_DOCUMENT_ROOT.
'/core/actions_linkedfiles.inc.php';
117 if ($action ==
'classin' && $user->rights->banque->modifier) {
119 $object->setProject($projectid);
123 if ($action ==
'setlabel' && $user->rights->salaries->write) {
125 $object->label = $label;
126 $object->update($user);
137 $title = $langs->trans(
'Salary').
" - ".$langs->trans(
'Documents');
142 $object->fetch_thirdparty();
144 $head = salaries_prepare_head($object);
146 print
dol_get_fiche_head($head,
'documents', $langs->trans(
"SalaryPayment"), -1,
'salary');
149 $filearray =
dol_dir_list($upload_dir,
"files", 0,
'',
'(\.meta|_preview.*\.png)$', $sortfield, (strtolower($sortorder) ==
'desc' ?SORT_DESC:SORT_ASC), 1);
151 foreach ($filearray as $key => $file) {
152 $totalsize += $file[
'size'];
155 $linkback =
'<a href="'.DOL_URL_ROOT.
'/salaries/list.php?restore_lastsearch_values=1'.(!empty($socid) ?
'&socid='.$socid :
'').
'">'.$langs->trans(
"BackToList").
'</a>';
157 $morehtmlref =
'<div class="refidno">';
159 $userstatic =
new User($db);
160 $userstatic->fetch($object->fk_user);
163 if ($action !=
'editlabel') {
164 $morehtmlref .=
$form->editfieldkey(
"Label",
'label', $object->label, $object, $user->rights->salaries->write,
'string',
'', 0, 1);
165 $morehtmlref .= $object->label;
167 $morehtmlref .= $langs->trans(
'Label').
' : ';
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>';
176 $morehtmlref .=
'<br>'.$langs->trans(
'Employee').
' : '.$userstatic->getNomUrl(-1);
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> : ';
185 if ($action ==
'classify') {
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>';
194 $morehtmlref .=
$form->form_project($_SERVER[
'PHP_SELF'].
'?id='.$object->id, -1, $object->fk_project,
'none', 0, 0, 0, 1);
197 if (!empty($object->fk_project)) {
199 $proj->fetch($object->fk_project);
200 $morehtmlref .=
' : '.$proj->getNomUrl(1);
202 $morehtmlref .=
' - '.$proj->title;
210 $morehtmlref .=
'</div>';
212 dol_banner_tab($object,
'id', $linkback, 1,
'rowid',
'ref', $morehtmlref,
'', 0,
'',
'');
214 print
'<div class="fichecenter">';
215 print
'<div class="underbanner clearboth"></div>';
217 print
'<table class="border tableforfield centpercent">';
220 print
'<td class="titlefield">' . $langs->trans(
"DateStartPeriod") .
'</td><td>';
225 print
'<td>' . $langs->trans(
"DateEndPeriod") .
'</td><td>';
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>';
231 print
'<tr><td class="titlefield">'.$langs->trans(
"NbOfAttachedFiles").
'</td><td>'.count($filearray).
'</td></tr>';
233 print
'<tr><td>'.$langs->trans(
"TotalSizeOfAttachedFiles").
'</td><td>'.
dol_print_size($totalsize, 1, 1).
'</td></tr>';
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';
246 print $langs->trans(
"ErrorUnknown");
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.
Class to manage Dolibarr users.
if(!defined('NOREQUIRESOC')) if(!defined('NOREQUIRETRAN')) if(!defined('NOCSRFCHECK')) if(!defined('NOTOKENRENEWAL')) if(!defined('NOREQUIREMENU')) if(!defined('NOREQUIREHTML')) if(!defined('NOREQUIREAJAX')) llxHeader()
Empty header.
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.
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...
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.
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.
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 'newtoken'.
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.