replace commentaire_abandon by abort_comment

This commit is contained in:
Frédéric FRANCE 2021-10-31 21:18:59 +01:00
parent bc972554c6
commit 9a68a97fc6
No known key found for this signature in database
GPG Key ID: 06809324E4B2ABC1
3 changed files with 13 additions and 13 deletions

View File

@ -113,7 +113,7 @@ class Position extends CommonObject
'fk_job' => array('type'=>'integer:Job:/hrm/class/job.class.php', 'label'=>'Job', 'enabled'=>'1', 'position'=>56, 'notnull'=>1, 'visible'=>1,),
'date_start' => array('type'=>'date', 'label'=>'DateStart', 'enabled'=>'1', 'position'=>51, 'notnull'=>1, 'visible'=>1,),
'date_end' => array('type'=>'date', 'label'=>'DateEnd', 'enabled'=>'1', 'position'=>52, 'notnull'=>0, 'visible'=>1,),
'commentaire_abandon' => array('type'=>'varchar(255)', 'label'=>'AbandonmentComment', 'enabled'=>'1', 'position'=>502, 'notnull'=>0, 'visible'=>1,),
'abort_comment' => array('type'=>'varchar(255)', 'label'=>'AbandonmentComment', 'enabled'=>'1', 'position'=>502, 'notnull'=>0, 'visible'=>1,),
'note_public' => array('type'=>'html', 'label'=>'NotePublic', 'enabled'=>'1', 'position'=>70, 'notnull'=>0, 'visible'=>0,),
'note_private' => array('type'=>'html', 'label'=>'NotePrivate', 'enabled'=>'1', 'position'=>71, 'notnull'=>0, 'visible'=>0,),
'fk_user_creat' => array('type'=>'integer:User:user/class/user.class.php', 'label'=>'UserAuthor', 'enabled'=>'1', 'position'=>510, 'notnull'=>1, 'visible'=>-2, 'foreignkey'=>'user.rowid',),
@ -129,7 +129,7 @@ class Position extends CommonObject
public $fk_job;
public $date_start;
public $date_end;
public $commentaire_abandon;
public $abort_comment;
public $note_public;
public $note_private;
public $fk_user_creat;

View File

@ -266,7 +266,7 @@ CREATE TABLE llx_hrm_job_user(
fk_job integer NOT NULL,
date_start date,
date_end date,
commentaire_abandon varchar(255),
abort_comment varchar(255),
note_public text,
note_private text,
fk_user_creat integer,

View File

@ -17,17 +17,17 @@
CREATE TABLE llx_hrm_job_user(
-- BEGIN MODULEBUILDER FIELDS
rowid integer AUTO_INCREMENT PRIMARY KEY NOT NULL,
rowid integer AUTO_INCREMENT PRIMARY KEY NOT NULL,
-- ref varchar(128) NOT NULL,
description text,
date_creation datetime NOT NULL,
tms timestamp,
fk_contrat integer,
fk_user integer NOT NULL,
fk_job integer NOT NULL,
date_start datetime,
date_end datetime,
commentaire_abandon varchar(255),
description text,
date_creation datetime NOT NULL,
tms timestamp,
fk_contrat integer,
fk_user integer NOT NULL,
fk_job integer NOT NULL,
date_start datetime,
date_end datetime,
abort_comment varchar(255),
note_public text,
note_private text,
fk_user_creat integer,