fix title on application card

This commit is contained in:
Christian Foellmann 2022-08-19 14:28:15 +02:00
parent 436a217ea9
commit ef1ecadd8c

View File

@ -257,13 +257,13 @@ $form = new Form($db);
$formfile = new FormFile($db);
$formproject = new FormProjets($db);
$title = $object->ref." - ".$langs->trans('Card');
$help_url = '';
llxHeader('', $title, $help_url);
// Part to create
if ($action == 'create') {
$title = $langs->trans('NewCandidature');
$help_url = '';
llxHeader('', $title, $help_url);
print load_fiche_titre($langs->trans("NewObject", $langs->transnoentitiesnoconv("RecruitmentCandidature")), '', 'object_'.$object->picto);
print '<form method="POST" action="'.$_SERVER["PHP_SELF"].'">';
@ -299,6 +299,10 @@ if ($action == 'create') {
// Part to edit record
if (($id || $ref) && $action == 'edit') {
$title = $object->ref." - ".$langs->trans('Card');
$help_url = '';
llxHeader('', $title, $help_url);
print load_fiche_titre($langs->trans("RecruitmentCandidature"), '', 'object_'.$object->picto);
print '<form method="POST" action="'.$_SERVER["PHP_SELF"].'">';
@ -335,6 +339,10 @@ if (($id || $ref) && $action == 'edit') {
if ($object->id > 0 && (empty($action) || ($action != 'edit' && $action != 'create'))) {
$res = $object->fetch_optionals();
$title = $object->ref." - ".$langs->trans('Card');
$help_url = '';
llxHeader('', $title, $help_url);
$head = recruitmentcandidaturePrepareHead($object);
print dol_get_fiche_head($head, 'card', $langs->trans("RecruitmentCandidature"), -1, $object->picto);