OpenConcerto

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

svn://code.openconcerto.org/openconcerto

Rev

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

Rev 18 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.timesheet.element;
14
 package org.openconcerto.erp.core.humanresources.timesheet.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
import org.openconcerto.sql.sqlobject.ElementComboBox;
20
import org.openconcerto.sql.sqlobject.ElementComboBox;
20
import org.openconcerto.ui.JDate;
21
import org.openconcerto.ui.JDate;
21
 
22
 
22
import java.util.ArrayList;
23
import java.util.ArrayList;
23
import java.util.List;
24
import java.util.List;
24
 
25
 
25
import javax.swing.JTextField;
26
import javax.swing.JTextField;
26
 
27
 
27
public class PointageSQLElement extends ConfSQLElement {
28
public class PointageSQLElement extends ComptaSQLConfElement {
28
 
29
 
29
    public PointageSQLElement() {
30
    public PointageSQLElement(final DBRoot root) {
30
        super("POINTAGE", "un pointage", "pointages");
31
        super(root.getTable("POINTAGE"));
31
    }
32
    }
32
 
33
 
33
    @Override
34
    @Override
34
    protected List<String> getListFields() {
35
    protected List<String> getListFields() {
35
        final List<String> l = new ArrayList<String>();
36
        final List<String> l = new ArrayList<String>();