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