Add template recruitment odt

This commit is contained in:
Alexandre SPANGARO 2022-11-30 22:18:39 +01:00
parent bf3a5850bf
commit c683fb318a
2 changed files with 18 additions and 9 deletions

View File

@ -1,5 +1,6 @@
<?php <?php
/* Copyright (C) 2020 Laurent Destailleur <eldy@users.sourceforge.net> /* Copyright (C) 2020 Laurent Destailleur <eldy@users.sourceforge.net>
/* Copyright (C) 2022 Alexandre Spangaro <aspangaro@open-dsi.fr>
* *
* This program is free software; you can redistribute it and/or modify * This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by * it under the terms of the GNU General Public License as published by
@ -62,10 +63,24 @@ class RecruitmentJobPosition extends CommonObject
*/ */
public $picto = 'recruitmentjobposition'; public $picto = 'recruitmentjobposition';
/**
* Draft status
*/
const STATUS_DRAFT = 0; const STATUS_DRAFT = 0;
/**
* Validated
*/
const STATUS_VALIDATED = 1; const STATUS_VALIDATED = 1;
/**
* Recruited
*/
const STATUS_RECRUITED = 3; const STATUS_RECRUITED = 3;
/**
* Canceled
*/
const STATUS_CANCELED = 9; const STATUS_CANCELED = 9;
@ -651,7 +666,7 @@ class RecruitmentJobPosition extends CommonObject
} }
/** /**
* Close the commercial proposal * Close the recruitment
* *
* @param User $user Object user that close * @param User $user Object user that close
* @param int $status Statut * @param int $status Statut
@ -683,12 +698,6 @@ class RecruitmentJobPosition extends CommonObject
if ($status == self::STATUS_RECRUITED) { if ($status == self::STATUS_RECRUITED) {
$triggerName = 'RECRUITMENTJOB_CLOSE_RECRUITED'; $triggerName = 'RECRUITMENTJOB_CLOSE_RECRUITED';
$modelpdf = $this->model_pdf; $modelpdf = $this->model_pdf;
if ($result < 0) {
$this->error = $this->db->lasterror();
$this->db->rollback();
return -2;
}
} }
if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE)) { if (empty($conf->global->MAIN_DISABLE_PDF_AUTOUPDATE)) {