OpenConcerto

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

svn://code.openconcerto.org/openconcerto

Rev

Rev 57 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 57 Rev 156
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
import org.openconcerto.sql.element.ConfSQLElement;
16
import org.openconcerto.erp.core.common.element.ComptaSQLConfElement;
17
import org.openconcerto.sql.element.SQLComponent;
17
import org.openconcerto.sql.element.SQLComponent;
18
import org.openconcerto.sql.element.UISQLComponent;
18
import org.openconcerto.sql.element.UISQLComponent;
-
 
19
import org.openconcerto.sql.model.DBRoot;
19
 
20
 
20
import java.util.ArrayList;
21
import java.util.ArrayList;
21
import java.util.List;
22
import java.util.List;
22
 
23
 
23
import javax.swing.JTextField;
24
import javax.swing.JTextField;
24
 
25
 
25
public class ProfilPayeElementSQLElement extends ConfSQLElement {
26
public class ProfilPayeElementSQLElement extends ComptaSQLConfElement {
26
    public ProfilPayeElementSQLElement() {
27
    public ProfilPayeElementSQLElement(final DBRoot root) {
27
        super("PROFIL_PAYE_ELEMENT", "un élément d'un profil de paye", "éléments de profils de paye");
28
        super(root.getTable("PROFIL_PAYE_ELEMENT"), "un élément d'un profil de paye", "éléments de profils de paye");
28
    }
29
    }
29
 
30
 
30
    public List<String> getListFields() {
31
    public List<String> getListFields() {
31
        final List<String> l = new ArrayList<String>();
32
        final List<String> l = new ArrayList<String>();
32
        l.add("NOM");
33
        l.add("NOM");