OpenConcerto

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

svn://code.openconcerto.org/openconcerto

Rev

Rev 149 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 149 Rev 156
Line 52... Line 52...
52
public class FacturationCommandeClientSQLElement extends ComptaSQLConfElement {
52
public class FacturationCommandeClientSQLElement extends ComptaSQLConfElement {
53
 
53
 
54
    public static final String TABLENAME = "FACTURATION_COMMANDE_CLIENT";
54
    public static final String TABLENAME = "FACTURATION_COMMANDE_CLIENT";
55
 
55
 
56
    public FacturationCommandeClientSQLElement() {
56
    public FacturationCommandeClientSQLElement() {
57
        super(TABLENAME, "une terme de facturation de commande client", "termes de facturation commandes clients");
57
        super(TABLENAME, "un terme de facturation de commande client", "termes de facturation commandes clients");
58
        {
58
        {
59
            RowAction action = new RowAction(new AbstractAction("Facturer") {
59
            RowAction action = new RowAction(new AbstractAction("Facturer") {
60
 
60
 
61
                @Override
61
                @Override
62
                public void actionPerformed(ActionEvent e) {
62
                public void actionPerformed(ActionEvent e) {
Line 274... Line 274...
274
        };
274
        };
275
    }
275
    }
276
 
276
 
277
    @Override
277
    @Override
278
    protected String createCode() {
278
    protected String createCode() {
279
        return createCodeFromPackage() + ".facturation";
279
        return createCodeOfPackage() + ".facturation";
280
    }
280
    }
281
 
281
 
282
}
282
}