OpenConcerto

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

svn://code.openconcerto.org/openconcerto

Rev

Rev 132 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
18 ilm 1
/*
2
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
3
 *
4
 * Copyright 2011 OpenConcerto, by ILM Informatique. All rights reserved.
5
 *
6
 * The contents of this file are subject to the terms of the GNU General Public License Version 3
7
 * only ("GPL"). You may not use this file except in compliance with the License. You can obtain a
8
 * copy of the License at http://www.gnu.org/licenses/gpl-3.0.html See the License for the specific
9
 * language governing permissions and limitations under the License.
10
 *
11
 * When distributing the software, include this License Header Notice in each file.
12
 */
13
 
14
 package org.openconcerto.erp.core.common.element;
15
 
16
import org.openconcerto.erp.core.common.component.AdresseSQLComponent;
17
import org.openconcerto.sql.element.SQLComponent;
177 ilm 18
import org.openconcerto.utils.ListMap;
18 ilm 19
 
20
import java.util.ArrayList;
21
import java.util.List;
22
 
23
public class AdresseSQLElement extends ComptaSQLConfElement {
24
 
25
    public AdresseSQLElement() {
26
        super("ADRESSE", "une adresse", "adresses");
27
    }
28
 
177 ilm 29
    @Override
30
    public ListMap<String, String> getShowAs() {
31
        if (this.getTable().contains("DISTRICT")) {
32
            return ListMap.singleton(null, "RUE", "DISTRICT", "DEPARTEMENT", "CODE_POSTAL", "VILLE");
33
        } else {
34
            return ListMap.singleton(null, "RUE", "CODE_POSTAL", "VILLE");
35
        }
36
    }
37
 
18 ilm 38
    protected List<String> getListFields() {
39
        final List<String> l = new ArrayList<String>();
40
        l.add("RUE");
73 ilm 41
        l.add("CODE_POSTAL");
18 ilm 42
        l.add("VILLE");
43
        return l;
44
    }
45
 
46
    protected List<String> getComboFields() {
47
        final List<String> l = new ArrayList<String>();
93 ilm 48
        l.add("LIBELLE");
18 ilm 49
        l.add("RUE");
73 ilm 50
        l.add("CODE_POSTAL");
18 ilm 51
        l.add("VILLE");
52
        return l;
53
    }
54
 
55
    /*
56
     * (non-Javadoc)
57
     *
58
     * @see org.openconcerto.devis.SQLElement#getComponent()
59
     */
60
    public SQLComponent createComponent() {
61
        return new AdresseSQLComponent(this);
62
    }
57 ilm 63
 
64
    @Override
65
    protected String createCode() {
66
        return "address";
67
    }
132 ilm 68
 
69
    @Override
70
    public boolean isPrivate() {
71
        return true;
72
    }
18 ilm 73
}