OpenConcerto

Dépôt officiel du code source de l'ERP OpenConcerto
sonarqube

svn://code.openconcerto.org/openconcerto

Rev

Rev 18 | Go to most recent revision | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 18 Rev 57
Line 11... Line 11...
11
 * When distributing the software, include this License Header Notice in each file.
11
 * When distributing the software, include this License Header Notice in each file.
12
 */
12
 */
13
 
13
 
14
 package org.openconcerto.erp.core.humanresources.payroll.element;
14
 package org.openconcerto.erp.core.humanresources.payroll.element;
15
 
15
 
16
 
-
 
17
public class CodeStatutProfSQLElement extends AbstractCodeSQLElement {
16
public class CodeStatutProfSQLElement extends AbstractCodeSQLElement {
18
 
17
 
19
    public CodeStatutProfSQLElement() {
18
    public CodeStatutProfSQLElement() {
20
        super("CODE_STATUT_PROF", "un code statut professionnel", "codes statuts professionnels");
19
        super("CODE_STATUT_PROF", "un code statut professionnel", "codes statuts professionnels");
21
    }
20
    }
22
 
21
 
-
 
22
    @Override
-
 
23
    protected String createCode() {
-
 
24
        return createCodeFromPackage() + ".convention.job.code";
-
 
25
    }
23
}
26
}