Line 94... |
Line 94... |
94 |
List<Integer> pieceIDs = new ArrayList<Integer>();
|
94 |
List<Integer> pieceIDs = new ArrayList<Integer>();
|
95 |
SQLRowValues rowValsDepotElt = new SQLRowValues(depot.getTable().getTable("DEPOT_CHEQUE_ELEMENT"));
|
95 |
SQLRowValues rowValsDepotElt = new SQLRowValues(depot.getTable().getTable("DEPOT_CHEQUE_ELEMENT"));
|
96 |
rowValsDepotElt.putNulls("MONTANT", "TIERS", "PIECE");
|
96 |
rowValsDepotElt.putNulls("MONTANT", "TIERS", "PIECE");
|
97 |
rowValsDepotElt.putRowValues("ID_CLIENT").putNulls("NOM", "ID_COMPTE_PCE");
|
97 |
rowValsDepotElt.putRowValues("ID_CLIENT").putNulls("NOM", "ID_COMPTE_PCE");
|
98 |
final SQLRowValues rowValuesChq = rowValsDepotElt.putRowValues("ID_CHEQUE_A_ENCAISSER");
|
98 |
final SQLRowValues rowValuesChq = rowValsDepotElt.putRowValues("ID_CHEQUE_A_ENCAISSER");
|
99 |
rowValuesChq.putNulls("SANS_VALEUR_ENCAISSEMENT").putRowValues("ID_MOUVEMENT").putNulls("ID_PIECE");
|
99 |
rowValuesChq.putNulls("SANS_VALEUR_ENCAISSEMENT").putRowValues("ID_MOUVEMENT").putRowValues("ID_PIECE").putNulls("NOM");
|
100 |
rowValuesChq.putNulls("ID_COMPTE_PCE_TIERS").putNulls("NUMERO");
|
100 |
rowValuesChq.putNulls("ID_COMPTE_PCE_TIERS").putNulls("NUMERO");
|
101 |
List<SQLRowValues> cheques = SQLRowValuesListFetcher.create(rowValsDepotElt).fetch(new Where(rowValsDepotElt.getTable().getField("ID_DEPOT_CHEQUE"), "=", depot.getID()));
|
101 |
List<SQLRowValues> cheques = SQLRowValuesListFetcher.create(rowValsDepotElt).fetch(new Where(rowValsDepotElt.getTable().getField("ID_DEPOT_CHEQUE"), "=", depot.getID()));
|
102 |
for (SQLRowValues sqlRowAccessor : cheques) {
|
102 |
for (SQLRowValues sqlRowAccessor : cheques) {
|
103 |
final SQLRowAccessor clientRow = sqlRowAccessor.getForeign("ID_CLIENT");
|
103 |
final SQLRowAccessor clientRow = sqlRowAccessor.getForeign("ID_CLIENT");
|
104 |
// this.nom = this.nom + " " + StringUtils.limitLength(clientRow.getString("NOM"), 20);
|
104 |
// this.nom = this.nom + " " + StringUtils.limitLength(clientRow.getString("NOM"), 20);
|