OpenConcerto

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

svn://code.openconcerto.org/openconcerto

Compare Revisions

Regard whitespace Rev 79 → Rev 80

/trunk/OpenConcerto/src/org/openconcerto/erp/core/sales/invoice/ui/ListeDesEcheancesClientsPanel.java
233,7 → 233,7
// Mise à jour de l'echeance sur la frame de reglement
// si cette derniere est cree
final SQLBase base = ((ComptaPropsConfiguration) Configuration.getInstance()).getSQLBaseSociete();
final SQLRow row = panelEcheances.getListe().getSelectedRow();
final SQLRow row = panelEcheances.getListe().getSelectedRow().asRow();
if (mE.getButton() == MouseEvent.BUTTON1) {
 
if (ListeDesEcheancesClientsPanel.this.editEncaisse != null) {
284,7 → 284,7
SQLBase base = ((ComptaPropsConfiguration) Configuration.getInstance()).getSQLBaseSociete();
SQLElement relanceElt = Configuration.getInstance().getDirectory().getElement("RELANCE");
 
this.rowSource = this.panelEcheances.getListe().getSelectedRow();
this.rowSource = this.panelEcheances.getListe().fetchSelectedRow();
 
if (this.rowSource != null) {
int idMvtSource = MouvementSQLElement.getSourceId(rowSource.getInt("ID_MOUVEMENT"));