OpenConcerto

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

svn://code.openconcerto.org/openconcerto

Rev

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

Rev Author Line No. Line
67 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.generationDoc.provider;
15
 
16
import org.openconcerto.erp.generationDoc.SpreadSheetCellValueContext;
17
import org.openconcerto.erp.generationDoc.SpreadSheetCellValueProviderManager;
18
import org.openconcerto.sql.model.SQLRowAccessor;
19
 
20
public class AdresseFullClientValueProvider extends AdresseClientProvider {
21
 
22
    private int type;
23
 
24
    public AdresseFullClientValueProvider(int type) {
25
        this.type = type;
26
    }
27
 
28
    @Override
29
    public Object getValue(SpreadSheetCellValueContext context) {
80 ilm 30
        final SQLRowAccessor r = getAdresse(context.getRow(), this.type);
73 ilm 31
 
93 ilm 32
        String result = "";
33
        if (r.getString("LIBELLE").trim().length() > 0) {
34
            result = r.getString("LIBELLE") + "\n";
90 ilm 35
        }
93 ilm 36
        if (r.getString("DEST").trim().length() > 0) {
37
            result = r.getString("DEST") + "\n";
38
        }
39
        if (r.getString("RUE").trim().length() > 0) {
40
            result = r.getString("RUE") + "\n";
41
        }
73 ilm 42
        result += "\n" + r.getString("CODE_POSTAL");
43
        result += " ";
44
        result += r.getString("VILLE");
45
        if (r.getBoolean("HAS_CEDEX")) {
46
            result += " Cedex";
47
            String cedex = r.getString("CEDEX");
48
            if (cedex != null && cedex.trim().length() > 0) {
49
                result += " " + cedex;
67 ilm 50
            }
51
        }
52
 
53
        return result;
54
    }
55
 
56
    public static void register() {
83 ilm 57
        SpreadSheetCellValueProviderManager.put("address.customer.full", new AdresseFullClientValueProvider(ADRESSE_PRINCIPALE));
67 ilm 58
        SpreadSheetCellValueProviderManager.put("address.customer.invoice.full", new AdresseFullClientValueProvider(ADRESSE_FACTURATION));
59
        SpreadSheetCellValueProviderManager.put("address.customer.shipment.full", new AdresseFullClientValueProvider(ADRESSE_LIVRAISON));
60
    }
61
}