Dépôt officiel du code source de l'ERP OpenConcerto
Rev 151 | Blame | Compare with Previous | Last modification | View Log | RSS feed
/*
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS HEADER.
*
* Copyright 2011-2019 OpenConcerto, by ILM Informatique. All rights reserved.
*
* The contents of this file are subject to the terms of the GNU General Public License Version 3
* only ("GPL"). You may not use this file except in compliance with the License. You can obtain a
* copy of the License at http://www.gnu.org/licenses/gpl-3.0.html See the License for the specific
* language governing permissions and limitations under the License.
*
* When distributing the software, include this License Header Notice in each file.
*/
package org.openconcerto.erp.generationEcritures.provider;
import org.openconcerto.erp.config.ComptaPropsConfiguration;
import org.openconcerto.erp.generationEcritures.GenerationMvtSaisieVenteFacture;
import org.openconcerto.erp.preferences.GestionCommercialeGlobalPreferencePanel;
import org.openconcerto.sql.Configuration;
import org.openconcerto.sql.model.SQLRowAccessor;
import org.openconcerto.sql.model.SQLRowValues;
import org.openconcerto.sql.preferences.SQLPreferences;
import org.openconcerto.utils.StringUtils;
import java.util.Map;
public class SalesInvoiceAccountingRecordsProvider implements AccountingRecordsProvider {
@Override
public void putPieceLabel(SQLRowAccessor rowSource, SQLRowValues rowValsPiece) {
rowValsPiece.put("NOM", rowSource.getString("NUMERO"));
}
@Override
public void putLabel(SQLRowAccessor rowSource, Map<String, Object> values) {
String nom = "";
Boolean acompte = rowSource.getBoolean("ACOMPTE");
if (acompte != null && acompte) {
nom = "Fact. acompte client" + rowSource.getObject("NUMERO").toString();
} else {
nom = "Fact. vente " + rowSource.getObject("NUMERO").toString();
}
SQLRowAccessor modeRegl = rowSource.getForeign("ID_MODE_REGLEMENT");
final SQLRowAccessor typeRegRow = modeRegl.getForeign("ID_TYPE_REGLEMENT");
final SQLRowAccessor nonEmptyForeign = modeRegl.getNonEmptyForeign("ID_BANQUE");
if (nonEmptyForeign != null && nonEmptyForeign.getTable().contains("TYPE_CAISSE") && nonEmptyForeign.getBoolean("TYPE_CAISSE")) {
nom += " (" + typeRegRow.getString("NOM") + ") ";
}
nom += " " + StringUtils.limitLength(rowSource.getForeign("ID_CLIENT").getString("NOM"), 20);
if (SQLPreferences.getMemCached(rowSource.getTable().getDBRoot()).getBoolean(GestionCommercialeGlobalPreferencePanel.ECRITURE_FACTURE_REF_LIBELLE, false)) {
if (rowSource.getString("NOM") != null && rowSource.getString("NOM").trim().length() > 0)
nom += " " + StringUtils.limitLength(rowSource.getString("NOM"), 30);
}
values.put("NOM", nom);
}
public static void register() {
AccountingRecordsProviderManager.put(GenerationMvtSaisieVenteFacture.ID, new SalesInvoiceAccountingRecordsProvider());
}
}