OpenConcerto

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

svn://code.openconcerto.org/openconcerto

Rev

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

Rev 132 Rev 156
Line 48... Line 48...
48
import javax.swing.SwingUtilities;
48
import javax.swing.SwingUtilities;
49
 
49
 
50
public class RelanceSQLElement extends ComptaSQLConfElement {
50
public class RelanceSQLElement extends ComptaSQLConfElement {
51
 
51
 
52
    public RelanceSQLElement() {
52
    public RelanceSQLElement() {
53
        super("RELANCE", "relance client", "relances clients");
53
        super("RELANCE", "une relance client", "relances clients");
54
    }
54
    }
55
 
55
 
56
    protected List<String> getListFields() {
56
    protected List<String> getListFields() {
57
        final List<String> l = new ArrayList<String>();
57
        final List<String> l = new ArrayList<String>();
58
        l.add("NUMERO");
58
        l.add("NUMERO");
Line 298... Line 298...
298
        super.archive(trees, cutLinks);
298
        super.archive(trees, cutLinks);
299
    }
299
    }
300
 
300
 
301
    @Override
301
    @Override
302
    protected String createCode() {
302
    protected String createCode() {
303
        return super.createCodeFromPackage() + ".chaseletter";
303
        return this.createCodeOfPackage() + ".chaseletter";
304
    }
304
    }
305
}
305
}