OpenConcerto

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

svn://code.openconcerto.org/openconcerto

Rev

Rev 93 | Show entire file | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 93 Rev 156
Line 35... Line 35...
35
import javax.swing.SwingConstants;
35
import javax.swing.SwingConstants;
36
 
36
 
37
public class AcompteSQLElement extends ComptaSQLConfElement {
37
public class AcompteSQLElement extends ComptaSQLConfElement {
38
 
38
 
39
    public AcompteSQLElement() {
39
    public AcompteSQLElement() {
40
        super("ACOMPTE", "un acompte", "acompte");
40
        super("ACOMPTE", "un acompte", "acomptes");
41
    }
41
    }
42
 
42
 
43
    protected List<String> getListFields() {
43
    protected List<String> getListFields() {
44
        final List<String> list = new ArrayList<String>(2);
44
        final List<String> list = new ArrayList<String>(2);
45
        list.add("ID_SALARIE");
45
        list.add("ID_SALARIE");
Line 127... Line 127...
127
        };
127
        };
128
    }
128
    }
129
 
129
 
130
    @Override
130
    @Override
131
    protected String createCode() {
131
    protected String createCode() {
132
        return createCodeFromPackage() + ".advance";
132
        return createCodeOfPackage() + ".advance";
133
    }
133
    }
134
}
134
}