OpenConcerto

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

svn://code.openconcerto.org/openconcerto

Rev

Rev 83 | Rev 93 | 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
 
90 ilm 32
        String result = r.getString("LIBELLE");
33
        if (result.trim().length() == 0) {
34
            result = r.getString("RUE");
35
        } else {
36
            result += "\n" + r.getString("RUE");
37
        }
73 ilm 38
        result += "\n" + r.getString("CODE_POSTAL");
39
        result += " ";
40
        result += r.getString("VILLE");
41
        if (r.getBoolean("HAS_CEDEX")) {
42
            result += " Cedex";
43
            String cedex = r.getString("CEDEX");
44
            if (cedex != null && cedex.trim().length() > 0) {
45
                result += " " + cedex;
67 ilm 46
            }
47
        }
48
 
49
        return result;
50
    }
51
 
52
    public static void register() {
83 ilm 53
        SpreadSheetCellValueProviderManager.put("address.customer.full", new AdresseFullClientValueProvider(ADRESSE_PRINCIPALE));
67 ilm 54
        SpreadSheetCellValueProviderManager.put("address.customer.invoice.full", new AdresseFullClientValueProvider(ADRESSE_FACTURATION));
55
        SpreadSheetCellValueProviderManager.put("address.customer.shipment.full", new AdresseFullClientValueProvider(ADRESSE_LIVRAISON));
56
    }
57
}