Dépôt officiel du code source de l'ERP OpenConcerto
/trunk/OpenConcerto/src/org/openconcerto/erp/core/reports/history/ui/HistoriqueClientFrame.java |
---|
21,6 → 21,7 |
import org.openconcerto.sql.model.SQLField; |
import org.openconcerto.sql.model.SQLRowAccessor; |
import org.openconcerto.sql.model.SQLTable; |
import org.openconcerto.sql.model.Where; |
import java.awt.event.WindowAdapter; |
import java.awt.event.WindowEvent; |
97,6 → 98,12 |
} |
}, "SAISIE_VENTE_FACTURE"); |
SQLTable tableEch = Configuration.getInstance().getRoot().findTable("ECHEANCE_CLIENT"); |
Where wNotRegle = new Where(tableEch.getField("REGLE"), "=", Boolean.FALSE); |
wNotRegle = wNotRegle.and(new Where(tableEch.getField("REG_COMPTA"), "=", Boolean.FALSE)); |
this.listPanel.addWhere("FiltreEcheance", wNotRegle); |
this.panelFrame = new PanelFrame(this.listPanel, "Historique client"); |
this.panelFrame.addWindowListener(new WindowAdapter() { |
public void windowClosing(WindowEvent e) { |