OpenConcerto

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

svn://code.openconcerto.org/openconcerto

Rev

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

Rev 132 Rev 156
Line 37... Line 37...
37
 
37
 
38
    protected List<String> getListFields() {
38
    protected List<String> getListFields() {
39
        final List<String> l = new ArrayList<String>();
39
        final List<String> l = new ArrayList<String>();
40
        l.add("CODE");
40
        l.add("CODE");
41
        l.add("NOM");
41
        l.add("NOM");
-
 
42
        l.add("PA_HT");
42
        l.add("PV_HT");
43
        l.add("PV_HT");
43
        l.add("QTE");
44
        l.add("QTE");
44
        l.add("QTE_LIVREE");
45
        l.add("QTE_LIVREE");
45
        l.add("QTE_A_LIVRER");
46
        l.add("QTE_A_LIVRER");
46
        l.add("ID_TAXE");
47
        l.add("ID_TAXE");
47
        l.add("POIDS");
48
        l.add("POIDS");
-
 
49
        l.add("T_PA_HT");
-
 
50
        l.add("T_PV_HT");
48
        return l;
51
        return l;
49
    }
52
    }
50
 
53
 
51
    protected List<String> getComboFields() {
54
    protected List<String> getComboFields() {
52
        final List<String> l = new ArrayList<String>();
55
        final List<String> l = new ArrayList<String>();
Line 115... Line 118...
115
 
118
 
116
    }
119
    }
117
 
120
 
118
    @Override
121
    @Override
119
    protected String createCode() {
122
    protected String createCode() {
120
        return createCodeFromPackage() + ".item";
123
        return createCodeOfPackage() + ".item";
121
    }
124
    }
122
}
125
}