FIX : extrafields are not used yet + fix ihm
This commit is contained in:
parent
f99e19e729
commit
accf426f19
@ -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
|
||||
|
||||
@ -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);
|
||||
|
||||
Loading…
Reference in New Issue
Block a user