FIX : extrafields are not used yet + fix ihm

This commit is contained in:
Gauthier PC portable 024 2022-02-04 15:14:30 +01:00
parent f99e19e729
commit accf426f19
2 changed files with 2 additions and 2 deletions

View File

@ -59,7 +59,7 @@ class Position extends CommonObject
/**
* @var int Does object support extrafields ? 0=No, 1=Yes
*/
public $isextrafieldmanaged = 1;
public $isextrafieldmanaged = 0;
/**
* @var string String with name of icon for position. Must be the part after the 'object_' into object_position.png

View File

@ -276,7 +276,7 @@ function DisplayPositionCard(&$object)
$morehtmlref = '<div class="refidno">';
$u_position = new User(($db));
$u_position->fetch($object->fk_user);
$morehtmlref .= $langs->trans('Employee').' : '.$u_position->getNomUrl(1);
$morehtmlref .= $langs->trans('Employee').' : '.($u_position->id > 0 ? $u_position->getNomUrl(1) : '');
$job = new Job($db);
$job->fetch($object->fk_job);
$morehtmlref .= '<br>'.$langs->trans('Job').' : '.$job->getNomUrl(1);