|
@@ -20,9 +20,9 @@
|
|
|
*/
|
|
|
|
|
|
/**
|
|
|
- * \file job_document.php
|
|
|
- * \ingroup hrm
|
|
|
- * \brief Tab for documents linked to Job
|
|
|
+ * \file htdocs/hrm/job_document.php
|
|
|
+ * \ingroup hrm
|
|
|
+ * \brief Tab for documents linked to Job
|
|
|
*/
|
|
|
|
|
|
// Load Dolibarr environment
|
|
@@ -36,15 +36,15 @@ require_once DOL_DOCUMENT_ROOT . '/hrm/class/job.class.php';
|
|
|
require_once DOL_DOCUMENT_ROOT . '/hrm/lib/hrm_job.lib.php';
|
|
|
|
|
|
// Load translation files required by the page
|
|
|
-$langs->loadLangs(array("hrm", "companies", "other", "mails"));
|
|
|
-
|
|
|
+$langs->loadLangs(array('hrm', 'companies', 'other', 'mails'));
|
|
|
|
|
|
+// Get parameters
|
|
|
$action = GETPOST('action', 'aZ09');
|
|
|
$confirm = GETPOST('confirm');
|
|
|
$id = (GETPOST('socid', 'int') ? GETPOST('socid', 'int') : GETPOST('id', 'int'));
|
|
|
$ref = GETPOST('ref', 'alpha');
|
|
|
|
|
|
-// Get parameters
|
|
|
+
|
|
|
$limit = GETPOST('limit', 'int') ? GETPOST('limit', 'int') : $conf->liste_limit;
|
|
|
$sortfield = GETPOST('sortfield', 'aZ09comma');
|
|
|
$sortorder = GETPOST('sortorder', 'aZ09comma');
|
|
@@ -68,6 +68,7 @@ $object = new Job($db);
|
|
|
$extrafields = new ExtraFields($db);
|
|
|
$diroutputmassaction = $conf->hrm->dir_output.'/temp/massgeneration/'.$user->id;
|
|
|
$hookmanager->initHooks(array('jobdocument', 'globalcard')); // Note that conf->hooks_modules contains array
|
|
|
+
|
|
|
// Fetch optionals attributes and labels
|
|
|
$extrafields->fetch_name_optionals_label($object->table_element);
|
|
|
|
|
@@ -78,6 +79,7 @@ if ($id > 0 || !empty($ref)) {
|
|
|
$upload_dir = $conf->hrm->multidir_output[$object->entity ? $object->entity : $conf->entity]."/job/".get_exdir(0, 0, 0, 1, $object);
|
|
|
}
|
|
|
|
|
|
+// Permissions
|
|
|
$permissiontoread = $user->rights->hrm->all->read;
|
|
|
$permissiontoadd = $user->rights->hrm->all->write; // Used by the include of actions_addupdatedelete.inc.php and actions_linkedfiles.inc.php
|
|
|
|