26require_once
'../main.inc.php';
27require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formcompany.class.php';
28require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formfile.class.php';
29require_once DOL_DOCUMENT_ROOT.
'/core/class/html.formprojet.class.php';
30require_once DOL_DOCUMENT_ROOT.
'/projet/class/project.class.php';
31require_once DOL_DOCUMENT_ROOT.
'/recruitment/class/recruitmentjobposition.class.php';
32require_once DOL_DOCUMENT_ROOT.
'/recruitment/lib/recruitment_recruitmentjobposition.lib.php';
35$langs->loadLangs(array(
"recruitment",
"other"));
40$action =
GETPOST(
'action',
'aZ09');
41$confirm =
GETPOST(
'confirm',
'alpha');
42$cancel =
GETPOST(
'cancel',
'aZ09');
43$contextpage =
GETPOST(
'contextpage',
'aZ') ?
GETPOST(
'contextpage',
'aZ') :
'recruitmentjobpositioncard';
44$backtopage =
GETPOST(
'backtopage',
'alpha');
45$backtopageforcancel =
GETPOST(
'backtopageforcancel',
'alpha');
51$diroutputmassaction = $conf->recruitment->dir_output.
'/temp/massgeneration/'.$user->id;
52$hookmanager->initHooks(array(
'recruitmentjobpositioncard',
'globalcard'));
55$extrafields->fetch_name_optionals_label(
$object->table_element);
57$search_array_options = $extrafields->getOptionalsFromPost(
$object->table_element,
'',
'search_');
60$search_all =
GETPOST(
"search_all",
'alpha');
62foreach (
$object->fields as $key => $val) {
63 if (
GETPOST(
'search_'.$key,
'alpha')) {
64 $search[$key] =
GETPOST(
'search_'.$key,
'alpha');
68if (empty($action) && empty($id) && empty($ref)) {
73include DOL_DOCUMENT_ROOT.
'/core/actions_fetchobject.inc.php';
76$permissiontoread = $user->hasRight(
'recruitment',
'recruitmentjobposition',
'read');
77$permissiontoadd = $user->hasRight(
'recruitment',
'recruitmentjobposition',
'write');
78$permissiontodelete = $user->hasRight(
'recruitment',
'recruitmentjobposition',
'delete') || ($permissiontoadd && isset(
$object->status) &&
$object->status == $object::STATUS_DRAFT);
79$permissionnote = $user->hasRight(
'recruitment',
'recruitmentjobposition',
'write');
80$permissiondellink = $user->hasRight(
'recruitment',
'recruitmentjobposition',
'write');
81$upload_dir = $conf->recruitment->multidir_output[isset(
$object->entity) ?
$object->entity : 1];
83$usercanclose = $permissiontoadd;
88$isdraft = ((
$object->status == $object::STATUS_DRAFT) ? 1 : 0);
89$result =
restrictedArea($user,
'recruitment',
$object->id,
'recruitment_recruitmentjobposition',
'recruitmentjobposition',
'',
'rowid', $isdraft);
97$reshook = $hookmanager->executeHooks(
'doActions', $parameters, $object, $action);
102if (empty($reshook)) {
105 $backurlforlist =
dol_buildpath(
'/recruitment/recruitmentjobposition_list.php', 1);
107 if (empty($backtopage) || ($cancel && empty($id))) {
108 if (empty($backtopage) || ($cancel && strpos($backtopage,
'__ID__'))) {
109 if (empty($id) && (($action !=
'add' && $action !=
'create') || $cancel)) {
110 $backtopage = $backurlforlist;
112 $backtopage =
dol_buildpath(
'/recruitment/recruitmentjobposition_card.php', 1).
'?id='.((!empty($id) &&
$id > 0) ? $id :
'__ID__');
116 $triggermodname =
'RECRUITMENT_RECRUITMENTJOBPOSITION_MODIFY';
119 include DOL_DOCUMENT_ROOT.
'/core/actions_addupdatedelete.inc.php';
122 include DOL_DOCUMENT_ROOT.
'/core/actions_dellink.inc.php';
125 include DOL_DOCUMENT_ROOT.
'/core/actions_printing.inc.php';
131 include DOL_DOCUMENT_ROOT.
'/core/actions_builddoc.inc.php';
133 if ($action ==
'set_thirdparty' && $permissiontoadd) {
134 $object->setValueFrom(
'fk_soc',
GETPOSTINT(
'fk_soc'),
'',
'',
'date',
'', $user, $triggermodname);
136 if ($action ==
'classin' && $permissiontoadd) {
139 if ($action ==
'confirm_closeas' && $usercanclose && !
GETPOST(
'cancel',
'alpha')) {
141 setEventMessages($langs->trans(
"ErrorFieldRequired", $langs->transnoentitiesnoconv(
"CloseAs")),
null,
'errors');
145 if (
$object->status == $object::STATUS_VALIDATED) {
164 $triggersendname =
'RECRUITMENTJOBPOSITION_SENTBYMAIL';
165 $autocopy =
'MAIN_MAIL_AUTOCOPY_RECRUITMENTJOBPOSITION_TO';
166 $trackid =
'recruitmentjobposition'.$object->id;
167 include DOL_DOCUMENT_ROOT.
'/core/actions_sendmails.inc.php';
177$form =
new Form($db);
181$title =
$object->ref.
" - ".$langs->trans(
'Card');
186if ($action ==
'create') {
187 print
load_fiche_titre($langs->trans(
"NewPositionToBeFilled"),
'',
'object_'.$object->picto);
189 print
'<form method="POST" action="'.$_SERVER[
"PHP_SELF"].
'">';
190 print
'<input type="hidden" name="token" value="'.newToken().
'">';
191 print
'<input type="hidden" name="action" value="add">';
193 print
'<input type="hidden" name="backtopage" value="'.$backtopage.
'">';
195 if ($backtopageforcancel) {
196 print
'<input type="hidden" name="backtopageforcancel" value="'.$backtopageforcancel.
'">';
200 if (!GETPOSTISSET(
'fk_user_recruiter')) {
201 $_POST[
'fk_user_recruiter'] = $user->id;
206 print
'<table class="border centpercent tableforfieldcreate">'.
"\n";
209 include DOL_DOCUMENT_ROOT.
'/core/tpl/commonfields_add.tpl.php';
212 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_add.tpl.php';
214 print
'</table>'.
"\n";
218 print $form->buttonsSaveCancel(
"Create");
226if (($id || $ref) && $action ==
'edit') {
227 print
load_fiche_titre($langs->trans(
"PositionToBeFilled"),
'',
'object_'.$object->picto);
229 print
'<form method="POST" action="'.$_SERVER[
"PHP_SELF"].
'">';
230 print
'<input type="hidden" name="token" value="'.newToken().
'">';
231 print
'<input type="hidden" name="action" value="update">';
232 print
'<input type="hidden" name="id" value="'.$object->id.
'">';
234 print
'<input type="hidden" name="backtopage" value="'.$backtopage.
'">';
236 if ($backtopageforcancel) {
237 print
'<input type="hidden" name="backtopageforcancel" value="'.$backtopageforcancel.
'">';
242 print
'<table class="border centpercent tableforfieldedit">'.
"\n";
245 include DOL_DOCUMENT_ROOT.
'/core/tpl/commonfields_edit.tpl.php';
248 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_edit.tpl.php';
254 print $form->buttonsSaveCancel();
260if (
$object->id > 0 && (empty($action) || ($action !=
'edit' && $action !=
'create'))) {
267 if ($action ==
'delete') {
268 $formconfirm = $form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.
$object->id, $langs->trans(
'DeleteRecruitmentJobPosition'), $langs->trans(
'ConfirmDeleteObject'),
'confirm_delete',
'', 0, 1);
271 if ($action ==
'deleteline') {
272 $formconfirm = $form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.
$object->id.
'&lineid='.$lineid, $langs->trans(
'DeleteLine'), $langs->trans(
'ConfirmDeleteLine'),
'confirm_deleteline',
'', 0, 1);
275 if ($action ==
'clone') {
277 $formquestion = array();
278 $formconfirm = $form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.
$object->id, $langs->trans(
'ToClone'), $langs->trans(
'ConfirmCloneAsk',
$object->ref),
'confirm_clone', $formquestion,
'yes', 1);
280 if ($action ==
'closeas') {
283 $formquestion = array(
284 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))),
285 array(
'type' =>
'text',
'name' =>
'note_private',
'label' => $langs->trans(
"Note"),
'value' =>
'')
297 $formconfirm = $form->formconfirm($_SERVER[
"PHP_SELF"].
'?id='.
$object->id, $langs->trans(
'Close'), $text,
'confirm_closeas', $formquestion,
'', 1, 250);
301 $parameters = array(
'formConfirm' => $formconfirm,
'lineid' => $lineid);
302 $reshook = $hookmanager->executeHooks(
'formConfirm', $parameters, $object, $action);
303 if (empty($reshook)) {
304 $formconfirm .= $hookmanager->resPrint;
305 } elseif ($reshook > 0) {
306 $formconfirm = $hookmanager->resPrint;
315 $linkback =
'<a href="'.dol_buildpath(
'/recruitment/recruitmentjobposition_list.php', 1).
'?restore_lastsearch_values=1'.(!empty($socid) ?
'&socid='.$socid :
'').
'">'.$langs->trans(
"BackToList").
'</a>';
317 $morehtmlref =
'<div class="refidno">';
326 if (isModEnabled(
'project')) {
327 $langs->load(
"projects");
328 $morehtmlref .= $langs->trans(
'Project').
' ';
329 if ($permissiontoadd) {
330 if ($action !=
'classify') {
331 $morehtmlref .=
'<a class="editfielda" href="'.$_SERVER[
'PHP_SELF'].
'?action=classify&token='.
newToken().
'&id='.
$object->id.
'">'.
img_edit($langs->transnoentitiesnoconv(
'SetProject')).
'</a>';
333 $morehtmlref .=
' : ';
334 if ($action ==
'classify') {
336 $morehtmlref .=
'<form method="post" action="'.$_SERVER[
'PHP_SELF'].
'?id='.
$object->id.
'">';
337 $morehtmlref .=
'<input type="hidden" name="action" value="classin">';
338 $morehtmlref .=
'<input type="hidden" name="token" value="'.newToken().
'">';
339 $morehtmlref .= $formproject->select_projects(
$object->socid,
$object->fk_project,
'projectid', $maxlength, 0, 1, 0, 1, 0, 0,
'', 1);
340 $morehtmlref .=
'<input type="submit" class="button valignmiddle" value="'.$langs->trans(
"Modify").
'">';
341 $morehtmlref .=
'</form>';
343 $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');
346 if (!empty(
$object->fk_project)) {
348 $proj->fetch(
$object->fk_project);
349 $morehtmlref .=
': '.$proj->getNomUrl();
355 $morehtmlref .=
'</div>';
358 dol_banner_tab($object,
'ref', $linkback, 1,
'ref',
'ref', $morehtmlref);
361 print
'<div class="fichecenter">';
362 print
'<div class="fichehalfleft">';
363 print
'<div class="underbanner clearboth"></div>';
364 print
'<table class="border centpercent tableforfield">'.
"\n";
367 $keyforbreak =
'description';
368 unset(
$object->fields[
'fk_project']);
370 include DOL_DOCUMENT_ROOT.
'/core/tpl/commonfields_view.tpl.php';
373 include DOL_DOCUMENT_ROOT.
'/core/tpl/extrafields_view.tpl.php';
379 print
'<div class="clearboth"></div>';
386 if ($action !=
'presend' && $action !=
'editline') {
387 print
'<div class="tabsAction">'.
"\n";
388 $parameters = array();
389 $reshook = $hookmanager->executeHooks(
'addMoreActionsButtons', $parameters, $object, $action);
394 if (empty($reshook)) {
396 if (empty($user->socid)) {
397 print
dolGetButtonAction(
'', $langs->trans(
'SendMail'),
'default', $_SERVER[
"PHP_SELF"].
'?id='.
$object->id.
'&action=presend&mode=init&token='.
newToken().
'#formmailbeforetitle');
401 if (
$object->status == $object::STATUS_VALIDATED ||
$object->status == $object::STATUS_RECRUITED) {
402 if ($permissiontoadd) {
403 print
dolGetButtonAction(
'', $langs->trans(
'SetToDraft'),
'default', $_SERVER[
"PHP_SELF"].
'?id='.
$object->id.
'&action=confirm_setdraft&confirm=yes&token='.
newToken(),
'', $permissiontoadd);
408 print
dolGetButtonAction(
'', $langs->trans(
'Modify'),
'default', $_SERVER[
"PHP_SELF"].
'?id='.
$object->id.
'&action=edit&token='.
newToken(),
'', $permissiontoadd);
411 if (
$object->status == $object::STATUS_DRAFT) {
412 if ($permissiontoadd) {
414 print
dolGetButtonAction(
'', $langs->trans(
'Validate'),
'default', $_SERVER[
'PHP_SELF'].
'?id='.
$object->id.
'&action=confirm_validate&confirm=yes&token='.
newToken(),
'', $permissiontoadd);
416 $langs->load(
"errors");
417 print
dolGetButtonAction($langs->trans(
"ErrorAddAtLeastOneLineFirst"), $langs->trans(
"Validate"),
'default',
'#',
'', 0);
423 if (
$object->status == $object::STATUS_VALIDATED) {
425 print
'<a class="butAction" href="'.$_SERVER[
"PHP_SELF"].
'?id='.
$object->id.
'&action=closeas&token='.
newToken().(!
getDolGlobalString(
'MAIN_JUMP_TAG') ?
'' :
'#close').
'"';
426 print
'>'.$langs->trans(
'Close').
'</a>';
428 print
'<a class="butActionRefused classfortooltip" href="#" title="'.dol_escape_htmltag($langs->trans(
"NotEnoughPermissions")).
'">'.$langs->trans(
'Close').
'</a>';
433 if ($permissiontoadd) {
434 print
dolGetButtonAction($langs->trans(
"ToClone"),
'',
'default', $_SERVER[
'PHP_SELF'].
'?id='.
$object->id.(!empty(
$object->socid) ?
'&socid='.$object->socid :
"").
'&action=clone&object=recruitmentjobposition',
'clone', $permissiontoadd);
446 if ($permissiontoadd) {
447 if (
$object->status == $object::STATUS_CANCELED) {
448 print
'<a class="butAction" href="'.$_SERVER[
"PHP_SELF"].
'?id='.
$object->id.
'&action=confirm_reopen&confirm=yes&token='.
newToken().
'">'.$langs->trans(
"Re-Open").
'</a>'.
"\n";
454 print
dolGetButtonAction($langs->trans(
"Delete"),
'',
'delete', $_SERVER[
"PHP_SELF"].
'?id='.
$object->id.
'&action=delete&token='.
newToken(),
'delete', $permissiontodelete, $params);
461 if (
GETPOST(
'modelselected')) {
465 if ($action !=
'presend') {
466 print
'<div class="fichecenter"><div class="fichehalfleft">';
467 print
'<a name="builddoc"></a>';
469 $includedocgeneration = 1;
472 if ($includedocgeneration) {
474 $relativepath = $objref.
'/'.$objref.
'.pdf';
475 $filedir = $conf->recruitment->dir_output.
'/'.
$object->element.
'/'.$objref;
476 $urlsource = $_SERVER[
"PHP_SELF"].
"?id=".
$object->id;
477 $genallowed = $user->hasRight(
'recruitment',
'recruitmentjobposition',
'read');
478 $delallowed = $user->hasRight(
'recruitment',
'recruitmentjobposition',
'write');
479 print $formfile->showdocuments(
'recruitment:RecruitmentJobPosition',
$object->element.
'/'.$objref, $filedir, $urlsource, $genallowed, $delallowed,
$object->model_pdf, 1, 0, 0, 28, 0,
'',
'',
'', $langs->defaultlang);
483 $linktoelem = $form->showLinkToObjectBlock($object,
null, array(
'recruitmentjobposition'));
484 $somethingshown = $form->showLinkedObjectBlock($object, $linktoelem);
488 print
'<br><!-- Link to go on public job page -->'.
"\n";
490 $langs->loadLangs(array(
'recruitment'));
492 $out =
img_picto(
'',
'globe').
' <span class="opacitymedium">'.$langs->trans(
"PublicUrl").
'</span><br>';
495 $out .=
'<div class="urllink"><input type="text" id="recruitmentjobpositionurl" class="quatrevingtpercent" value="'.$url.
'">';
496 $out .=
'<a href="'.$url.
'" target="_blank" rel="noopener noreferrer">'.
img_picto(
'',
'globe').
'</a></div>';
502 print
'</div><div class="fichehalfright">';
506 $morehtmlcenter =
dolGetButtonTitle($langs->trans(
'SeeAll'),
'',
'fa fa-bars imgforviewmode', DOL_URL_ROOT.
'/recruitment/recruitmentjobposition_agenda.php?id='.
$object->id);
509 include_once DOL_DOCUMENT_ROOT.
'/core/class/html.formactions.class.php';
511 $somethingshown = $formactions->showactions($object,
$object->element.
'@recruitment', (is_object(
$object->thirdparty) ?
$object->thirdparty->id : 0), 1,
'', $MAXEVENT,
'', $morehtmlcenter);
513 print
'</div></div>';
517 if (
GETPOST(
'modelselected')) {
522 $modelmail =
'recruitmentjobposition';
523 $defaulttopic =
'InformationMessage';
524 $diroutput = $conf->recruitment->dir_output;
525 $trackid =
'recruitmentjobposition'.$object->id;
527 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.