OpenConcerto

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

svn://code.openconcerto.org/openconcerto

Rev

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

Rev 142 Rev 156
Line 46... Line 46...
46
            super("RELIQUAT_BR", "un reliquat de BR", "reliquats de BR", "BON_RECEPTION");
46
            super("RELIQUAT_BR", "un reliquat de BR", "reliquats de BR", "BON_RECEPTION");
47
        }
47
        }
48
 
48
 
49
        @Override
49
        @Override
50
        protected String createCode() {
50
        protected String createCode() {
51
            return createCodeFromPackage() + ".reliquatbr";
51
            return createCodeOfPackage() + ".reliquatbr";
52
        }
52
        }
53
    }
53
    }
54
 
54
 
55
    public ReliquatSQLElement(final String tableName, final String singularName, final String pluralName, final String tableBonName) {
55
    public ReliquatSQLElement(final String tableName, final String singularName, final String pluralName, final String tableBonName) {
56
        super(tableName, singularName, pluralName);
56
        super(tableName, singularName, pluralName);
Line 185... Line 185...
185
        };
185
        };
186
    }
186
    }
187
 
187
 
188
    @Override
188
    @Override
189
    protected String createCode() {
189
    protected String createCode() {
190
        return createCodeFromPackage() + ".reliquatbl";
190
        return createCodeOfPackage() + ".reliquatbl";
191
    }
191
    }
192
}
192
}