27require_once
'../main.inc.php';
28require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
29require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
30require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formprojet.class.php';
31require_once DOL_DOCUMENT_ROOT.
'/projet/class/project.class.php';
32require_once DOL_DOCUMENT_ROOT.
'/recruitment/class/recruitmentjobposition.class.php';
33require_once DOL_DOCUMENT_ROOT.
'/recruitment/lib/recruitment_recruitmentjobposition.lib.php';
36$langs->loadLangs(array(
"recruitment",
"other"));
41$action =
GETPOST(
'action',
'aZ09');
42$confirm =
GETPOST(
'confirm',
'alpha');
43$cancel =
GETPOST(
'cancel',
'aZ09');
44$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') :
'recruitmentjobpositioncard';
45$backtopage =
GETPOST(
'backtopage',
'alpha');
46$backtopageforcancel =
GETPOST(
'backtopageforcancel',
'alpha');
52$diroutputmassaction = $conf->recruitment->dir_output.
'/temp/massgeneration/'.$user->id;
53$hookmanager->initHooks(array(
'recruitmentjobpositioncard',
'globalcard'));
56$extrafields->fetch_name_optionals_label(
$object->table_element);
58$search_array_options = $extrafields->getOptionalsFromPost(
$object->table_element,
'',
'search_');
61$search_all =
GETPOST(
"search_all",
'alpha');
63foreach (
$object->fields as $key => $val) {
64 if (
GETPOST(
'search_'.$key,
'alpha')) {
65 $search[$key] =
GETPOST(
'search_'.$key,
'alpha');
69if (empty($action) && empty($id) && empty($ref)) {
74include DOL_DOCUMENT_ROOT.
'/core/actions_fetchobject.inc.php';
77$permissiontoread = $user->hasRight(
'recruitment',
'recruitmentjobposition',
'read');
78$permissiontoadd = $user->hasRight(
'recruitment',
'recruitmentjobposition',
'write');
79$permissiontodelete = $user->hasRight(
'recruitment',
'recruitmentjobposition',
'delete') || ($permissiontoadd && isset(
$object->status) &&
$object->status == $object::STATUS_DRAFT);
80$permissionnote = $user->hasRight(
'recruitment',
'recruitmentjobposition',
'write');
81$permissiondellink = $user->hasRight(
'recruitment',
'recruitmentjobposition',
'write');
82$upload_dir = $conf->recruitment->multidir_output[isset(
$object->entity) ?
$object->entity : 1];
84$usercanclose = $permissiontoadd;
89$isdraft = ((
$object->status == $object::STATUS_DRAFT) ? 1 : 0);
90$result =
restrictedArea($user,
'recruitment',
$object->id,
'recruitment_recruitmentjobposition',
'recruitmentjobposition',
'',
'rowid', $isdraft);
98$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
103if (empty($reshook)) {
106 $backurlforlist =
dol_buildpath(
'/recruitment/recruitmentjobposition_list.php', 1);
108 if (empty($backtopage) || ($cancel && empty($id))) {
109 if (empty($backtopage) || ($cancel && strpos($backtopage,
'__ID__'))) {
110 if (empty($id) && (($action !=
'add' && $action !=
'create') || $cancel)) {
111 $backtopage = $backurlforlist;
113 $backtopage =
dol_buildpath(
'/recruitment/recruitmentjobposition_card.php', 1).
'?id='.((!empty($id) &&
$id > 0) ? $id :
'__ID__');
117 $triggermodname =
'RECRUITMENT_RECRUITMENTJOBPOSITION_MODIFY';
120 include DOL_DOCUMENT_ROOT.
'/core/actions_addupdatedelete.inc.php';
123 include DOL_DOCUMENT_ROOT.
'/core/actions_dellink.inc.php';
126 include DOL_DOCUMENT_ROOT.
'/core/actions_printing.inc.php';
132 include DOL_DOCUMENT_ROOT.
'/core/actions_builddoc.inc.php';
134 if ($action ==
'set_thirdparty' && $permissiontoadd) {
135 $object->setValueFrom(
'fk_soc',
GETPOSTINT(
'fk_soc'),
'',
null,
'date',
'', $user, $triggermodname);
137 if ($action ==
'classin' && $permissiontoadd) {
140 if ($action ==
'confirm_closeas' && $usercanclose && !
GETPOST(
'cancel',
'alpha')) {
142 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"CloseAs")),
null,
'errors');
146 if (
$object->status == $object::STATUS_VALIDATED) {
165 $triggersendname =
'RECRUITMENTJOBPOSITION_SENTBYMAIL';
166 $autocopy =
'MAIN_MAIL_AUTOCOPY_RECRUITMENTJOBPOSITION_TO';
167 $trackid =
'recruitmentjobposition'.$object->id;
168 include DOL_DOCUMENT_ROOT.
'/core/actions_sendmails.inc.php';
178$form =
new Form($db);
182$title =
$object->ref.
" - ".$langs->trans(
'Card');
187if ($action ==
'create') {
188 print
load_fiche_titre($langs->trans(
"NewPositionToBeFilled"),
'',
'object_'.$object->picto);
190 print
'<form method="POST" action="'.$_SERVER[
"PHP_SELF"].
'">';
191 print
'<input type="hidden" name="token" value="'.newToken().
'">';
192 print
'<input type="hidden" name="action" value="add">';
194 print
'<input type="hidden" name="backtopage" value="'.$backtopage.
'">';
196 if ($backtopageforcancel) {
197 print
'<input type="hidden" name="backtopageforcancel" value="'.$backtopageforcancel.
'">';
201 if (!GETPOSTISSET(
'fk_user_recruiter')) {
202 $_POST[
'fk_user_recruiter'] = $user->id;
207 print
'<table class="border centpercent tableforfieldcreate">'.
"\n";
210 include DOL_DOCUMENT_ROOT.
'/core/tpl/commonfields_add.tpl.php';
213 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_add.tpl.php';
215 print
'</table>'.
"\n";
219 print $form->buttonsSaveCancel(
"Create");
227if (($id || $ref) && $action ==
'edit') {
228 print
load_fiche_titre($langs->trans(
"PositionToBeFilled"),
'',
'object_'.$object->picto);
230 print
'<form method="POST" action="'.$_SERVER[
"PHP_SELF"].
'">';
231 print
'<input type="hidden" name="token" value="'.newToken().
'">';
232 print
'<input type="hidden" name="action" value="update">';
233 print
'<input type="hidden" name="id" value="'.$object->id.
'">';
235 print
'<input type="hidden" name="backtopage" value="'.$backtopage.
'">';
237 if ($backtopageforcancel) {
238 print
'<input type="hidden" name="backtopageforcancel" value="'.$backtopageforcancel.
'">';
243 print
'<table class="border centpercent tableforfieldedit">'.
"\n";
246 include DOL_DOCUMENT_ROOT.
'/core/tpl/commonfields_edit.tpl.php';
249 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_edit.tpl.php';
255 print $form->buttonsSaveCancel();
261if (
$object->id > 0 && (empty($action) || ($action !=
'edit' && $action !=
'create'))) {
268 if ($action ==
'delete') {
269 $formconfirm = $form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.
$object->id, $langs->trans(
'DeleteRecruitmentJobPosition'), $langs->trans(
'ConfirmDeleteObject'),
'confirm_delete',
'', 0, 1);
272 if ($action ==
'deleteline') {
273 $formconfirm = $form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.
$object->id.
'&lineid='.$lineid, $langs->trans(
'DeleteLine'), $langs->trans(
'ConfirmDeleteLine'),
'confirm_deleteline',
'', 0, 1);
276 if ($action ==
'clone') {
278 $formquestion = array();
279 $formconfirm = $form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.
$object->id, $langs->trans(
'ToClone'), $langs->trans(
'ConfirmCloneAsk',
$object->ref),
'confirm_clone', $formquestion,
'yes', 1);
281 if ($action ==
'closeas') {
284 $formquestion = array(
285 array(
'type' =>
'select',
'name' =>
'status',
'label' =>
'<span class="fieldrequired">'.$langs->trans(
"CloseAs").
'</span>',
'values' => array(3 =>
$object->LibStatut($object::STATUS_RECRUITED), 9 =>
$object->LibStatut($object::STATUS_CANCELED))),
286 array(
'type' =>
'text',
'name' =>
'note_private',
'label' => $langs->trans(
"Note"),
'value' =>
'')
298 $formconfirm = $form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.
$object->id, $langs->trans(
'Close'), $text,
'confirm_closeas', $formquestion,
'', 1, 250);
302 $parameters = array(
'formConfirm' => $formconfirm,
'lineid' => $lineid);
303 $reshook = $hookmanager->executeHooks(
'formConfirm', $parameters, $object, $action);
304 if (empty($reshook)) {
305 $formconfirm .= $hookmanager->resPrint;
306 } elseif ($reshook > 0) {
307 $formconfirm = $hookmanager->resPrint;
316 $linkback =
'<a href="'.dol_buildpath(
'/recruitment/recruitmentjobposition_list.php', 1).
'?restore_lastsearch_values=1'.(!empty($socid) ?
'&socid='.$socid :
'').
'">'.$langs->trans(
"BackToList").
'</a>';
318 $morehtmlref =
'<div class="refidno">';
327 if (isModEnabled(
'project')) {
328 $langs->load(
"projects");
329 $morehtmlref .= $langs->trans(
'Project').
' ';
330 if ($permissiontoadd) {
331 if ($action !=
'classify') {
332 $morehtmlref .=
'<a class="editfielda" href="'.$_SERVER[
'PHP_SELF'].
'?action=classify&token='.
newToken().
'&id='.
$object->id.
'">'.
img_edit($langs->transnoentitiesnoconv(
'SetProject')).
'</a>';
334 $morehtmlref .=
' : ';
335 if ($action ==
'classify') {
337 $morehtmlref .=
'<form method="post" action="'.$_SERVER[
'PHP_SELF'].
'?id='.
$object->id.
'">';
338 $morehtmlref .=
'<input type="hidden" name="action" value="classin">';
339 $morehtmlref .=
'<input type="hidden" name="token" value="'.newToken().
'">';
340 $morehtmlref .= $formproject->select_projects(
$object->socid,
$object->fk_project,
'projectid', $maxlength, 0, 1, 0, 1, 0, 0,
'', 1);
341 $morehtmlref .=
'<input type="submit" class="button valignmiddle" value="'.$langs->trans(
"Modify").
'">';
342 $morehtmlref .=
'</form>';
344 $morehtmlref .= $form->form_project($_SERVER[
'PHP_SELF'].
'?id='.
$object->id, !empty(
$object->socid) ?
$object->socid : 0,
$object->fk_project,
'none', 0, 0, 0, 1,
'',
'maxwidth300');
347 if (!empty(
$object->fk_project)) {
349 $proj->fetch(
$object->fk_project);
350 $morehtmlref .=
': '.$proj->getNomUrl();
356 $morehtmlref .=
'</div>';
359 dol_banner_tab($object,
'ref', $linkback, 1,
'ref',
'ref', $morehtmlref);
362 print
'<div class="fichecenter">';
363 print
'<div class="fichehalfleft">';
364 print
'<div class="underbanner clearboth"></div>';
365 print
'<table class="border centpercent tableforfield">'.
"\n";
368 $keyforbreak =
'description';
369 unset(
$object->fields[
'fk_project']);
371 include DOL_DOCUMENT_ROOT.
'/core/tpl/commonfields_view.tpl.php';
374 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_view.tpl.php';
380 print
'<div class="clearboth"></div>';
387 if ($action !=
'presend' && $action !=
'editline') {
388 print
'<div class="tabsAction">'.
"\n";
389 $parameters = array();
390 $reshook = $hookmanager->executeHooks(
'addMoreActionsButtons', $parameters, $object, $action);
395 if (empty($reshook)) {
397 if (empty($user->socid)) {
398 print
dolGetButtonAction(
'', $langs->trans(
'SendMail'),
'default', $_SERVER[
"PHP_SELF"].
'?id='.
$object->id.
'&action=presend&mode=init&token='.
newToken().
'#formmailbeforetitle');
402 if (
$object->status == $object::STATUS_VALIDATED ||
$object->status == $object::STATUS_RECRUITED) {
403 if ($permissiontoadd) {
404 print
dolGetButtonAction(
'', $langs->trans(
'SetToDraft'),
'default', $_SERVER[
"PHP_SELF"].
'?id='.
$object->id.
'&action=confirm_setdraft&confirm=yes&token='.
newToken(),
'', $permissiontoadd);
409 print
dolGetButtonAction(
'', $langs->trans(
'Modify'),
'default', $_SERVER[
"PHP_SELF"].
'?id='.
$object->id.
'&action=edit&token='.
newToken(),
'', $permissiontoadd);
412 if (
$object->status == $object::STATUS_DRAFT) {
413 if ($permissiontoadd) {
415 print
dolGetButtonAction(
'', $langs->trans(
'Validate'),
'default', $_SERVER[
'PHP_SELF'].
'?id='.
$object->id.
'&action=confirm_validate&confirm=yes&token='.
newToken(),
'', $permissiontoadd);
417 $langs->load(
"errors");
418 print
dolGetButtonAction($langs->trans(
"ErrorAddAtLeastOneLineFirst"), $langs->trans(
"Validate"),
'default',
'#',
'', 0);
424 if (
$object->status == $object::STATUS_VALIDATED) {
426 print
'<a class="butAction" href="'.$_SERVER[
"PHP_SELF"].
'?id='.
$object->id.
'&action=closeas&token='.
newToken().(!
getDolGlobalString(
'MAIN_JUMP_TAG') ?
'' :
'#close').
'"';
427 print
'>'.$langs->trans(
'Close').
'</a>';
429 print
'<a class="butActionRefused classfortooltip" href="#" title="'.dol_escape_htmltag($langs->trans(
"NotEnoughPermissions")).
'">'.$langs->trans(
'Close').
'</a>';
434 if ($permissiontoadd) {
435 print
dolGetButtonAction($langs->trans(
"ToClone"),
'',
'default', $_SERVER[
'PHP_SELF'].
'?id='.
$object->id.(!empty(
$object->socid) ?
'&socid='.$object->socid :
"").
'&action=clone&object=recruitmentjobposition',
'clone', $permissiontoadd);
447 if ($permissiontoadd) {
448 if (
$object->status == $object::STATUS_CANCELED) {
449 print
'<a class="butAction" href="'.$_SERVER[
"PHP_SELF"].
'?id='.
$object->id.
'&action=confirm_reopen&confirm=yes&token='.
newToken().
'">'.$langs->trans(
"Re-Open").
'</a>'.
"\n";
455 print
dolGetButtonAction($langs->trans(
"Delete"),
'',
'delete', $_SERVER[
"PHP_SELF"].
'?id='.
$object->id.
'&action=delete&token='.
newToken(),
'delete', $permissiontodelete, $params);
462 if (
GETPOST(
'modelselected')) {
466 if ($action !=
'presend') {
467 print
'<div class="fichecenter"><div class="fichehalfleft">';
468 print
'<a name="builddoc"></a>';
470 $includedocgeneration = 1;
473 if ($includedocgeneration) {
475 $relativepath = $objref.
'/'.$objref.
'.pdf';
476 $filedir = $conf->recruitment->dir_output.
'/'.
$object->element.
'/'.$objref;
477 $urlsource = $_SERVER[
"PHP_SELF"].
"?id=".
$object->id;
478 $genallowed = $user->hasRight(
'recruitment',
'recruitmentjobposition',
'read');
479 $delallowed = $user->hasRight(
'recruitment',
'recruitmentjobposition',
'write');
480 print $formfile->showdocuments(
'recruitment:RecruitmentJobPosition',
$object->element.
'/'.$objref, $filedir, $urlsource, $genallowed, $delallowed,
$object->model_pdf, 1, 0, 0, 28, 0,
'',
'',
'', $langs->defaultlang);
484 $tmparray = $form->showLinkToObjectBlock($object, array(), array(
'recruitmentjobposition'), 1);
485 $linktoelem = $tmparray[
'linktoelem'];
486 $htmltoenteralink = $tmparray[
'htmltoenteralink'];
487 print $htmltoenteralink;
489 $somethingshown = $form->showLinkedObjectBlock($object, $linktoelem);
493 print
'<br><!-- Link to go on public job page -->'.
"\n";
495 $langs->loadLangs(array(
'recruitment'));
497 $out =
img_picto(
'',
'globe').
' <span class="opacitymedium">'.$langs->trans(
"PublicUrl").
'</span><br>';
500 $out .=
'<div class="urllink"><input type="text" id="recruitmentjobpositionurl" class="quatrevingtpercent" value="'.$url.
'">';
501 $out .=
'<a href="'.$url.
'" target="_blank" rel="noopener noreferrer">'.
img_picto(
'',
'globe').
'</a></div>';
507 print
'</div><div class="fichehalfright">';
511 $morehtmlcenter =
dolGetButtonTitle($langs->trans(
'SeeAll'),
'',
'fa fa-bars imgforviewmode', DOL_URL_ROOT.
'/recruitment/recruitmentjobposition_agenda.php?id='.
$object->id);
514 include_once DOL_DOCUMENT_ROOT.
'/core/class/html.formactions.class.php';
516 $somethingshown = $formactions->showactions($object,
$object->element.
'@recruitment', (is_object(
$object->thirdparty) ?
$object->thirdparty->id : 0), 1,
'', $MAXEVENT,
'', $morehtmlcenter);
518 print
'</div></div>';
522 if (
GETPOST(
'modelselected')) {
527 $modelmail =
'recruitmentjobposition';
528 $defaulttopic =
'InformationMessage';
529 $diroutput = $conf->recruitment->dir_output;
530 $trackid =
'recruitmentjobposition'.$object->id;
532 include DOL_DOCUMENT_ROOT.
'/core/tpl/card_presend.tpl.php';
if( $user->socid > 0) if(! $user->hasRight('accounting', 'chartofaccount')) $object
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 to manage projects.
Class for RecruitmentJobPosition.
const STATUS_DRAFT
Draft status.
load_fiche_titre($title, $morehtmlright='', $picto='generic', $pictoisfullpath=0, $id='', $morecssontable='', $morehtmlcenter='')
Load a title with picto.
setEventMessages($mesg, $mesgs, $style='mesgs', $messagekey='', $noduplicate=0, $attop=0)
Set event messages in dol_events session object.
img_picto($titlealt, $picto, $moreatt='', $pictoisfullpath=0, $srconly=0, $notitle=0, $alt='', $morecss='', $marginleftonlyshort=2)
Show picto whatever it's its name (generic function)
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.
dolGetButtonTitle($label, $helpText='', $iconClass='fa fa-file', $url='', $id='', $status=1, $params=array())
Function dolGetButtonTitle : this kind of buttons are used in title in list.
dol_get_fiche_end($notab=0)
Return tab footer of a card.
ajax_autoselect($htmlname, $addlink='', $textonlink='Link')
Make content of an input box selected when we click into input field.
newToken()
Return the value of token currently saved into session with name 'newtoken'.
dolGetButtonAction($label, $text='', $actionType='default', $url='', $id='', $userRight=1, $params=array())
Function dolGetButtonAction.
GETPOST($paramname, $check='alphanohtml', $method=0, $filter=null, $options=null, $noreplace=0)
Return value of a param into GET or POST supervariable.
dol_buildpath($path, $type=0, $returnemptyifnotfound=0)
Return path of url or filesystem.
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.
img_edit($titlealt='default', $float=0, $other='')
Show logo edit/modify fiche.
getPublicJobPositionUrl($mode, $ref='', $localorexternal=0)
Return string with full Url.
recruitmentjobpositionPrepareHead($object)
Prepare array of tabs for RecruitmentJobPosition.
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.